Geant4  10.03.p03
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
B03DetectorConstruction Class Reference

#include <B03DetectorConstruction.hh>

Inheritance diagram for B03DetectorConstruction:
Collaboration diagram for B03DetectorConstruction:

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.

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 
83  G4String name, symbol;
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 
139  // world cylinder volume
141 
142  // world solid
143 
144  G4double innerRadiusCylinder = 0*cm;
145  G4double outerRadiusCylinder = 101*cm; // dont't have scoring
146  // cells coinside eith world volume boundary
147  // G4double heightCylinder = 105*cm;
148  G4double heightCylinder = 100*cm;
149  G4double startAngleCylinder = 0*deg;
150  G4double spanningAngleCylinder = 360*deg;
151 
152  G4Tubs *worldCylinder = new G4Tubs("worldCylinder",
153  innerRadiusCylinder,
154  outerRadiusCylinder,
155  heightCylinder,
156  startAngleCylinder,
157  spanningAngleCylinder);
158 
159  // logical world
160 
161  G4LogicalVolume *worldCylinder_log =
162  new G4LogicalVolume(worldCylinder, Galactic, "worldCylinder_log");
163 
164  name = "shieldWorld";
165  fWorldVolume = new G4PVPlacement(0, G4ThreeVector(0,0,0), worldCylinder_log
166  ,name, 0, false, 0);
167 
168  // creating 18 slobs of 10 cm thick concrete
169 
170  G4double innerRadiusShield = 0*cm;
171  G4double outerRadiusShield = 100*cm;
172  G4double heightShield = 90*cm;
173  G4double startAngleShield = 0*deg;
174  G4double spanningAngleShield = 360*deg;
175 
176  G4Tubs *aShield = new G4Tubs("aShield",
177  innerRadiusShield,
178  outerRadiusShield,
179  heightShield,
180  startAngleShield,
181  spanningAngleShield);
182 
183  // logical shield
184 
185  G4LogicalVolume *aShield_log =
186  new G4LogicalVolume(aShield, Concrete, "aShield_log");
187 
188  G4VisAttributes* pShieldVis = new
189  G4VisAttributes(G4Colour(0.0,0.0,1.0));
190  pShieldVis->SetForceSolid(true);
191  aShield_log->SetVisAttributes(pShieldVis);
192 
193  // physical shields
194 
195  name = "concreteShield";
196 
197  pos_x = 0*cm;
198  pos_y = 0*cm;
199  pos_z = 0;
200 
201  new G4PVPlacement(0,
202  G4ThreeVector(pos_x, pos_y, pos_z),
203  aShield_log,
204  name,
205  worldCylinder_log,
206  false,
207  0);
208 
209 
210  return fWorldVolume;
211 }
const XML_Char * name
Definition: expat.h:151
CLHEP::Hep3Vector G4ThreeVector
int universe_mean_density
Definition: hepunit.py:307
Definition: G4Tubs.hh:85
int G4int
Definition: G4Types.hh:78
void SetForceSolid(G4bool=true)
function g(Y1, Y2, PT2)
Definition: hijing1.383.f:5205
double A(double temperature)
static constexpr double cm
Definition: G4SIunits.hh:119
#define pascal
static constexpr double kelvin
Definition: G4SIunits.hh:281
static constexpr double cm3
Definition: G4SIunits.hh:121
tuple z
Definition: test.py:28
void AddElement(G4Element *element, G4int nAtoms)
Definition: G4Material.cc:362
double G4double
Definition: G4Types.hh:76
static constexpr double deg
Definition: G4SIunits.hh:152
static constexpr double mole
Definition: G4SIunits.hh:286
void SetVisAttributes(const G4VisAttributes *pVA)

Here is the call graph for this function:

G4VPhysicalVolume * B03DetectorConstruction::GetWorldVolume ( )

Definition at line 222 of file B03DetectorConstruction.cc.

222  {
223  return fWorldVolume;
224 }
G4VPhysicalVolume & B03DetectorConstruction::GetWorldVolumeAddress ( ) const

Definition at line 228 of file B03DetectorConstruction.cc.

228  {
229  return *fWorldVolume;
230 }
void B03DetectorConstruction::SetSensitive ( )

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