LArSoft  v09_90_00
Liquid Argon Software toolkit - https://larsoft.org/
ExN03DetectorConstruction Class Reference

#include "ExN03DetectorConstruction.hh"

Inheritance diagram for ExN03DetectorConstruction:

Public Member Functions

 ExN03DetectorConstruction ()
 
 ~ExN03DetectorConstruction ()
 
void SetAbsorberMaterial (G4String)
 
void SetAbsorberThickness (G4double)
 
void SetGapMaterial (G4String)
 
void SetGapThickness (G4double)
 
void SetCalorSizeYZ (G4double)
 
void SetNbOfLayers (G4int)
 
void SetMagField (G4double)
 
G4VPhysicalVolume * Construct ()
 
void UpdateGeometry ()
 
void PrintCalorParameters ()
 
G4double GetWorldSizeX ()
 
G4double GetWorldSizeYZ ()
 
G4double GetCalorThickness ()
 
G4double GetCalorSizeYZ ()
 
G4int GetNbOfLayers ()
 
G4Material * GetAbsorberMaterial ()
 
G4double GetAbsorberThickness ()
 
G4Material * GetGapMaterial ()
 
G4double GetGapThickness ()
 
const G4VPhysicalVolume * GetphysiWorld ()
 
const G4VPhysicalVolume * GetAbsorber ()
 
const G4VPhysicalVolume * GetGap ()
 

Private Member Functions

void DefineMaterials ()
 
void ComputeCalorParameters ()
 
G4VPhysicalVolume * ConstructCalorimeter ()
 

Private Attributes

G4Material * AbsorberMaterial
 
G4double AbsorberThickness
 
G4Material * GapMaterial
 
G4double GapThickness
 
G4int NbOfLayers
 
G4double LayerThickness
 
G4double CalorSizeYZ
 
G4double CalorThickness
 
G4Material * defaultMaterial
 
G4double WorldSizeYZ
 
G4double WorldSizeX
 
G4Box * solidWorld
 
G4LogicalVolume * logicWorld
 
G4VPhysicalVolume * physiWorld
 
G4Box * solidCalor
 
G4LogicalVolume * logicCalor
 
G4VPhysicalVolume * physiCalor
 
G4Box * solidLayer
 
G4LogicalVolume * logicLayer
 
G4VPhysicalVolume * physiLayer
 
G4Box * solidAbsorber
 
G4LogicalVolume * logicAbsorber
 
G4VPhysicalVolume * physiAbsorber
 
G4Box * solidGap
 
G4LogicalVolume * logicGap
 
G4VPhysicalVolume * physiGap
 
G4UniformMagField * magField
 
ExN03DetectorMessengerdetectorMessenger
 

Detailed Description

Definition at line 48 of file ExN03DetectorConstruction.hh.

Constructor & Destructor Documentation

ExN03DetectorConstruction::ExN03DetectorConstruction ( )

Definition at line 55 of file ExN03DetectorConstruction.cc.

References AbsorberThickness, CalorSizeYZ, ComputeCalorParameters(), DefineMaterials(), detectorMessenger, GapThickness, NbOfLayers, SetAbsorberMaterial(), and SetGapMaterial().

61  solidGap (0),logicGap (0),physiGap (0),
62  magField(0)
63 {
64  // default parameter values of the calorimeter
65  AbsorberThickness = 10.*mm;
66  GapThickness = 5.*mm;
67  NbOfLayers = 10;
68  CalorSizeYZ = 10.*cm;
70 
71  // materials
73  SetAbsorberMaterial("Lead");
74  SetGapMaterial("liquidArgon");
75 
76  // create commands for interactive definition of the calorimeter
78 }
ExN03DetectorMessenger * detectorMessenger
ExN03DetectorConstruction::~ExN03DetectorConstruction ( )

Definition at line 82 of file ExN03DetectorConstruction.cc.

References detectorMessenger.

83 { delete detectorMessenger;}
ExN03DetectorMessenger * detectorMessenger

Member Function Documentation

G4VPhysicalVolume * ExN03DetectorConstruction::Construct ( )

Definition at line 87 of file ExN03DetectorConstruction.cc.

References ConstructCalorimeter().

88 {
89  return ConstructCalorimeter();
90 }
G4VPhysicalVolume * ConstructCalorimeter()
G4VPhysicalVolume * ExN03DetectorConstruction::ConstructCalorimeter ( )
private

Definition at line 217 of file ExN03DetectorConstruction.cc.

References AbsorberMaterial, AbsorberThickness, CalorSizeYZ, CalorThickness, ComputeCalorParameters(), defaultMaterial, GapMaterial, GapThickness, LayerThickness, logicAbsorber, logicCalor, logicGap, logicLayer, logicWorld, NbOfLayers, physiAbsorber, physiCalor, physiGap, physiLayer, physiWorld, PrintCalorParameters(), solidAbsorber, solidCalor, solidGap, solidLayer, solidWorld, WorldSizeX, and WorldSizeYZ.

Referenced by Construct(), and UpdateGeometry().

218 {
219 
220  // Clean old geometry, if any
221  //
222  G4GeometryManager::GetInstance()->OpenGeometry();
223  G4PhysicalVolumeStore::GetInstance()->Clean();
224  G4LogicalVolumeStore::GetInstance()->Clean();
225  G4SolidStore::GetInstance()->Clean();
226 
227  // complete the Calor parameters definition
229 
230  //
231  // World
232  //
233  solidWorld = new G4Box("World", //its name
234  WorldSizeX/2,WorldSizeYZ/2,WorldSizeYZ/2); //its size
235 
236  logicWorld = new G4LogicalVolume(solidWorld, //its solid
237  defaultMaterial, //its material
238  "World"); //its name
239 
240  physiWorld = new G4PVPlacement(0, //no rotation
241  G4ThreeVector(), //at (0,0,0)
242  logicWorld, //its logical volume
243  "World", //its name
244  0, //its mother volume
245  false, //no boolean operation
246  0); //copy number
247 
248  //
249  // Calorimeter
250  //
253 
254  if (CalorThickness > 0.)
255  { solidCalor = new G4Box("Calorimeter", //its name
257 
258  logicCalor = new G4LogicalVolume(solidCalor, //its solid
259  defaultMaterial, //its material
260  "Calorimeter"); //its name
261 
262  physiCalor = new G4PVPlacement(0, //no rotation
263  G4ThreeVector(), //at (0,0,0)
264  logicCalor, //its logical volume
265  "Calorimeter", //its name
266  logicWorld, //its mother volume
267  false, //no boolean operation
268  0); //copy number
269 
270  //
271  // Layer
272  //
273  solidLayer = new G4Box("Layer", //its name
274  LayerThickness/2,CalorSizeYZ/2,CalorSizeYZ/2); //size
275 
276  logicLayer = new G4LogicalVolume(solidLayer, //its solid
277  defaultMaterial, //its material
278  "Layer"); //its name
279  if (NbOfLayers > 1)
280  physiLayer = new G4PVReplica("Layer", //its name
281  logicLayer, //its logical volume
282  logicCalor, //its mother
283  kXAxis, //axis of replication
284  NbOfLayers, //number of replica
285  LayerThickness); //witdth of replica
286  else
287  physiLayer = new G4PVPlacement(0, //no rotation
288  G4ThreeVector(), //at (0,0,0)
289  logicLayer, //its logical volume
290  "Layer", //its name
291  logicCalor, //its mother volume
292  false, //no boolean operation
293  0); //copy number
294  }
295 
296  //
297  // Absorber
298  //
300 
301  if (AbsorberThickness > 0.)
302  { solidAbsorber = new G4Box("Absorber", //its name
304 
305  logicAbsorber = new G4LogicalVolume(solidAbsorber, //its solid
306  AbsorberMaterial, //its material
307  AbsorberMaterial->GetName()); //name
308 
309  physiAbsorber = new G4PVPlacement(0, //no rotation
310  G4ThreeVector(-GapThickness/2,0.,0.), //its position
311  logicAbsorber, //its logical volume
312  AbsorberMaterial->GetName(), //its name
313  logicLayer, //its mother
314  false, //no boulean operat
315  0); //copy number
316 
317  }
318 
319  //
320  // Gap
321  //
322  solidGap=0; logicGap=0; physiGap=0;
323 
324  if (GapThickness > 0.)
325  { solidGap = new G4Box("Gap",
327 
328  logicGap = new G4LogicalVolume(solidGap,
329  GapMaterial,
330  GapMaterial->GetName());
331 
332  physiGap = new G4PVPlacement(0, //no rotation
333  G4ThreeVector(AbsorberThickness/2,0.,0.), //its position
334  logicGap, //its logical volume
335  GapMaterial->GetName(), //its name
336  logicLayer, //its mother
337  false, //no boulean operat
338  0); //copy number
339  }
340 
342 
343  //
344  // Visualization attributes
345  //
346  logicWorld->SetVisAttributes (G4VisAttributes::GetInvisible());
347 
348  G4VisAttributes* simpleBoxVisAtt= new G4VisAttributes(G4Colour(1.0,1.0,1.0));
349  simpleBoxVisAtt->SetVisibility(true);
350  logicCalor->SetVisAttributes(simpleBoxVisAtt);
351 
352  /*
353  // Below are vis attributes that permits someone to test / play
354  // with the interactive expansion / contraction geometry system of the
355  // vis/OpenInventor driver :
356  {G4VisAttributes* simpleBoxVisAtt= new G4VisAttributes(G4Colour(1.0,1.0,0.0));
357  simpleBoxVisAtt->SetVisibility(true);
358  delete logicCalor->GetVisAttributes();
359  logicCalor->SetVisAttributes(simpleBoxVisAtt);}
360 
361  {G4VisAttributes* atb= new G4VisAttributes(G4Colour(1.0,0.0,0.0));
362  logicLayer->SetVisAttributes(atb);}
363 
364  {G4VisAttributes* atb= new G4VisAttributes(G4Colour(0.0,1.0,0.0));
365  atb->SetForceSolid(true);
366  logicAbsorber->SetVisAttributes(atb);}
367 
368  {//Set opacity = 0.2 then transparency = 1 - 0.2 = 0.8
369  G4VisAttributes* atb= new G4VisAttributes(G4Colour(0.0,0.0,1.0,0.2));
370  atb->SetForceSolid(true);
371  logicGap->SetVisAttributes(atb);}
372  */
373 
374  //
375  //always return the physical World
376  //
377  return physiWorld;
378 }
void ExN03DetectorConstruction::DefineMaterials ( )
private

Definition at line 94 of file ExN03DetectorConstruction.cc.

References defaultMaterial, e, n, and z.

Referenced by ExN03DetectorConstruction().

95 {
96  //This function illustrates the possible ways to define materials
97 
98 G4String symbol; //a=mass of a mole;
99 G4double a, z, density; //z=mean number of protons;
100 G4int iz, n; //iz=number of protons in an isotope;
101  // n=number of nucleons in an isotope;
102 
103 G4int ncomponents, natoms;
104 G4double abundance, fractionmass;
105 
106 //
107 // define Elements
108 //
109 
110 G4Element* H = new G4Element("Hydrogen",symbol="H" , z= 1., a= 1.01*g/mole);
111 G4Element* C = new G4Element("Carbon" ,symbol="C" , z= 6., a= 12.01*g/mole);
112 G4Element* N = new G4Element("Nitrogen",symbol="N" , z= 7., a= 14.01*g/mole);
113 G4Element* O = new G4Element("Oxygen" ,symbol="O" , z= 8., a= 16.00*g/mole);
114 G4Element* Si = new G4Element("Silicon",symbol="Si" , z= 14., a= 28.09*g/mole);
115 
116 //
117 // define an Element from isotopes, by relative abundance
118 //
119 
120 G4Isotope* U5 = new G4Isotope("U235", iz=92, n=235, a=235.01*g/mole);
121 G4Isotope* U8 = new G4Isotope("U238", iz=92, n=238, a=238.03*g/mole);
122 
123 G4Element* U = new G4Element("enriched Uranium",symbol="U",ncomponents=2);
124 U->AddIsotope(U5, abundance= 90.*perCent);
125 U->AddIsotope(U8, abundance= 10.*perCent);
126 
127 //
128 // define simple materials
129 //
130 
131 new G4Material("Aluminium", z=13., a=26.98*g/mole, density=2.700*g/cm3);
132 new G4Material("liquidArgon", z=18., a= 39.95*g/mole, density= 1.390*g/cm3);
133 new G4Material("Lead" , z=82., a= 207.19*g/mole, density= 11.35*g/cm3);
134 
135 //
136 // define a material from elements. case 1: chemical molecule
137 //
138 
139 G4Material* H2O =
140 new G4Material("Water", density= 1.000*g/cm3, ncomponents=2);
141 H2O->AddElement(H, natoms=2);
142 H2O->AddElement(O, natoms=1);
143 // overwrite computed meanExcitationEnergy with ICRU recommended value
144 H2O->GetIonisation()->SetMeanExcitationEnergy(75.0*eV);
145 
146 G4Material* Sci =
147 new G4Material("Scintillator", density= 1.032*g/cm3, ncomponents=2);
148 Sci->AddElement(C, natoms=9);
149 Sci->AddElement(H, natoms=10);
150 
151 G4Material* Myl =
152 new G4Material("Mylar", density= 1.397*g/cm3, ncomponents=3);
153 Myl->AddElement(C, natoms=10);
154 Myl->AddElement(H, natoms= 8);
155 Myl->AddElement(O, natoms= 4);
156 
157 G4Material* SiO2 =
158 new G4Material("quartz",density= 2.200*g/cm3, ncomponents=2);
159 SiO2->AddElement(Si, natoms=1);
160 SiO2->AddElement(O , natoms=2);
161 
162 //
163 // define a material from elements. case 2: mixture by fractional mass
164 //
165 
166 G4Material* Air =
167 new G4Material("Air" , density= 1.290*mg/cm3, ncomponents=2);
168 Air->AddElement(N, fractionmass=0.7);
169 Air->AddElement(O, fractionmass=0.3);
170 
171 //
172 // define a material from elements and/or others materials (mixture of mixtures)
173 //
174 
175 G4Material* Aerog =
176 new G4Material("Aerogel", density= 0.200*g/cm3, ncomponents=3);
177 Aerog->AddMaterial(SiO2, fractionmass=62.5*perCent);
178 Aerog->AddMaterial(H2O , fractionmass=37.4*perCent);
179 Aerog->AddElement (C , fractionmass= 0.1*perCent);
180 
181 //
182 // examples of gas in non STP conditions
183 //
184 
185 G4Material* CO2 =
186 new G4Material("CarbonicGas", density= 27.*mg/cm3, ncomponents=2,
187  kStateGas, 325.*kelvin, 50.*atmosphere);
188 CO2->AddElement(C, natoms=1);
189 CO2->AddElement(O, natoms=2);
190 
191 G4Material* steam =
192 new G4Material("WaterSteam", density= 0.3*mg/cm3, ncomponents=1,
193  kStateGas, 500.*kelvin, 2.*atmosphere);
194 steam->AddMaterial(H2O, fractionmass=1.);
195 
196 //
197 // examples of vacuum
198 //
199 
200 G4Material* Vacuum =
201 new G4Material("Galactic", z=1., a=1.01*g/mole,density= universe_mean_density,
202  kStateGas, 2.73*kelvin, 3.e-18*pascal);
203 
204 G4Material* beam =
205 new G4Material("Beam", density= 1.e-5*g/cm3, ncomponents=1,
206  kStateGas, STP_Temperature, 2.e-2*bar);
207 beam->AddMaterial(Air, fractionmass=1.);
208 
209 G4cout << *(G4Material::GetMaterialTable()) << G4endl;
210 
211 //default materials of the World
212 defaultMaterial = Vacuum;
213 }
Double_t z
Definition: plot.C:276
Char_t n[5]
Float_t e
Definition: plot.C:35
const G4VPhysicalVolume* ExN03DetectorConstruction::GetAbsorber ( )
inline

Definition at line 91 of file ExN03DetectorConstruction.hh.

References physiAbsorber.

Referenced by BOOST_PYTHON_MODULE().

91 {return physiAbsorber;};
G4Material* ExN03DetectorConstruction::GetAbsorberMaterial ( )
inline

Definition at line 84 of file ExN03DetectorConstruction.hh.

References AbsorberMaterial.

Referenced by BOOST_PYTHON_MODULE().

G4double ExN03DetectorConstruction::GetAbsorberThickness ( )
inline

Definition at line 85 of file ExN03DetectorConstruction.hh.

References AbsorberThickness.

Referenced by BOOST_PYTHON_MODULE().

G4double ExN03DetectorConstruction::GetCalorSizeYZ ( )
inline

Definition at line 80 of file ExN03DetectorConstruction.hh.

References CalorSizeYZ.

Referenced by BOOST_PYTHON_MODULE().

G4double ExN03DetectorConstruction::GetCalorThickness ( )
inline

Definition at line 79 of file ExN03DetectorConstruction.hh.

References CalorThickness.

Referenced by BOOST_PYTHON_MODULE().

const G4VPhysicalVolume* ExN03DetectorConstruction::GetGap ( )
inline

Definition at line 92 of file ExN03DetectorConstruction.hh.

References AbsorberMaterial, and physiGap.

Referenced by BOOST_PYTHON_MODULE().

92 {return physiGap;};
G4Material* ExN03DetectorConstruction::GetGapMaterial ( )
inline

Definition at line 87 of file ExN03DetectorConstruction.hh.

References GapMaterial.

Referenced by BOOST_PYTHON_MODULE().

G4double ExN03DetectorConstruction::GetGapThickness ( )
inline

Definition at line 88 of file ExN03DetectorConstruction.hh.

References GapThickness.

Referenced by BOOST_PYTHON_MODULE().

G4int ExN03DetectorConstruction::GetNbOfLayers ( )
inline

Definition at line 82 of file ExN03DetectorConstruction.hh.

References NbOfLayers.

Referenced by BOOST_PYTHON_MODULE().

const G4VPhysicalVolume* ExN03DetectorConstruction::GetphysiWorld ( )
inline

Definition at line 90 of file ExN03DetectorConstruction.hh.

References physiWorld.

Referenced by BOOST_PYTHON_MODULE().

90 {return physiWorld;};
G4double ExN03DetectorConstruction::GetWorldSizeX ( )
inline

Definition at line 76 of file ExN03DetectorConstruction.hh.

References WorldSizeX.

Referenced by BOOST_PYTHON_MODULE().

G4double ExN03DetectorConstruction::GetWorldSizeYZ ( )
inline

Definition at line 77 of file ExN03DetectorConstruction.hh.

References WorldSizeYZ.

Referenced by BOOST_PYTHON_MODULE().

void ExN03DetectorConstruction::PrintCalorParameters ( )

Definition at line 382 of file ExN03DetectorConstruction.cc.

References AbsorberMaterial, AbsorberThickness, GapMaterial, GapThickness, and NbOfLayers.

Referenced by BOOST_PYTHON_MODULE(), and ConstructCalorimeter().

383 {
384  G4cout << "\n------------------------------------------------------------"
385  << "\n---> The calorimeter is " << NbOfLayers << " layers of: [ "
386  << AbsorberThickness/mm << "mm of " << AbsorberMaterial->GetName()
387  << " + "
388  << GapThickness/mm << "mm of " << GapMaterial->GetName() << " ] "
389  << "\n------------------------------------------------------------\n";
390 }
void ExN03DetectorConstruction::SetAbsorberMaterial ( G4String  materialChoice)

Definition at line 394 of file ExN03DetectorConstruction.cc.

References AbsorberMaterial.

Referenced by BOOST_PYTHON_MODULE(), ExN03DetectorConstruction(), and ExN03DetectorMessenger::SetNewValue().

395 {
396  // search the material by its name
397  G4Material* pttoMaterial = G4Material::GetMaterial(materialChoice);
398  if (pttoMaterial) AbsorberMaterial = pttoMaterial;
399 }
void ExN03DetectorConstruction::SetAbsorberThickness ( G4double  val)

Definition at line 412 of file ExN03DetectorConstruction.cc.

References AbsorberThickness.

Referenced by BOOST_PYTHON_MODULE(), and ExN03DetectorMessenger::SetNewValue().

413 {
414  // change Absorber thickness and recompute the calorimeter parameters
415  AbsorberThickness = val;
416 }
void ExN03DetectorConstruction::SetCalorSizeYZ ( G4double  val)

Definition at line 428 of file ExN03DetectorConstruction.cc.

References CalorSizeYZ.

Referenced by BOOST_PYTHON_MODULE(), and ExN03DetectorMessenger::SetNewValue().

429 {
430  // change the transverse size and recompute the calorimeter parameters
431  CalorSizeYZ = val;
432 }
void ExN03DetectorConstruction::SetGapMaterial ( G4String  materialChoice)

Definition at line 403 of file ExN03DetectorConstruction.cc.

References GapMaterial.

Referenced by BOOST_PYTHON_MODULE(), ExN03DetectorConstruction(), and ExN03DetectorMessenger::SetNewValue().

404 {
405  // search the material by its name
406  G4Material* pttoMaterial = G4Material::GetMaterial(materialChoice);
407  if (pttoMaterial) GapMaterial = pttoMaterial;
408 }
void ExN03DetectorConstruction::SetGapThickness ( G4double  val)

Definition at line 420 of file ExN03DetectorConstruction.cc.

References GapThickness.

Referenced by BOOST_PYTHON_MODULE(), and ExN03DetectorMessenger::SetNewValue().

421 {
422  // change Gap thickness and recompute the calorimeter parameters
423  GapThickness = val;
424 }
void ExN03DetectorConstruction::SetMagField ( G4double  fieldValue)

Definition at line 446 of file ExN03DetectorConstruction.cc.

References magField.

Referenced by BOOST_PYTHON_MODULE(), and ExN03DetectorMessenger::SetNewValue().

447 {
448  //apply a global uniform magnetic field along Z axis
449  G4FieldManager* fieldMgr
450  = G4TransportationManager::GetTransportationManager()->GetFieldManager();
451 
452  if(magField) delete magField; //delete the existing magn field
453 
454  if(fieldValue!=0.) // create a new one if non nul
455  { magField = new G4UniformMagField(G4ThreeVector(0.,0.,fieldValue));
456  fieldMgr->SetDetectorField(magField);
457  fieldMgr->CreateChordFinder(magField);
458  } else {
459  magField = 0;
460  fieldMgr->SetDetectorField(magField);
461  }
462 }
void ExN03DetectorConstruction::SetNbOfLayers ( G4int  val)

Definition at line 436 of file ExN03DetectorConstruction.cc.

References NbOfLayers.

Referenced by BOOST_PYTHON_MODULE(), and ExN03DetectorMessenger::SetNewValue().

437 {
438  NbOfLayers = val;
439 }
void ExN03DetectorConstruction::UpdateGeometry ( )

Definition at line 468 of file ExN03DetectorConstruction.cc.

References ConstructCalorimeter().

Referenced by BOOST_PYTHON_MODULE(), and ExN03DetectorMessenger::SetNewValue().

469 {
470  G4RunManager::GetRunManager()->DefineWorldVolume(ConstructCalorimeter());
471 }
G4VPhysicalVolume * ConstructCalorimeter()

Member Data Documentation

G4Material* ExN03DetectorConstruction::AbsorberMaterial
private
G4double ExN03DetectorConstruction::AbsorberThickness
private
G4double ExN03DetectorConstruction::CalorSizeYZ
private
G4double ExN03DetectorConstruction::CalorThickness
private
G4Material* ExN03DetectorConstruction::defaultMaterial
private

Definition at line 108 of file ExN03DetectorConstruction.hh.

Referenced by ConstructCalorimeter(), and DefineMaterials().

ExN03DetectorMessenger* ExN03DetectorConstruction::detectorMessenger
private
G4Material* ExN03DetectorConstruction::GapMaterial
private
G4double ExN03DetectorConstruction::GapThickness
private
G4double ExN03DetectorConstruction::LayerThickness
private

Definition at line 103 of file ExN03DetectorConstruction.hh.

Referenced by ComputeCalorParameters(), and ConstructCalorimeter().

G4LogicalVolume* ExN03DetectorConstruction::logicAbsorber
private

Definition at line 125 of file ExN03DetectorConstruction.hh.

Referenced by ConstructCalorimeter().

G4LogicalVolume* ExN03DetectorConstruction::logicCalor
private

Definition at line 117 of file ExN03DetectorConstruction.hh.

Referenced by ConstructCalorimeter().

G4LogicalVolume* ExN03DetectorConstruction::logicGap
private

Definition at line 129 of file ExN03DetectorConstruction.hh.

Referenced by ConstructCalorimeter().

G4LogicalVolume* ExN03DetectorConstruction::logicLayer
private

Definition at line 121 of file ExN03DetectorConstruction.hh.

Referenced by ConstructCalorimeter().

G4LogicalVolume* ExN03DetectorConstruction::logicWorld
private

Definition at line 113 of file ExN03DetectorConstruction.hh.

Referenced by ConstructCalorimeter().

G4UniformMagField* ExN03DetectorConstruction::magField
private

Definition at line 132 of file ExN03DetectorConstruction.hh.

Referenced by SetMagField().

G4int ExN03DetectorConstruction::NbOfLayers
private
G4VPhysicalVolume* ExN03DetectorConstruction::physiAbsorber
private

Definition at line 126 of file ExN03DetectorConstruction.hh.

Referenced by ConstructCalorimeter(), and GetAbsorber().

G4VPhysicalVolume* ExN03DetectorConstruction::physiCalor
private

Definition at line 118 of file ExN03DetectorConstruction.hh.

Referenced by ConstructCalorimeter().

G4VPhysicalVolume* ExN03DetectorConstruction::physiGap
private

Definition at line 130 of file ExN03DetectorConstruction.hh.

Referenced by ConstructCalorimeter(), and GetGap().

G4VPhysicalVolume* ExN03DetectorConstruction::physiLayer
private

Definition at line 122 of file ExN03DetectorConstruction.hh.

Referenced by ConstructCalorimeter().

G4VPhysicalVolume* ExN03DetectorConstruction::physiWorld
private

Definition at line 114 of file ExN03DetectorConstruction.hh.

Referenced by ConstructCalorimeter(), and GetphysiWorld().

G4Box* ExN03DetectorConstruction::solidAbsorber
private

Definition at line 124 of file ExN03DetectorConstruction.hh.

Referenced by ConstructCalorimeter().

G4Box* ExN03DetectorConstruction::solidCalor
private

Definition at line 116 of file ExN03DetectorConstruction.hh.

Referenced by ConstructCalorimeter().

G4Box* ExN03DetectorConstruction::solidGap
private

Definition at line 128 of file ExN03DetectorConstruction.hh.

Referenced by ConstructCalorimeter().

G4Box* ExN03DetectorConstruction::solidLayer
private

Definition at line 120 of file ExN03DetectorConstruction.hh.

Referenced by ConstructCalorimeter().

G4Box* ExN03DetectorConstruction::solidWorld
private

Definition at line 112 of file ExN03DetectorConstruction.hh.

Referenced by ConstructCalorimeter().

G4double ExN03DetectorConstruction::WorldSizeX
private
G4double ExN03DetectorConstruction::WorldSizeYZ
private

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