Geant4 Cross Reference

Cross-Referencing   Geant4
Geant4/examples/extended/electromagnetic/TestEm6/src/DetectorConstruction.cc

Version: [ ReleaseNotes ] [ 1.0 ] [ 1.1 ] [ 2.0 ] [ 3.0 ] [ 3.1 ] [ 3.2 ] [ 4.0 ] [ 4.0.p1 ] [ 4.0.p2 ] [ 4.1 ] [ 4.1.p1 ] [ 5.0 ] [ 5.0.p1 ] [ 5.1 ] [ 5.1.p1 ] [ 5.2 ] [ 5.2.p1 ] [ 5.2.p2 ] [ 6.0 ] [ 6.0.p1 ] [ 6.1 ] [ 6.2 ] [ 6.2.p1 ] [ 6.2.p2 ] [ 7.0 ] [ 7.0.p1 ] [ 7.1 ] [ 7.1.p1 ] [ 8.0 ] [ 8.0.p1 ] [ 8.1 ] [ 8.1.p1 ] [ 8.1.p2 ] [ 8.2 ] [ 8.2.p1 ] [ 8.3 ] [ 8.3.p1 ] [ 8.3.p2 ] [ 9.0 ] [ 9.0.p1 ] [ 9.0.p2 ] [ 9.1 ] [ 9.1.p1 ] [ 9.1.p2 ] [ 9.1.p3 ] [ 9.2 ] [ 9.2.p1 ] [ 9.2.p2 ] [ 9.2.p3 ] [ 9.2.p4 ] [ 9.3 ] [ 9.3.p1 ] [ 9.3.p2 ] [ 9.4 ] [ 9.4.p1 ] [ 9.4.p2 ] [ 9.4.p3 ] [ 9.4.p4 ] [ 9.5 ] [ 9.5.p1 ] [ 9.5.p2 ] [ 9.6 ] [ 9.6.p1 ] [ 9.6.p2 ] [ 9.6.p3 ] [ 9.6.p4 ] [ 10.0 ] [ 10.0.p1 ] [ 10.0.p2 ] [ 10.0.p3 ] [ 10.0.p4 ] [ 10.1 ] [ 10.1.p1 ] [ 10.1.p2 ] [ 10.1.p3 ] [ 10.2 ] [ 10.2.p1 ] [ 10.2.p2 ] [ 10.2.p3 ] [ 10.3 ] [ 10.3.p1 ] [ 10.3.p2 ] [ 10.3.p3 ] [ 10.4 ] [ 10.4.p1 ] [ 10.4.p2 ] [ 10.4.p3 ] [ 10.5 ] [ 10.5.p1 ] [ 10.6 ] [ 10.6.p1 ] [ 10.6.p2 ] [ 10.6.p3 ] [ 10.7 ] [ 10.7.p1 ] [ 10.7.p2 ] [ 10.7.p3 ] [ 10.7.p4 ] [ 11.0 ] [ 11.0.p1 ] [ 11.0.p2 ] [ 11.0.p3, ] [ 11.0.p4 ] [ 11.1 ] [ 11.1.1 ] [ 11.1.2 ] [ 11.1.3 ] [ 11.2 ] [ 11.2.1 ] [ 11.2.2 ] [ 11.3.0 ]

Diff markup

Differences between /examples/extended/electromagnetic/TestEm6/src/DetectorConstruction.cc (Version 11.3.0) and /examples/extended/electromagnetic/TestEm6/src/DetectorConstruction.cc (Version 6.0)


  1 //                                                  1 
  2 // *******************************************    
  3 // * License and Disclaimer                       
  4 // *                                              
  5 // * The  Geant4 software  is  copyright of th    
  6 // * the Geant4 Collaboration.  It is provided    
  7 // * conditions of the Geant4 Software License    
  8 // * LICENSE and available at  http://cern.ch/    
  9 // * include a list of copyright holders.         
 10 // *                                              
 11 // * Neither the authors of this software syst    
 12 // * institutes,nor the agencies providing fin    
 13 // * work  make  any representation or  warran    
 14 // * regarding  this  software system or assum    
 15 // * use.  Please see the license in the file     
 16 // * for the full disclaimer and the limitatio    
 17 // *                                              
 18 // * This  code  implementation is the result     
 19 // * technical work of the GEANT4 collaboratio    
 20 // * By using,  copying,  modifying or  distri    
 21 // * any work based  on the software)  you  ag    
 22 // * use  in  resulting  scientific  publicati    
 23 // * acceptance of all terms of the Geant4 Sof    
 24 // *******************************************    
 25 //                                                
 26 /// \file electromagnetic/TestEm6/src/Detector    
 27 /// \brief Implementation of the DetectorConst    
 28 //                                                
 29 //                                                
 30 //....oooOO0OOooo........oooOO0OOooo........oo    
 31 //....oooOO0OOooo........oooOO0OOooo........oo    
 32                                                   
 33 #include "DetectorConstruction.hh"                
 34                                                   
 35 #include "DetectorMessenger.hh"                   
 36                                                   
 37 #include "G4Box.hh"                               
 38 #include "G4GeometryManager.hh"                   
 39 #include "G4LogicalVolume.hh"                     
 40 #include "G4LogicalVolumeStore.hh"                
 41 #include "G4Material.hh"                          
 42 #include "G4NistManager.hh"                       
 43 #include "G4PVPlacement.hh"                       
 44 #include "G4PhysicalVolumeStore.hh"               
 45 #include "G4RunManager.hh"                        
 46 #include "G4SolidStore.hh"                        
 47 #include "G4SystemOfUnits.hh"                     
 48 #include "G4UniformMagField.hh"                   
 49 #include "G4UnitsTable.hh"                        
 50 #include "G4UserLimits.hh"                        
 51                                                   
 52 //....oooOO0OOooo........oooOO0OOooo........oo    
 53                                                   
 54 DetectorConstruction::DetectorConstruction()      
 55   : G4VUserDetectorConstruction(),                
 56     fP_Box(0),                                    
 57     fL_Box(0),                                    
 58     fBoxSize(500 * m),                            
 59     fMaterial(0),                                 
 60     fMagField(0),                                 
 61     fUserLimits(0),                               
 62     fDetectorMessenger(0)                         
 63 {                                                 
 64   DefineMaterials();                              
 65   SetMaterial("Iron");                            
 66                                                   
 67   // create UserLimits                            
 68   fUserLimits = new G4UserLimits();               
 69                                                   
 70   // create commands for interactive definitio    
 71   fDetectorMessenger = new DetectorMessenger(t    
 72 }                                                 
 73                                                   
 74 //....oooOO0OOooo........oooOO0OOooo........oo    
 75                                                   
 76 DetectorConstruction::~DetectorConstruction()     
 77 {                                                 
 78   delete fDetectorMessenger;                      
 79 }                                                 
 80                                                   
 81 //....oooOO0OOooo........oooOO0OOooo........oo    
 82                                                   
 83 G4VPhysicalVolume* DetectorConstruction::Const    
 84 {                                                 
 85   return ConstructVolumes();                      
 86 }                                                 
 87                                                   
 88 //....oooOO0OOooo........oooOO0OOooo........oo    
 89                                                   
 90 void DetectorConstruction::DefineMaterials()      
 91 {                                                 
 92   G4double a, z, density;                         
 93                                                   
 94   new G4Material("Beryllium", z = 4., a = 9.01    
 95   new G4Material("Carbon", z = 6., a = 12.011     
 96   new G4Material("Iron", z = 26., a = 55.85 *     
 97                                                   
 98   G4cout << *(G4Material::GetMaterialTable())     
 99 }                                                 
100                                                   
101 //....oooOO0OOooo........oooOO0OOooo........oo    
102                                                   
103 G4VPhysicalVolume* DetectorConstruction::Const    
104 {                                                 
105   G4GeometryManager::GetInstance()->OpenGeomet    
106   G4PhysicalVolumeStore::GetInstance()->Clean(    
107   G4LogicalVolumeStore::GetInstance()->Clean()    
108   G4SolidStore::GetInstance()->Clean();           
109                                                   
110   G4Box* sBox = new G4Box("Container",  // its    
111                           fBoxSize / 2, fBoxSi    
112                                                   
113   fL_Box = new G4LogicalVolume(sBox,  // its s    
114                                fMaterial,  //     
115                                fMaterial->GetN    
116                                                   
117   fL_Box->SetUserLimits(fUserLimits);             
118                                                   
119   fP_Box = new G4PVPlacement(0,  // no rotatio    
120                              G4ThreeVector(),     
121                              fL_Box,  // its l    
122                              fMaterial->GetNam    
123                              0,  // its mother    
124                              false,  // no boo    
125                              0);  // copy numb    
126                                                   
127   PrintParameters();                              
128                                                   
129   //                                              
130   // always return the root volume                
131   //                                              
132   return fP_Box;                                  
133 }                                                 
134                                                   
135 //....oooOO0OOooo........oooOO0OOooo........oo    
136                                                   
137 void DetectorConstruction::PrintParameters()      
138 {                                                 
139   G4cout << "\n The Box is " << G4BestUnit(fBo    
140          << G4endl;                               
141 }                                                 
142                                                   
143 //....oooOO0OOooo........oooOO0OOooo........oo    
144                                                   
145 void DetectorConstruction::SetMaterial(const G    
146 {                                                 
147   G4cout << "###SetMaterial" << G4endl;           
148                                                   
149   // get the pointer to the existing material     
150   G4Material* mat = G4Material::GetMaterial(na    
151                                                   
152   // create the material by its name              
153   if (!mat) {                                     
154     mat = G4NistManager::Instance()->FindOrBui    
155   }                                               
156                                                   
157   if (mat && mat != fMaterial) {                  
158     G4cout << "### New target material: " << m    
159     fMaterial = mat;                              
160     if (fL_Box) {                                 
161       fL_Box->SetMaterial(mat);                   
162       G4RunManager::GetRunManager()->PhysicsHa    
163     }                                             
164   }                                               
165 }                                                 
166                                                   
167 //....oooOO0OOooo........oooOO0OOooo........oo    
168                                                   
169 void DetectorConstruction::SetSize(G4double va    
170 {                                                 
171   fBoxSize = value;                               
172 }                                                 
173                                                   
174 //....oooOO0OOooo........oooOO0OOooo........oo    
175                                                   
176 #include "G4FieldManager.hh"                      
177 #include "G4TransportationManager.hh"             
178                                                   
179 void DetectorConstruction::SetMagField(G4doubl    
180 {                                                 
181   // apply a global uniform magnetic field alo    
182   G4FieldManager* fieldMgr = G4TransportationM    
183                                                   
184   if (fMagField) delete fMagField;  // delete     
185                                                   
186   if (fieldValue != 0.)  // create a new one i    
187   {                                               
188     fMagField = new G4UniformMagField(G4ThreeV    
189     fieldMgr->SetDetectorField(fMagField);        
190     fieldMgr->CreateChordFinder(fMagField);       
191   }                                               
192   else {                                          
193     fMagField = 0;                                
194     fieldMgr->SetDetectorField(fMagField);        
195   }                                               
196 }                                                 
197                                                   
198 //....oooOO0OOooo........oooOO0OOooo........oo    
199                                                   
200 void DetectorConstruction::SetMaxStepSize(G4do    
201 {                                                 
202   // set the maximum allowed step size            
203   //                                              
204   if (val <= DBL_MIN) {                           
205     G4cout << "\n --->warning from SetMaxStepS    
206            << " out of range. Command refused"    
207     return;                                       
208   }                                               
209   fUserLimits->SetMaxAllowedStep(val);            
210 }                                                 
211                                                   
212 //....oooOO0OOooo........oooOO0OOooo........oo    
213                                                   
214 #include "G4RunManager.hh"                        
215                                                   
216 void DetectorConstruction::UpdateGeometry()       
217 {                                                 
218   G4RunManager::GetRunManager()->DefineWorldVo    
219 }                                                 
220                                                   
221 //....oooOO0OOooo........oooOO0OOooo........oo    
222