Geant4  9.6.p02
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
RE02NestedPhantomParameterisation.hh
Go to the documentation of this file.
1 //
2 // ********************************************************************
3 // * License and Disclaimer *
4 // * *
5 // * The Geant4 software is copyright of the Copyright Holders of *
6 // * the Geant4 Collaboration. It is provided under the terms and *
7 // * conditions of the Geant4 Software License, included in the file *
8 // * LICENSE and available at http://cern.ch/geant4/license . These *
9 // * include a list of copyright holders. *
10 // * *
11 // * Neither the authors of this software system, nor their employing *
12 // * institutes,nor the agencies providing financial support for this *
13 // * work make any representation or warranty, express or implied, *
14 // * regarding this software system or assume any liability for its *
15 // * use. Please see the license in the file LICENSE and URL above *
16 // * for the full disclaimer and the limitation of liability. *
17 // * *
18 // * This code implementation is the result of the scientific and *
19 // * technical work of the GEANT4 collaboration. *
20 // * By using, copying, modifying or distributing the software (or *
21 // * any work based on the software) you agree to acknowledge its *
22 // * use in resulting scientific publications, and indicate your *
23 // * acceptance of all terms of the Geant4 Software license. *
24 // ********************************************************************
25 //
28 //
29 //
30 // $Id$
31 //
32 #ifndef RE02NESTEDPARAMETERISATION_HH
33 #define RE02NESTEDPARAMETERISATION_HH
34 
35 #include "G4Types.hh"
37 #include "G4ThreeVector.hh"
38 #include <vector>
39 
40 class G4VPhysicalVolume;
41 class G4VTouchable;
42 class G4VSolid;
43 class G4Material;
44 
45 // CSG Entities which may be parameterised/replicated
46 //
47 class G4Box;
48 class G4Tubs;
49 class G4Trd;
50 class G4Trap;
51 class G4Cons;
52 class G4Sphere;
53 class G4Orb;
54 class G4Torus;
55 class G4Para;
56 class G4Polycone;
57 class G4Polyhedra;
58 class G4Hype;
59 
60 //
90 //
92 {
93  public: // with description
94 
96  G4int nz,
97  std::vector<G4Material*>& mat);
99 
100  // Methods required in derived classes
101  // -----------------------------------
102  virtual G4Material* ComputeMaterial(G4VPhysicalVolume *currentVol,
103  const G4int repNo,
104  const G4VTouchable *parentTouch=0
105  );
106  // Required method, as it is the reason for this class.
107  // Must cope with parentTouch=0 for navigator's SetupHierarchy
108 
109  virtual G4int GetNumberOfMaterials() const;
110  virtual G4Material* GetMaterial(G4int idx) const;
111  // Needed to define materials for instances of Nested Parameterisation
112  // Current convention: each call should return the materials
113  // of all instances with the same mother/ancestor volume.
114 
115  virtual void ComputeTransformation(const G4int no,
116  G4VPhysicalVolume *currentPV) const;
117 
118  // Methods optional in derived classes
119  // -----------------------------------
120 
121  // Additional standard Parameterisation methods,
122  // which can be optionally defined, in case solid is used.
123 
124  virtual void ComputeDimensions(G4Box &,
125  const G4int,
126  const G4VPhysicalVolume *) const;
127 
128 private: // Dummy declarations to get rid of warnings ...
129  virtual void ComputeDimensions (G4Trd&,const G4int,const G4VPhysicalVolume*)
130  const {}
131  virtual void ComputeDimensions (G4Trap&,const G4int,const G4VPhysicalVolume*)
132  const {}
133  virtual void ComputeDimensions (G4Cons&,const G4int,const G4VPhysicalVolume*)
134  const {}
135  virtual void ComputeDimensions (G4Sphere&,const G4int,const G4VPhysicalVolume*)
136  const {}
137  virtual void ComputeDimensions (G4Orb&,const G4int,const G4VPhysicalVolume*)
138  const {}
139  virtual void ComputeDimensions (G4Torus&,const G4int,const G4VPhysicalVolume*)
140  const {}
141  virtual void ComputeDimensions (G4Para&,const G4int,const G4VPhysicalVolume*)
142  const {}
143  virtual void ComputeDimensions (G4Hype&,const G4int,const G4VPhysicalVolume*)
144  const {}
145  virtual void ComputeDimensions (G4Tubs&,const G4int,const G4VPhysicalVolume*)
146  const {}
147  virtual void ComputeDimensions (G4Polycone&,const G4int,const G4VPhysicalVolume*)
148  const {}
149  virtual void ComputeDimensions (G4Polyhedra&,const G4int,const G4VPhysicalVolume*)
150  const {}
151 // G4Material* ComputeMaterial(const G4int repNo,
152 // G4VPhysicalVolume* currentVol,
153 // const G4VTouchable* parentTouch)
154 // { return ComputeMaterial( currentVol, repNo, parentTouch ); }
156 
157 private:
158  G4double fdX,fdY,fdZ;
159  G4int fNz;
160  //
161  std::vector<G4double> fpZ;
162  std::vector<G4Material*> fMat;
163 };
164 
165 #endif