Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
examples/extended/electromagnetic/TestEm16/src/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 //
26 /// \file electromagnetic/TestEm16/src/DetectorConstruction.cc
27 /// \brief Implementation of the DetectorConstruction class
28 //
29 // $Id: DetectorConstruction.cc 67268 2013-02-13 11:38:40Z ihrivnac $
30 //
31 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
32 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
33 
34 #include "DetectorConstruction.hh"
35 #include "DetectorMessenger.hh"
36 
37 #include "G4Material.hh"
38 #include "G4Box.hh"
39 #include "G4LogicalVolume.hh"
40 #include "G4PVPlacement.hh"
41 #include "G4UniformMagField.hh"
42 #include "G4PropagatorInField.hh"
43 #include "G4UserLimits.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 
53 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
54 
57  fBox(0), fBoxSize(500*m), fMaterial(0), fMagField(0),
58  fUserLimits(0), fDetectorMessenger(0)
59 {
60  DefineMaterials();
61  SetMaterial("Iron");
62 
63  // create UserLimits
64  fUserLimits = new G4UserLimits();
65 
66  // create commands for interactive definition of the detector
67  fDetectorMessenger = new DetectorMessenger(this);
68 }
69 
70 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
71 
73 { delete fDetectorMessenger;}
74 
75 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
76 
78 {
79  return ConstructVolumes();
80 }
81 
82 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
83 
84 void DetectorConstruction::DefineMaterials()
85 {
86  G4double a, z, density;
87 
88  new G4Material("Beryllium", z= 4., a= 9.012182*g/mole, density= 1.848*g/cm3);
89  new G4Material("Carbon", z= 6., a= 12.011*g/mole, density= 2.265*g/cm3);
90  new G4Material("Iron", z=26., a= 55.85*g/mole, density= 7.870*g/cm3);
91 
92  // define a vacuum with a restgas pressure typical for accelerators
93  G4double const Torr = atmosphere/760.; // 1 Torr
94  G4double pressure = 10e-9*Torr, temperature = 296.150*kelvin; // 23 Celsius
95  new G4Material("Vacuum", z=7., a=14.01*g/mole, density= 1.516784e-11*kg/m3,
96  kStateGas, temperature, pressure);
97 
99 }
100 
101 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
102 
103 G4VPhysicalVolume* DetectorConstruction::ConstructVolumes()
104 {
109 
110  G4Box*
111  sBox = new G4Box("Container", //its name
112  fBoxSize/2,fBoxSize/2,fBoxSize/2); //its dimensions
113 
115  lBox = new G4LogicalVolume(sBox, //its shape
116  fMaterial, //its material
117  fMaterial->GetName()); //its name
118 
119  lBox->SetUserLimits(fUserLimits);
120 
121  fBox = new G4PVPlacement(0, //no rotation
122  G4ThreeVector(), //at (0,0,0)
123  lBox, //its logical volume
124  fMaterial->GetName(), //its name
125  0, //its mother volume
126  false, //no boolean operation
127  0); //copy number
128 
129  PrintParameters();
130 
131  //
132  //always return the root volume
133  //
134  return fBox;
135 }
136 
137 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
138 
140 {
141  G4cout << "\n The Box is " << G4BestUnit(fBoxSize,"Length")
142  << " of " << fMaterial->GetName() << G4endl;
143 }
144 
145 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
146 
147 void DetectorConstruction::SetMaterial(G4String materialChoice)
148 {
149  // search the material by its name
150  G4Material* pttoMaterial = G4Material::GetMaterial(materialChoice);
151  if (pttoMaterial) fMaterial = pttoMaterial;
152 }
153 
154 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
155 
157 {
158  fBoxSize = value;
159 }
160 
161 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
162 
163 #include "G4FieldManager.hh"
165 
167 {
168  //apply a global uniform magnetic field along Z axis
169  G4FieldManager* fieldMgr
171 
172  if (fMagField) delete fMagField; //delete the existing magn field
173 
174  if (fieldValue!=0.) // create a new one if non null
175  {
176  fMagField = new G4UniformMagField(G4ThreeVector(0.,0.,fieldValue));
177  fieldMgr->SetDetectorField(fMagField);
178  fieldMgr->CreateChordFinder(fMagField);
179  }
180  else
181  {
182  fMagField = 0;
183  fieldMgr->SetDetectorField(fMagField);
184  }
185 }
186 
187 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
188 
190 {
191  // set the maximum allowed step size
192  //
193  if (val <= DBL_MIN)
194  { G4cout << "\n --->warning from SetMaxStepSize: maxStep "
195  << val << " out of range. Command refused" << G4endl;
196  return;
197  }
198  fUserLimits->SetMaxAllowedStep(val);
199 }
200 
201 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
202 
204 {
205  // set the maximum length of tracking step
206  //
207  if (val <= DBL_MIN)
208  { G4cout << "\n --->warning from SetMaxStepLength: maxStep "
209  << val << " out of range. Command refused" << G4endl;
210  return;
211  }
212  G4TransportationManager* tmanager =
214  tmanager->GetPropagatorInField()
216 }
217 
218 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
219 
220 #include "G4RunManager.hh"
221 
223 {
224  G4RunManager::GetRunManager()->DefineWorldVolume(ConstructVolumes());
225 }
226 
227 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
virtual void SetMaxAllowedStep(G4double ustepMax)
CLHEP::Hep3Vector G4ThreeVector
G4bool SetDetectorField(G4Field *detectorField)
static G4Material * GetMaterial(const G4String &name, G4bool warning=true)
Definition: G4Material.cc:578
G4double z
Definition: TRTMaterials.hh:39
Definition: G4Box.hh:63
const G4String & GetName() const
Definition: G4Material.hh:176
void SetUserLimits(G4UserLimits *pULimits)
static G4MaterialTable * GetMaterialTable()
Definition: G4Material.cc:564
int atmosphere
Definition: hepunit.py:151
static void Clean()
Definition: G4SolidStore.cc:79
#define G4BestUnit(a, b)
#define G4_USE_G4BESTUNIT_FOR_VERBOSE 1
virtual void DefineWorldVolume(G4VPhysicalVolume *worldVol, G4bool topologyIsChanged=true)
static G4PhysicalVolumeStore * GetInstance()
G4double density
Definition: TRTMaterials.hh:39
function g(Y1, Y2, PT2)
Definition: hijing1.383.f:5205
G4GLOB_DLL std::ostream G4cout
static G4LogicalVolumeStore * GetInstance()
static G4SolidStore * GetInstance()
static G4GeometryManager * GetInstance()
static G4TransportationManager * GetTransportationManager()
G4FieldManager * GetFieldManager() const
static G4RunManager * GetRunManager()
Definition: G4RunManager.cc:74
#define DBL_MIN
Definition: templates.hh:75
const XML_Char int const XML_Char * value
#define G4endl
Definition: G4ios.hh:61
void OpenGeometry(G4VPhysicalVolume *vol=0)
void SetLargestAcceptableStep(G4double newBigDist)
double G4double
Definition: G4Types.hh:76
void CreateChordFinder(G4MagneticField *detectorMagField)
G4PropagatorInField * GetPropagatorInField() const