Geant4  9.6.p02
 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$
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 
56 :fBox(0), fBoxSize(500*m), fMaterial(0), fMagField(0)
57 {
58  DefineMaterials();
59  SetMaterial("Iron");
60 
61  // create UserLimits
62  fUserLimits = new G4UserLimits();
63 
64  // create commands for interactive definition of the detector
65  fDetectorMessenger = new DetectorMessenger(this);
66 }
67 
68 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
69 
71 { delete fDetectorMessenger;}
72 
73 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
74 
76 {
77  return ConstructVolumes();
78 }
79 
80 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
81 
82 void DetectorConstruction::DefineMaterials()
83 {
84  G4double a, z, density;
85 
86  new G4Material("Beryllium", z= 4., a= 9.012182*g/mole, density= 1.848*g/cm3);
87  new G4Material("Carbon", z= 6., a= 12.011*g/mole, density= 2.265*g/cm3);
88  new G4Material("Iron", z=26., a= 55.85*g/mole, density= 7.870*g/cm3);
89 
90  // define a vacuum with a restgas pressure typical for accelerators
91  G4double const Torr = atmosphere/760.; // 1 Torr
92  G4double pressure = 10e-9*Torr, temperature = 296.150*kelvin; // 23 Celsius
93  new G4Material("Vacuum", z=7., a=14.01*g/mole, density= 1.516784e-11*kg/m3,
94  kStateGas, temperature, pressure);
95 
97 }
98 
99 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
100 
101 G4VPhysicalVolume* DetectorConstruction::ConstructVolumes()
102 {
107 
108  G4Box*
109  sBox = new G4Box("Container", //its name
110  fBoxSize/2,fBoxSize/2,fBoxSize/2); //its dimensions
111 
113  lBox = new G4LogicalVolume(sBox, //its shape
114  fMaterial, //its material
115  fMaterial->GetName()); //its name
116 
117  lBox->SetUserLimits(fUserLimits);
118 
119  fBox = new G4PVPlacement(0, //no rotation
120  G4ThreeVector(), //at (0,0,0)
121  lBox, //its logical volume
122  fMaterial->GetName(), //its name
123  0, //its mother volume
124  false, //no boolean operation
125  0); //copy number
126 
127  PrintParameters();
128 
129  //
130  //always return the root volume
131  //
132  return fBox;
133 }
134 
135 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
136 
138 {
139  G4cout << "\n The Box is " << G4BestUnit(fBoxSize,"Length")
140  << " of " << fMaterial->GetName() << G4endl;
141 }
142 
143 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
144 
145 void DetectorConstruction::SetMaterial(G4String materialChoice)
146 {
147  // search the material by its name
148  G4Material* pttoMaterial = G4Material::GetMaterial(materialChoice);
149  if (pttoMaterial) fMaterial = pttoMaterial;
150 }
151 
152 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
153 
155 {
156  fBoxSize = value;
157 }
158 
159 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
160 
161 #include "G4FieldManager.hh"
163 
165 {
166  //apply a global uniform magnetic field along Z axis
167  G4FieldManager* fieldMgr
169 
170  if (fMagField) delete fMagField; //delete the existing magn field
171 
172  if (fieldValue!=0.) // create a new one if non null
173  {
174  fMagField = new G4UniformMagField(G4ThreeVector(0.,0.,fieldValue));
175  fieldMgr->SetDetectorField(fMagField);
176  fieldMgr->CreateChordFinder(fMagField);
177  }
178  else
179  {
180  fMagField = 0;
181  fieldMgr->SetDetectorField(fMagField);
182  }
183 }
184 
185 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
186 
188 {
189  // set the maximum allowed step size
190  //
191  if (val <= DBL_MIN)
192  { G4cout << "\n --->warning from SetMaxStepSize: maxStep "
193  << val << " out of range. Command refused" << G4endl;
194  return;
195  }
196  fUserLimits->SetMaxAllowedStep(val);
197 }
198 
199 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
200 
202 {
203  // set the maximum length of tracking step
204  //
205  if (val <= DBL_MIN)
206  { G4cout << "\n --->warning from SetMaxStepLength: maxStep "
207  << val << " out of range. Command refused" << G4endl;
208  return;
209  }
210  G4TransportationManager* tmanager =
212  tmanager->GetPropagatorInField()
214 }
215 
216 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
217 
218 #include "G4RunManager.hh"
219 
221 {
222  G4RunManager::GetRunManager()->DefineWorldVolume(ConstructVolumes());
223 }
224 
225 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......