Geant4  10.03.p02
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
DetectorConstruction.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 //
26 // This example is provided by the Geant4-DNA collaboration
27 // Any report or published results obtained using the Geant4-DNA software
28 // shall cite the following Geant4-DNA collaboration publication:
29 // Med. Phys. 37 (2010) 4692-4708
30 // The Geant4-DNA web site is available at http://geant4-dna.org
31 //
32 // If you use this example, please cite the following publication:
33 // Rad. Prot. Dos. 133 (2009) 2-11
34 
35 #ifndef DetectorConstruction_h
36 #define DetectorConstruction_h 1
37 
39 #include "G4Box.hh"
40 #include "G4Cons.hh"
41 #include "G4Material.hh"
42 #include "G4PVPlacement.hh"
43 #include "G4UserLimits.hh"
44 #include "G4PVParameterised.hh"
45 #include "CellParameterisation.hh"
46 
47 #include "EMField.hh"
48 #include "G4EqMagElectricField.hh"
49 #include "G4PropagatorInField.hh"
51 #include "G4ChordFinder.hh"
52 #include "G4ClassicalRK4.hh"
53 
54 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
55 
57 {
58 public:
59 
62 
64 
65  void ConstructSDandField();
66 
67  void SetMassNucleus(G4double mN){ fMassNucleus = mN;}
68  G4double GetMassNucleus(){return fMassNucleus;}
69 
70  void SetMassCytoplasm(G4double mC){ fMassCytoplasm = mC;}
71  G4double GetMassCytoplasm(){return fMassCytoplasm;}
72 
73  void SetNbOfPixelsInPhantom(G4int nP){ fNbOfPixelsInPhantom = nP;}
74  G4int GetNbOfPixelsInPhantom(){return fNbOfPixelsInPhantom;}
75 
76  // Returns the logical volumes
77 
78  G4LogicalVolume* GetLogicalCollDetYoke() {return fLogicYoke2;};
79  G4LogicalVolume* GetLogicalIsobutane() {return fLogicBoiteIso;};
80  G4LogicalVolume* GetLogicalCollDetGap4() {return fLogic4Gap;};
81  G4LogicalVolume* GetLogicalPolyprop() {return fLogicBoite3;};
82  G4LogicalVolume* GetLogicalKgm() {return fLogicKgm;};
83 
84  G4Material * GetNucleusMaterial1() {return fNucleusMaterial1;};
85  G4Material * GetNucleusMaterial2() {return fNucleusMaterial2;};
86  G4Material * GetNucleusMaterial3() {return fNucleusMaterial3;};
87  G4Material * GetCytoplasmMaterial1() {return fCytoplasmMaterial1;};
88  G4Material * GetCytoplasmMaterial2() {return fCytoplasmMaterial2;};
89  G4Material * GetCytoplasmMaterial3() {return fCytoplasmMaterial3;};
90 
91  CellParameterisation * GetCellParameterisation() {return fMyCellParameterisation;};
92 
93 private:
94 
95  G4double fMassNucleus;
96  G4double fMassCytoplasm;
97 
98  G4double fDensityPhantom;
99  G4double fDensityNucleus;
100  G4double fDensityCytoplasm;
101  G4int fNbOfPixelsInPhantom;
102 
103  G4double fWorldSizeXY;
104  G4double fWorldSizeZ;
105  G4double fCollObjSizeXY;
106  G4double fCollObjSizeZ;
107 
108  G4double fCiblePositionX;
109  G4double fCiblePositionY;
110  G4double fCiblePositionZ;
111 
112  G4double fLineAngle;
113 
114 // Materials
115 
116  G4Material* fDefaultMaterial;
117  G4Material* fCollimatorMaterial;
118  G4Material* fBoiteMaterial;
119  G4Material* fCathodeMaterial;
120  G4Material* fVerreMaterial;
121  G4Material* fVerre2Material;
122  G4Material* fKgmMaterial;
123  G4Material* fBoite2Material;
124  G4Material* fBoite3Material;
125  G4Material* fNucleusMaterial1;
126  G4Material* fCytoplasmMaterial1;
127  G4Material* fNucleusMaterial2;
128  G4Material* fCytoplasmMaterial2;
129  G4Material* fNucleusMaterial3;
130  G4Material* fCytoplasmMaterial3;
131 
132 // Volumes
133 
134  G4VPhysicalVolume* fPhysiWorld;
135  G4LogicalVolume* fLogicWorld;
136  G4Box* fSolidWorld;
137 
138  G4VPhysicalVolume* fPhysiVol;
139  G4LogicalVolume* fLogicVol;
140  G4Box* fSolidVol;
141 
142  G4VPhysicalVolume* fPhysiBoite;
143  G4LogicalVolume* fLogicBoite;
144  G4Box* fSolidBoite;
145 
146  G4VPhysicalVolume* fPhysiYoke1;
147  G4LogicalVolume* fLogicYoke1;
148  G4Box* fSolidYoke1;
149 
150  G4VPhysicalVolume* fPhysi1Gap;
151  G4LogicalVolume* fLogic1Gap;
152  G4Cons* fSolid1Gap;
153 
154  G4VPhysicalVolume* fPhysi2Gap;
155  G4LogicalVolume* fLogic2Gap;
156  G4Cons* fSolid2Gap;
157 
158  G4VPhysicalVolume* fPhysi3Gap;
159  G4LogicalVolume* fLogic3Gap;
160  G4Cons* fSolid3Gap;
161 
162  G4VPhysicalVolume* fPhysiYoke2;
163  G4LogicalVolume* fLogicYoke2;
164  G4Box* fSolidYoke2;
165 
166  G4VPhysicalVolume* fPhysi4Gap;
167  G4LogicalVolume* fLogic4Gap;
168  G4Cons* fSolid4Gap;
169 
170  G4VPhysicalVolume* fPhysi5Gap;
171  G4LogicalVolume* fLogic5Gap;
172  G4Cons* fSolid5Gap;
173 
174  G4VPhysicalVolume* fPhysiBoiteIso;
175  G4LogicalVolume* fLogicBoiteIso;
176  G4Box* fSolidBoiteIso;
177 
178  G4VPhysicalVolume* fPhysiCathode;
179  G4LogicalVolume* fLogicCathode;
180  G4Box* fSolidCathode;
181 
182  G4VPhysicalVolume* fPhysiIso;
183  G4LogicalVolume* fLogicIso;
184  G4Box* fSolidIso;
185 
186  G4VPhysicalVolume* fPhysiVerre;
187  G4LogicalVolume* fLogicVerre;
188  G4Box* fSolidVerre;
189 
190  G4VPhysicalVolume* fPhysiBoite2;
191  G4LogicalVolume* fLogicBoite2;
192  G4Box* fSolidBoite2;
193 
194  G4VPhysicalVolume* fPhysiBoite3;
195  G4LogicalVolume* fLogicBoite3;
196  G4Box* fSolidBoite3;
197 
198  G4VPhysicalVolume* fPhysiKgm;
199  G4LogicalVolume* fLogicKgm;
200  G4Box* fSolidKgm;
201 
202  G4VPhysicalVolume* fPhysiVerre2;
203  G4LogicalVolume* fLogicVerre2;
204  G4Box* fSolidVerre2;
205 
206  // CELL PHANTOM
207 
208  G4VPhysicalVolume* fPhysiPhantom;
209  G4LogicalVolume* fLogicPhantom;
210  G4Box* fSolidPhantom;
211 
212  CellParameterisation * fMyCellParameterisation;
213 
214  //
215 
216  static G4ThreadLocal EMField * fField;
217 
218  G4FieldManager * fFieldMgr;
219  G4MagIntegratorStepper * fStepper;
220  G4EqMagElectricField * fEquation;
221  G4MagInt_Driver * fIntgrDriver;
222  G4ChordFinder * fChordFinder ;
223 
224  // FROM NANOBEAM EX. TUNINGS
225 
226  // G4PropagatorInField * fPropInField;
227 
228  //
229 
230  void DefineMaterials();
231  G4VPhysicalVolume* ConstructLine();
232 
233 };
234 
235 #endif
G4LogicalVolume * GetLogicalCollDetYoke()
Definition: G4Box.hh:64
G4VPhysicalVolume * Construct()
void SetMassNucleus(G4double mN)
G4Material * GetCytoplasmMaterial3()
void SetMassCytoplasm(G4double mC)
#define G4ThreadLocal
Definition: tls.hh:89
G4Material * GetCytoplasmMaterial2()
int G4int
Definition: G4Types.hh:78
virtual void ConstructSDandField()
G4LogicalVolume * GetLogicalIsobutane()
G4Material * GetNucleusMaterial2()
Definition: G4Cons.hh:83
void SetNbOfPixelsInPhantom(G4int nP)
G4Material * GetCytoplasmMaterial1()
G4LogicalVolume * GetLogicalKgm()
Detector construction class to define materials and geometry.
G4Material * GetNucleusMaterial3()
CellParameterisation * GetCellParameterisation()
double G4double
Definition: G4Types.hh:76
G4LogicalVolume * GetLogicalCollDetGap4()
G4LogicalVolume * GetLogicalPolyprop()
G4Material * GetNucleusMaterial1()