Geant4  10.03.p03
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
DetectorConstruction.cc
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 // $Id: DetectorConstruction.cc 99441 2016-09-22 08:35:13Z gcosmo $
30 //
31 
32 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
33 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
34 
35 #include "DetectorConstruction.hh"
36 #include "DetectorMessenger.hh"
37 
38 #include "G4Material.hh"
39 #include "G4NistManager.hh"
40 #include "G4Box.hh"
41 #include "G4LogicalVolume.hh"
42 #include "G4PVPlacement.hh"
43 #include "G4RunManager.hh"
44 
45 #include "G4GeometryManager.hh"
46 #include "G4PhysicalVolumeStore.hh"
47 #include "G4LogicalVolumeStore.hh"
48 #include "G4SolidStore.hh"
49 
50 #include "G4UnitsTable.hh"
51 #include "G4SystemOfUnits.hh"
52 #include "G4PhysicalConstants.hh"
53 
54 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
55 
57 :G4VUserDetectorConstruction(),fPBox(nullptr), fLBox(nullptr),
58  fBox(nullptr), fMaterial(nullptr)
59 {
60  fBoxSize = 10*m;
61  DefineMaterials();
62  SetMaterial("Aluminium");
63  fDetectorMessenger = new DetectorMessenger(this);
64 }
65 
66 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
67 
69 { delete fDetectorMessenger;}
70 
71 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
72 
73 void DetectorConstruction::DefineMaterials()
74 {
75  //
76  // define Elements
77  //
78  G4double z,a;
79 
80  G4Element* H = new G4Element("Hydrogen" ,"H" , z= 1., a= 1.01*g/mole);
81  G4Element* C = new G4Element("Hydrogen" ,"C" , z= 6., a= 12.00*g/mole);
82  G4Element* N = new G4Element("Nitrogen" ,"N" , z= 7., a= 14.01*g/mole);
83  G4Element* O = new G4Element("Oxygen" ,"O" , z= 8., a= 16.00*g/mole);
84  G4Element* Ge = new G4Element("Germanium","Ge", z=32., a= 72.59*g/mole);
85  G4Element* Bi = new G4Element("Bismuth" ,"Bi", z=83., a= 208.98*g/mole);
86 
87  //
88  // define materials
89  //
90  G4double density;
91  G4int ncomponents, natoms;
92  G4double fractionmass;
93 
94  G4Material* Air =
95  new G4Material("Air", density= 1.290*mg/cm3, ncomponents=2);
96  Air->AddElement(N, fractionmass=70.*perCent);
97  Air->AddElement(O, fractionmass=30.*perCent);
98 
99  G4Material* H2l =
100  new G4Material("H2liquid", density= 70.8*mg/cm3, ncomponents=1);
101  H2l->AddElement(H, fractionmass=1.);
102 
103  G4Material* H2O =
104  new G4Material("Water", density= 1.000*g/cm3, ncomponents=2);
105  H2O->AddElement(H, natoms=2);
106  H2O->AddElement(O, natoms=1);
109 
110  density = 0.001*mg/cm3;
111  G4Material* CO2 = new G4Material("CO2", density, ncomponents=2);
112  CO2->AddElement(C, natoms=1);
113  CO2->AddElement(O, natoms=2);
114 
115  G4Isotope* d = new G4Isotope("d", 1, 2, 0.0, 0);
116  G4Element* D = new G4Element("Heavy-Hydrogen" ,"D", ncomponents=1);
117  D->AddIsotope(d, 1.0);
118  G4Material* D2 =
119  new G4Material("D2_gas", density= 0.036*mg/cm3, ncomponents=1);
120  D2->AddElement(D, natoms=2);
121 
122  new G4Material("liquidArgon", z=18., a= 39.95*g/mole, density= 1.390*g/cm3);
123 
124  new G4Material("Aluminium" , z=13., a= 26.98*g/mole, density= 2.700*g/cm3);
125 
126  new G4Material("Silicon" , z=14., a= 28.09*g/mole, density= 2.330*g/cm3);
127 
128  new G4Material("Chromium" , z=24., a= 51.99*g/mole, density= 7.140*g/cm3);
129 
130  new G4Material("Germanium" , z=32., a= 72.61*g/mole, density= 5.323*g/cm3);
131 
132  G4Material* BGO =
133  new G4Material("BGO", density= 7.10*g/cm3, ncomponents=3);
134  BGO->AddElement(O , natoms=12);
135  BGO->AddElement(Ge, natoms= 3);
136  BGO->AddElement(Bi, natoms= 4);
137 
138  new G4Material("Iron" , z=26., a= 55.85*g/mole, density= 7.870*g/cm3);
139 
140  new G4Material("Tungsten" , z=74., a=183.85*g/mole, density= 19.30*g/cm3);
141 
142  new G4Material("Gold" , z=79., a=196.97*g/mole, density= 19.32*g/cm3);
143 
144  new G4Material("Lead" , z=82., a=207.19*g/mole, density= 11.35*g/cm3);
145 
146  new G4Material("Uranium" , z=92., a=238.03*g/mole, density= 18.95*g/cm3);
147 
148 
149  G4Material* argonGas =
150  new G4Material("ArgonGas", z=18, a=39.948*g/mole, density= 1.782*mg/cm3,
151  kStateGas, 273.15*kelvin, 1*atmosphere);
152 
153  G4Material* butane =
154  new G4Material("Isobutane",density= 2.42*mg/cm3, ncomponents=2,
155  kStateGas,273.15*kelvin, 1*atmosphere);
156  butane->AddElement(C, natoms=4);
157  butane->AddElement(H, natoms=10);
158 
159  G4Material* ArButane =
160  new G4Material("ArgonButane", density= 1.835*mg/cm3, ncomponents=2,
161  kStateGas,273.15*kelvin,1.*atmosphere);
162  ArButane->AddMaterial(argonGas, fractionmass=70*perCent);
163  ArButane->AddMaterial(butane , fractionmass=30*perCent);
164 
165  // example of vacuum
166  //
167  density = universe_mean_density; //from PhysicalConstants.h
168  new G4Material("Galactic", z=1., a=1.008*g/mole, density,
169  kStateGas,2.73*kelvin,3.e-18*pascal);
170 
171  // use Nist
172  //
174 
175  G4bool isotopes = false;
177  G4Element* Si = man->FindOrBuildElement("Si", isotopes);
178  G4Element* Lu = man->FindOrBuildElement("Lu", isotopes);
179 
180  G4Material* LSO = new G4Material("Lu2SiO5", 7.4*g/cm3, 3);
181  LSO->AddElement(Lu, 2);
182  LSO->AddElement(Si, 1);
183  LSO->AddElement(O , 5);
184 
186 }
187 
188 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
189 
191 {
192  fBox = new G4Box("Container", //its name
193  fBoxSize/2,fBoxSize/2,fBoxSize/2); //its dimensions
194 
195  fLBox = new G4LogicalVolume(fBox, //its shape
196  fMaterial, //its material
197  fMaterial->GetName()); //its name
198 
199  fPBox = new G4PVPlacement(0, //no rotation
200  G4ThreeVector(), //at (0,0,0)
201  fLBox, //its logical volume
202  fMaterial->GetName(), //its name
203  0, //its mother volume
204  false, //no boolean operation
205  0); //copy number
206 
207  PrintParameters();
208 
209  //always return the root volume
210  //
211  return fPBox;
212 }
213 
214 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
215 
217 {
218  G4cout << "\n The Box is " << G4BestUnit(fBoxSize,"Length")
219  << " of " << fMaterial->GetName() << G4endl;
220 }
221 
222 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
223 
224 void DetectorConstruction::SetMaterial(G4String materialChoice)
225 {
226  // search the material by its name
227  G4Material* pttoMaterial =
228  G4NistManager::Instance()->FindOrBuildMaterial(materialChoice);
229 
230  if (pttoMaterial) {
231  fMaterial = pttoMaterial;
232  if ( fLBox ) { fLBox->SetMaterial(fMaterial); }
233  } else {
234  G4cout << "\n--> warning from DetectorConstruction::SetMaterial : "
235  << materialChoice << " not found" << G4endl;
236  }
238 }
239 
240 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
241 
243 {
244  fBoxSize = value;
245  if(fBox) {
246  fBox->SetXHalfLength(fBoxSize/2);
247  fBox->SetYHalfLength(fBoxSize/2);
248  fBox->SetZHalfLength(fBoxSize/2);
249  }
250 }
251 
252 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
253 
255 #include "G4AutoDelete.hh"
256 
258 {
259  if ( fFieldMessenger.Get() == 0 ) {
260  // Create global magnetic field messenger.
261  // Uniform magnetic field is then created automatically if
262  // the field value is not zero.
263  G4ThreeVector fieldValue = G4ThreeVector();
265  new G4GlobalMagFieldMessenger(fieldValue);
266  //msg->SetVerboseLevel(1);
268  fFieldMessenger.Put( msg );
269 
270  }
271 }
272 
273 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
G4IonisParamMat * GetIonisation() const
Definition: G4Material.hh:226
G4Material * FindOrBuildMaterial(const G4String &name, G4bool isotopes=true, G4bool warning=false)
static constexpr double mg
Definition: G4SIunits.hh:184
CLHEP::Hep3Vector G4ThreeVector
void AddMaterial(G4Material *material, G4double fraction)
Definition: G4Material.cc:467
std::vector< ExP01TrackerHit * > a
Definition: ExP01Classes.hh:33
int universe_mean_density
Definition: hepunit.py:307
Definition: G4Box.hh:64
void SetMeanExcitationEnergy(G4double value)
static constexpr double perCent
Definition: G4SIunits.hh:332
const G4String & GetName() const
Definition: G4Material.hh:178
G4VPhysicalVolume * Construct()
value_type & Get() const
Definition: G4Cache.hh:282
static G4MaterialTable * GetMaterialTable()
Definition: G4Material.cc:587
double C(double temp)
#define G4BestUnit(a, b)
#define G4_USE_G4BESTUNIT_FOR_VERBOSE 1
int G4int
Definition: G4Types.hh:78
static G4NistManager * Instance()
virtual void ConstructSDandField()
function g(Y1, Y2, PT2)
Definition: hijing1.383.f:5205
void Register(T *inst)
Definition: G4AutoDelete.hh:65
G4GLOB_DLL std::ostream G4cout
static constexpr double m
Definition: G4SIunits.hh:129
const XML_Char int const XML_Char * value
Definition: expat.h:331
void PhysicsHasBeenModified()
bool G4bool
Definition: G4Types.hh:79
void AddIsotope(G4Isotope *isotope, G4double RelativeAbundance)
Definition: G4Element.cc:152
#define pascal
static constexpr double eV
Definition: G4SIunits.hh:215
static constexpr double kelvin
Definition: G4SIunits.hh:281
static constexpr double cm3
Definition: G4SIunits.hh:121
static G4RunManager * GetRunManager()
Definition: G4RunManager.cc:79
double D(double temp)
tuple z
Definition: test.py:28
#define G4endl
Definition: G4ios.hh:61
**D E S C R I P T I O N
Definition: HEPEvtcom.cc:77
void AddElement(G4Element *element, G4int nAtoms)
Definition: G4Material.cc:362
double G4double
Definition: G4Types.hh:76
G4Element * FindOrBuildElement(G4int Z, G4bool isotopes=true)
void SetMaterial(G4Material *pMaterial)
void Put(const value_type &val) const
Definition: G4Cache.hh:286
static constexpr double atmosphere
Definition: G4SIunits.hh:237
static constexpr double mole
Definition: G4SIunits.hh:286