Geant4  10.02
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 83428 2014-08-21 15:46:01Z gcosmo $
30 //
31 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
32 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
33 
34 #include "DetectorConstruction.hh"
35 #include "DetectorMessenger.hh"
36 #include "G4NistManager.hh"
37 #include "G4RunManager.hh"
38 
39 #include "G4Material.hh"
40 #include "G4Box.hh"
41 #include "G4LogicalVolume.hh"
42 #include "G4PVPlacement.hh"
43 #include "G4UniformMagField.hh"
44 #include "G4UserLimits.hh"
45 
46 #include "G4GeometryManager.hh"
47 #include "G4PhysicalVolumeStore.hh"
48 #include "G4LogicalVolumeStore.hh"
49 #include "G4SolidStore.hh"
50 
51 #include "G4UnitsTable.hh"
52 #include "G4SystemOfUnits.hh"
53 
54 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
55 
58  fP_Box(0), fL_Box(0), fBoxSize(500*m), fMaterial(0), fMagField(0),
59  fUserLimits(0), fDetectorMessenger(0)
60 {
62  SetMaterial("Iron");
63 
64  // create UserLimits
65  fUserLimits = new G4UserLimits();
66 
67  // create commands for interactive definition of the detector
69 }
70 
71 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
72 
74 { delete fDetectorMessenger;}
75 
76 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
77 
79 {
80  return ConstructVolumes();
81 }
82 
83 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
84 
86 {
87  G4double a, z, density;
88 
89  new G4Material("Beryllium", z= 4., a= 9.012182*g/mole, density= 1.848*g/cm3);
90  new G4Material("Carbon", z= 6., a= 12.011*g/mole, density= 2.265*g/cm3);
91  new G4Material("Iron", z=26., a= 55.85*g/mole, density= 7.870*g/cm3);
92 
94 }
95 
96 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
97 
99 {
104 
105  G4Box*
106  sBox = new G4Box("Container", //its name
107  fBoxSize/2,fBoxSize/2,fBoxSize/2); //its dimensions
108 
109  fL_Box = new G4LogicalVolume(sBox, //its shape
110  fMaterial, //its material
111  fMaterial->GetName()); //its name
112 
114 
115  fP_Box = new G4PVPlacement(0, //no rotation
116  G4ThreeVector(), //at (0,0,0)
117  fL_Box, //its logical volume
118  fMaterial->GetName(), //its name
119  0, //its mother volume
120  false, //no boolean operation
121  0); //copy number
122 
123  PrintParameters();
124 
125  //
126  //always return the root volume
127  //
128  return fP_Box;
129 }
130 
131 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
132 
134 {
135  G4cout << "\n The Box is " << G4BestUnit(fBoxSize,"Length")
136  << " of " << fMaterial->GetName() << G4endl;
137 }
138 
139 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
140 
142 {
143  G4cout << "###SetMaterial" << G4endl;
144 
145  // get the pointer to the existing material
146  G4Material* mat = G4Material::GetMaterial(name, false);
147 
148  // create the material by its name
149  if(!mat) { mat = G4NistManager::Instance()->FindOrBuildMaterial(name); }
150 
151  if (mat && mat != fMaterial) {
152  G4cout << "### New target material: " << mat->GetName() << G4endl;
153  fMaterial = mat;
154  if(fL_Box) {
155  fL_Box->SetMaterial(mat);
157  }
158  }
159 }
160 
161 
162 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
163 
165 {
166  fBoxSize = value;
167 }
168 
169 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
170 
171 #include "G4FieldManager.hh"
173 
175 {
176  //apply a global uniform magnetic field along Z axis
177  G4FieldManager* fieldMgr
179 
180  if (fMagField) delete fMagField; //delete the existing magn field
181 
182  if (fieldValue!=0.) // create a new one if non nul
183  {
184  fMagField = new G4UniformMagField(G4ThreeVector(0.,0.,fieldValue));
185  fieldMgr->SetDetectorField(fMagField);
186  fieldMgr->CreateChordFinder(fMagField);
187  }
188  else
189  {
190  fMagField = 0;
191  fieldMgr->SetDetectorField(fMagField);
192  }
193 }
194 
195 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
196 
198 {
199  // set the maximum allowed step size
200  //
201  if (val <= DBL_MIN)
202  { G4cout << "\n --->warning from SetMaxStepSize: maxStep "
203  << val << " out of range. Command refused" << G4endl;
204  return;
205  }
207 }
208 
209 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
210 
211 #include "G4RunManager.hh"
212 
214 {
216 }
217 
218 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
G4Material * FindOrBuildMaterial(const G4String &name, G4bool isotopes=true, G4bool warning=false)
virtual void SetMaxAllowedStep(G4double ustepMax)
CLHEP::Hep3Vector G4ThreeVector
G4bool SetDetectorField(G4Field *detectorField)
static G4Material * GetMaterial(const G4String &name, G4bool warning=true)
Definition: G4Material.cc:604
G4double z
Definition: TRTMaterials.hh:39
Definition: G4Box.hh:64
G4String name
Definition: TRTMaterials.hh:40
const G4String & GetName() const
Definition: G4Material.hh:178
G4VPhysicalVolume * Construct()
void SetUserLimits(G4UserLimits *pULimits)
static G4MaterialTable * GetMaterialTable()
Definition: G4Material.cc:589
static void Clean()
Definition: G4SolidStore.cc:79
G4double a
Definition: TRTMaterials.hh:39
G4LogicalVolume * fL_Box
#define G4BestUnit(a, b)
#define G4_USE_G4BESTUNIT_FOR_VERBOSE 1
static G4NistManager * Instance()
virtual void DefineWorldVolume(G4VPhysicalVolume *worldVol, G4bool topologyIsChanged=true)
static G4PhysicalVolumeStore * GetInstance()
G4double density
Definition: TRTMaterials.hh:39
G4GLOB_DLL std::ostream G4cout
void PhysicsHasBeenModified()
G4UniformMagField * fMagField
static G4LogicalVolumeStore * GetInstance()
static const double cm3
Definition: G4SIunits.hh:120
static G4SolidStore * GetInstance()
static G4GeometryManager * GetInstance()
static G4TransportationManager * GetTransportationManager()
G4FieldManager * GetFieldManager() const
static G4RunManager * GetRunManager()
Definition: G4RunManager.cc:79
static const double g
Definition: G4SIunits.hh:180
#define DBL_MIN
Definition: templates.hh:75
static const double mole
Definition: G4SIunits.hh:283
#define G4endl
Definition: G4ios.hh:61
static const double m
Definition: G4SIunits.hh:128
void OpenGeometry(G4VPhysicalVolume *vol=0)
double G4double
Definition: G4Types.hh:76
void CreateChordFinder(G4MagneticField *detectorMagField)
G4VPhysicalVolume * ConstructVolumes()
void SetMaterial(G4Material *pMaterial)
G4VPhysicalVolume * fP_Box
Messenger class that defines commands for DetectorConstruction.
DetectorMessenger * fDetectorMessenger