Loading...
Searching...
No Matches
Public Member Functions | Private Attributes | List of all members
DetectorConstruction Class Reference

#include <DetectorConstruction.hh>

Inheritance diagram for DetectorConstruction:
G4VUserDetectorConstruction

Public Member Functions

 DetectorConstruction ()
 
 ~DetectorConstruction () override
 
G4VPhysicalVolumeConstruct () override
 
void ConstructSDandField () override
 
void SetSize (G4double)
 
void SetMaterial (const G4String &)
 
const G4VPhysicalVolumeGetWorld () const
 
G4double GetSize () const
 
const G4MaterialGetMaterial () const
 
void PrintParameters ()
 
void DefineMaterials ()
 

Private Attributes

G4VPhysicalVolumefPBox = nullptr
 
G4LogicalVolumefLBox = nullptr
 
G4BoxfBox = nullptr
 
G4double fBoxSize = 0.
 
G4MaterialfMaterial = nullptr
 
DetectorMessengerfDetectorMessenger = nullptr
 
G4Cache< G4GlobalMagFieldMessenger * > fFieldMessenger = nullptr
 

Detailed Description

Definition at line 49 of file DetectorConstruction.hh.

Constructor & Destructor Documentation

◆ DetectorConstruction()

DetectorConstruction::DetectorConstruction ( )

Definition at line 58 of file DetectorConstruction.cc.

◆ ~DetectorConstruction()

DetectorConstruction::~DetectorConstruction ( )
override

Definition at line 68 of file DetectorConstruction.cc.

69{ delete fDetectorMessenger;}

Member Function Documentation

◆ Construct()

G4VPhysicalVolume * DetectorConstruction::Construct ( )
override

Definition at line 190 of file DetectorConstruction.cc.

191{
192 if(fPBox) { return fPBox; }
193 fBox = new G4Box("Container", //its name
194 fBoxSize/2,fBoxSize/2,fBoxSize/2); //its dimensions
195
196 fLBox = new G4LogicalVolume(fBox, //its shape
197 fMaterial, //its material
198 fMaterial->GetName()); //its name
199
200 fPBox = new G4PVPlacement(0, //no rotation
201 G4ThreeVector(), //at (0,0,0)
202 fLBox, //its logical volume
203 fMaterial->GetName(), //its name
204 0, //its mother volume
205 false, //no boolean operation
206 0); //copy number
207
209
210 //always return the root volume
211 //
212 return fPBox;
213}
G4VPhysicalVolume * fPBox

◆ ConstructSDandField()

void DetectorConstruction::ConstructSDandField ( )
override

Definition at line 256 of file DetectorConstruction.cc.

257{
258 if ( fFieldMessenger.Get() == 0 ) {
259 // Create global magnetic field messenger.
260 // Uniform magnetic field is then created automatically if
261 // the field value is not zero.
262 G4ThreeVector fieldValue = G4ThreeVector();
264 new G4GlobalMagFieldMessenger(fieldValue);
265 //msg->SetVerboseLevel(1);
266 G4AutoDelete::Register(msg);
267 fFieldMessenger.Put( msg );
268
269 }
270}
G4Cache< G4GlobalMagFieldMessenger * > fFieldMessenger

◆ SetSize()

void DetectorConstruction::SetSize ( G4double  value)

Definition at line 244 of file DetectorConstruction.cc.

245{
246 fBoxSize = value;
247 if(fBox) {
248 fBox->SetXHalfLength(fBoxSize/2);
249 fBox->SetYHalfLength(fBoxSize/2);
250 fBox->SetZHalfLength(fBoxSize/2);
251 }
252}

◆ SetMaterial()

void DetectorConstruction::SetMaterial ( const G4String materialChoice)

Definition at line 226 of file DetectorConstruction.cc.

227{
228 // search the material by its name
229 G4Material* pttoMaterial =
230 G4NistManager::Instance()->FindOrBuildMaterial(materialChoice);
231
232 if (pttoMaterial) {
233 fMaterial = pttoMaterial;
234 if ( fLBox ) { fLBox->SetMaterial(fMaterial); }
235 } else {
236 G4cout << "\n--> warning from DetectorConstruction::SetMaterial : "
237 << materialChoice << " not found" << G4endl;
238 }
239 G4RunManager::GetRunManager()->PhysicsHasBeenModified();
240}

◆ GetWorld()

const G4VPhysicalVolume * DetectorConstruction::GetWorld ( ) const
inline

Definition at line 62 of file DetectorConstruction.hh.

62{return fPBox;};

◆ GetSize()

G4double DetectorConstruction::GetSize ( ) const
inline

Definition at line 63 of file DetectorConstruction.hh.

63{return fBoxSize;};

◆ GetMaterial()

const G4Material * DetectorConstruction::GetMaterial ( ) const
inline

Definition at line 64 of file DetectorConstruction.hh.

64{return fMaterial;};

◆ PrintParameters()

void DetectorConstruction::PrintParameters ( )

Definition at line 217 of file DetectorConstruction.cc.

218{
219 G4cout << "\n The Box is " << G4BestUnit(fBoxSize,"Length")
220 << " of " << fMaterial->GetName() << G4endl;
221 G4cout << fMaterial << G4endl;
222}

◆ DefineMaterials()

void DetectorConstruction::DefineMaterials ( )

H2O->SetChemicalFormula("H_2O");

G4Element* O = man->FindOrBuildElement("O" , isotopes);

G4cout << *(G4Material::GetMaterialTable()) << G4endl;

Definition at line 73 of file DetectorConstruction.cc.

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);
107 ///H2O->SetChemicalFormula("H_2O");
108 H2O->GetIonisation()->SetMeanExcitationEnergy(78.0*eV);
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 //
173 G4NistManager* man = G4NistManager::Instance();
174
175 G4bool isotopes = false;
176 ///G4Element* O = man->FindOrBuildElement("O" , isotopes);
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
185 ///G4cout << *(G4Material::GetMaterialTable()) << G4endl;
186}

Member Data Documentation

◆ fPBox

G4VPhysicalVolume* DetectorConstruction::fPBox = nullptr
private

Definition at line 71 of file DetectorConstruction.hh.

◆ fLBox

G4LogicalVolume* DetectorConstruction::fLBox = nullptr
private

Definition at line 72 of file DetectorConstruction.hh.

◆ fBox

G4Box* DetectorConstruction::fBox = nullptr
private

Definition at line 73 of file DetectorConstruction.hh.

◆ fBoxSize

G4double DetectorConstruction::fBoxSize = 0.
private

Definition at line 75 of file DetectorConstruction.hh.

◆ fMaterial

G4Material* DetectorConstruction::fMaterial = nullptr
private

Definition at line 76 of file DetectorConstruction.hh.

◆ fDetectorMessenger

DetectorMessenger* DetectorConstruction::fDetectorMessenger = nullptr
private

Definition at line 78 of file DetectorConstruction.hh.

◆ fFieldMessenger

G4Cache<G4GlobalMagFieldMessenger*> DetectorConstruction::fFieldMessenger = nullptr
private

Definition at line 79 of file DetectorConstruction.hh.


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