Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Public Member Functions
B03DetectorConstruction Class Reference

#include <B03DetectorConstruction.hh>

Inheritance diagram for B03DetectorConstruction:
G4VUserDetectorConstruction

Public Member Functions

 B03DetectorConstruction ()
 
 ~B03DetectorConstruction ()
 
virtual G4VPhysicalVolumeConstruct ()
 
G4VPhysicalVolumeGetWorldVolume ()
 
G4VPhysicalVolumeGetWorldVolumeAddress () const
 
void SetSensitive ()
 
- Public Member Functions inherited from G4VUserDetectorConstruction
 G4VUserDetectorConstruction ()
 
virtual ~G4VUserDetectorConstruction ()
 
virtual void ConstructSDandField ()
 
virtual void CloneSD ()
 
virtual void CloneF ()
 
void RegisterParallelWorld (G4VUserParallelWorld *)
 
G4int ConstructParallelGeometries ()
 
void ConstructParallelSD ()
 
G4int GetNumberOfParallelWorld () const
 
G4VUserParallelWorldGetParallelWorld (G4int i) const
 

Additional Inherited Members

- Protected Member Functions inherited from G4VUserDetectorConstruction
void SetSensitiveDetector (const G4String &logVolName, G4VSensitiveDetector *aSD, G4bool multi=false)
 
void SetSensitiveDetector (G4LogicalVolume *logVol, G4VSensitiveDetector *aSD)
 

Detailed Description

Definition at line 42 of file B03DetectorConstruction.hh.

Constructor & Destructor Documentation

B03DetectorConstruction::B03DetectorConstruction ( )
B03DetectorConstruction::~B03DetectorConstruction ( )

Definition at line 68 of file B03DetectorConstruction.cc.

69 {;}

Member Function Documentation

G4VPhysicalVolume * B03DetectorConstruction::Construct ( void  )
virtual

Implements G4VUserDetectorConstruction.

Definition at line 73 of file B03DetectorConstruction.cc.

References G4Material::AddElement(), python.hepunit::cm, python.hepunit::cm3, python.hepunit::deg, density, elC, elH, elO, g(), python.hepunit::kelvin, kStateGas, python.hepunit::mole, pascal, G4VisAttributes::SetForceSolid(), G4LogicalVolume::SetVisAttributes(), symbol, python.hepunit::universe_mean_density, and z.

74 {
75  G4double pos_x;
76  G4double pos_y;
77  G4double pos_z;
78 
79  G4double density, pressure, temperature;
80  G4double A;
81  G4int Z;
82 
84  G4double z;
85  G4double fractionmass;
86 
87  A = 1.01*g/mole;
88  G4Element* elH = new G4Element(name="Hydrogen",symbol="H" , Z= 1, A);
89 
90  A = 12.01*g/mole;
91  G4Element* elC = new G4Element(name="Carbon" ,symbol="C" , Z = 6, A);
92 
93  A = 16.00*g/mole;
94  G4Element* elO = new G4Element(name="Oxygen" ,symbol="O" , Z= 8, A);
95 
96  A = 22.99*g/mole;
97  G4Element* elNa = new G4Element(name="Natrium" ,symbol="Na" , Z=11 , A);
98 
99  A = 200.59*g/mole;
100  G4Element* elHg = new G4Element(name="Hg" ,symbol="Hg" , Z=80, A);
101 
102  A = 26.98*g/mole;
103  G4Element* elAl = new G4Element(name="Aluminium" ,symbol="Al" , Z=13, A);
104 
105  A = 28.09*g/mole;
106  G4Element* elSi = new G4Element(name="Silicon", symbol="Si", Z=14, A);
107 
108  A = 39.1*g/mole;
109  G4Element* elK = new G4Element(name="K" ,symbol="K" , Z=19 , A);
110 
111  A = 69.72*g/mole;
112  G4Element* elCa = new G4Element(name="Calzium" ,symbol="Ca" , Z=31 , A);
113 
114  A = 55.85*g/mole;
115  G4Element* elFe = new G4Element(name="Iron" ,symbol="Fe", Z=26, A);
116 
117  density = universe_mean_density; //from PhysicalConstants.h
118  pressure = 3.e-18*pascal;
119  temperature = 2.73*kelvin;
120  G4Material *Galactic =
121  new G4Material(name="Galactic", z=1., A=1.01*g/mole, density,
122  kStateGas,temperature,pressure);
123 
124  density = 2.03*g/cm3;
125  G4Material* Concrete = new G4Material("Concrete", density, 10);
126  Concrete->AddElement(elH , fractionmass= 0.01);
127  Concrete->AddElement(elO , fractionmass= 0.529);
128  Concrete->AddElement(elNa , fractionmass= 0.016);
129  Concrete->AddElement(elHg , fractionmass= 0.002);
130  Concrete->AddElement(elAl , fractionmass= 0.034);
131  Concrete->AddElement(elSi , fractionmass= 0.337);
132  Concrete->AddElement(elK , fractionmass= 0.013);
133  Concrete->AddElement(elCa , fractionmass= 0.044);
134  Concrete->AddElement(elFe , fractionmass= 0.014);
135  Concrete->AddElement(elC , fractionmass= 0.001);
136 
137 
138 
139 
140 
141 
142 
143 
144 
145 
146 
147 
148 
149 
150 
151  /////////////////////////////
152  // world cylinder volume
153  ////////////////////////////
154 
155  // world solid
156 
157  G4double innerRadiusCylinder = 0*cm;
158  G4double outerRadiusCylinder = 101*cm; // dont't have scoring
159  // cells coinside eith world volume boundary
160  // G4double heightCylinder = 105*cm;
161  G4double heightCylinder = 100*cm;
162  G4double startAngleCylinder = 0*deg;
163  G4double spanningAngleCylinder = 360*deg;
164 
165  G4Tubs *worldCylinder = new G4Tubs("worldCylinder",
166  innerRadiusCylinder,
167  outerRadiusCylinder,
168  heightCylinder,
169  startAngleCylinder,
170  spanningAngleCylinder);
171 
172  // logical world
173 
174  G4LogicalVolume *worldCylinder_log =
175  new G4LogicalVolume(worldCylinder, Galactic, "worldCylinder_log");
176 
177  name = "shieldWorld";
178  fWorldVolume = new G4PVPlacement(0, G4ThreeVector(0,0,0), worldCylinder_log
179  ,name, 0, false, 0);
180 
181 
182  // creating 18 slobs of 10 cm thick concrete
183 
184  G4double innerRadiusShield = 0*cm;
185  G4double outerRadiusShield = 100*cm;
186  G4double heightShield = 90*cm;
187  G4double startAngleShield = 0*deg;
188  G4double spanningAngleShield = 360*deg;
189 
190  G4Tubs *aShield = new G4Tubs("aShield",
191  innerRadiusShield,
192  outerRadiusShield,
193  heightShield,
194  startAngleShield,
195  spanningAngleShield);
196 
197  // logical shield
198 
199  G4LogicalVolume *aShield_log =
200  new G4LogicalVolume(aShield, Concrete, "aShield_log");
201 
202  G4VisAttributes* pShieldVis = new
203  G4VisAttributes(G4Colour(0.0,0.0,1.0));
204  pShieldVis->SetForceSolid(true);
205  aShield_log->SetVisAttributes(pShieldVis);
206 
207  // physical shields
208 
209  name = "concreteShield";
210 
211  pos_x = 0*cm;
212  pos_y = 0*cm;
213  pos_z = 0;
214 
215  new G4PVPlacement(0,
216  G4ThreeVector(pos_x, pos_y, pos_z),
217  aShield_log,
218  name,
219  worldCylinder_log,
220  false,
221  0);
222 
223 
224  return fWorldVolume;
225 }
G4String symbol
Definition: TRTMaterials.hh:40
CLHEP::Hep3Vector G4ThreeVector
G4double z
Definition: TRTMaterials.hh:39
int universe_mean_density
Definition: hepunit.py:307
Definition: G4Tubs.hh:84
G4Element * elC
Definition: TRTMaterials.hh:48
const XML_Char * name
void SetForceSolid(G4bool)
int G4int
Definition: G4Types.hh:78
G4Element * elH
Definition: TRTMaterials.hh:50
G4double density
Definition: TRTMaterials.hh:39
function g(Y1, Y2, PT2)
Definition: hijing1.383.f:5205
G4Element * elO
Definition: TRTMaterials.hh:46
#define pascal
void AddElement(G4Element *element, G4int nAtoms)
Definition: G4Material.cc:345
double G4double
Definition: G4Types.hh:76
void SetVisAttributes(const G4VisAttributes *pVA)
G4VPhysicalVolume * B03DetectorConstruction::GetWorldVolume ( )

Definition at line 236 of file B03DetectorConstruction.cc.

236  {
237  return fWorldVolume;
238 }
G4VPhysicalVolume & B03DetectorConstruction::GetWorldVolumeAddress ( ) const

Definition at line 242 of file B03DetectorConstruction.cc.

242  {
243  return *fWorldVolume;
244 }
void B03DetectorConstruction::SetSensitive ( )

The documentation for this class was generated from the following files: