Geant4 Cross Reference

Cross-Referencing   Geant4
Geant4/examples/advanced/CaTS/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/advanced/CaTS/src/DetectorConstruction.cc (Version 11.3.0) and /examples/advanced/CaTS/src/DetectorConstruction.cc (Version 9.0.p2)


  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 // *******************************************    
 27 //                                                
 28 //  CaTS (Calorimetry and Tracking Simulation)    
 29 //                                                
 30 //  Authors : Hans Wenzel                         
 31 //            Soon Yung Jun                       
 32 //            (Fermi National Accelerator Labo    
 33 //                                                
 34 // History                                        
 35 //   October 18th, 2021 : first implementation    
 36 //                                                
 37 // *******************************************    
 38 //                                                
 39 /// \file DetectorConstruction.cc                 
 40 /// \brief Implementation of the CaTS::Detecto    
 41                                                   
 42 // Geant4 headers                                 
 43 #include "G4RunManager.hh"                        
 44 #include "G4PhysicalVolumeStore.hh"               
 45 #include "G4LogicalVolumeStore.hh"                
 46 #include "G4VisAttributes.hh"                     
 47 #include "G4UserLimits.hh"                        
 48 #include "G4ios.hh"                               
 49 #include "G4SDManager.hh"                         
 50 #include "G4GDMLParser.hh"                        
 51 // project headers                                
 52 #include "ConfigurationManager.hh"                
 53 #include "DetectorConstruction.hh"                
 54 #include "TrackerSD.hh"                           
 55 #include "MscSD.hh"                               
 56 #include "lArTPCSD.hh"                            
 57 #include "CalorimeterSD.hh"                       
 58 #include "DRCalorimeterSD.hh"                     
 59 #include "RadiatorSD.hh"                          
 60 #include "PhotonSD.hh"                            
 61 #include "InteractionSD.hh"                       
 62 #include "ColorReader.hh"                         
 63 // c++ headers                                    
 64 #include <iostream>                               
 65                                                   
 66 DetectorConstruction::DetectorConstruction(G4S    
 67   : G4VUserDetectorConstruction()                 
 68   , gdmlFile(fname)                               
 69 {}                                                
 70                                                   
 71 DetectorConstruction::~DetectorConstruction()     
 72 G4VPhysicalVolume* DetectorConstruction::Const    
 73 {                                                 
 74   verbose = ConfigurationManager::getInstance(    
 75   ReadGDML();                                     
 76   const G4GDMLAuxMapType* auxmap = parser->Get    
 77   if(verbose)                                     
 78   {                                               
 79     G4cout << "Found " << auxmap->size()          
 80            << " volume(s) with auxiliary infor    
 81   }                                               
 82   for(G4GDMLAuxMapType::const_iterator iter =     
 83       iter != auxmap->end(); iter++)              
 84   {                                               
 85     if(verbose)                                   
 86     {                                             
 87       G4cout << "Volume " << ((*iter).first)->    
 88              << " has the following list of au    
 89     }                                             
 90     for(G4GDMLAuxListType::const_iterator vit     
 91         vit != (*iter).second.end(); vit++)       
 92     {                                             
 93       if(verbose)                                 
 94       {                                           
 95         G4cout << "--> Type: " << (*vit).type     
 96                << G4endl;                         
 97       }                                           
 98       if((*vit).type == "StepLimit")              
 99       {                                           
100         G4UserLimits* fStepLimit = new G4UserL    
101         ((*iter).first)->SetUserLimits(fStepLi    
102       }                                           
103     }                                             
104   }                                               
105   G4VPhysicalVolume* worldPhysVol = parser->Ge    
106   if(ConfigurationManager::getInstance()->isDu    
107   {                                               
108     std::ifstream ifile;                          
109     ifile.open(ConfigurationManager::getInstan    
110     if(ifile)                                     
111     {                                             
112       G4cout << "*****************************    
113              << G4endl;                           
114       G4cout << ConfigurationManager::getInsta    
115              << " already exists!!!" << G4endl    
116       G4cout << "No new gdml dump created!!!"     
117       G4cout << "*****************************    
118              << G4endl;                           
119     }                                             
120     else                                          
121     {                                             
122       G4cout << "Writing: "                       
123              << ConfigurationManager::getInsta    
124              << G4endl;                           
125       parser->Write(ConfigurationManager::getI    
126                     worldPhysVol);                
127     }                                             
128   }                                               
129   return worldPhysVol;                            
130 }                                                 
131 void DetectorConstruction::ConstructSDandField    
132 {                                                 
133   G4SDManager* SDman             = G4SDManager    
134   const G4GDMLAuxMapType* auxmap = parser->Get    
135   if(verbose)                                     
136   {                                               
137     G4cout << "Found " << auxmap->size()          
138            << " volume(s) with auxiliary infor    
139   }                                               
140   for(G4GDMLAuxMapType::const_iterator iter =     
141       iter != auxmap->end(); iter++)              
142   {                                               
143     if(verbose)                                   
144     {                                             
145       G4cout << "Volume " << ((*iter).first)->    
146              << " has the following list of au    
147     }                                             
148     for(G4GDMLAuxListType::const_iterator vit     
149         vit != (*iter).second.end(); vit++)       
150     {                                             
151       if(verbose)                                 
152       {                                           
153         G4cout << "--> Type: " << (*vit).type     
154                << G4endl;                         
155       }                                           
156       if((*vit).type == "SensDet")                
157       {                                           
158         if(verbose)                               
159         {                                         
160           G4cout << "Found sensitive Detector:    
161         }                                         
162         if((*vit).value == "PhotonDetector")      
163         {                                         
164           G4String name       = ((*iter).first    
165           PhotonSD* aPhotonSD = new PhotonSD(n    
166           SDman->AddNewDetector(aPhotonSD);       
167           ((*iter).first)->SetSensitiveDetecto    
168           if(verbose)                             
169           {                                       
170             G4cout << "Attaching sensitive Det    
171                    << " to Volume:  " << ((*it    
172           }                                       
173         }                                         
174         else if((*vit).value == "Target")         
175         {                                         
176           G4String name = ((*iter).first)->Get    
177           InteractionSD* aInteractionSD = new     
178           SDman->AddNewDetector(aInteractionSD    
179           ((*iter).first)->SetSensitiveDetecto    
180           if(verbose)                             
181           {                                       
182             G4cout << "Attaching sensitive Det    
183                    << " to Volume:  " << ((*it    
184           }                                       
185         }                                         
186         else if((*vit).value == "Tracker")        
187         {                                         
188           G4String name         = ((*iter).fir    
189           TrackerSD* aTrackerSD = new TrackerS    
190           SDman->AddNewDetector(aTrackerSD);      
191           ((*iter).first)->SetSensitiveDetecto    
192           if(verbose)                             
193           {                                       
194             G4cout << "Attaching sensitive Det    
195                    << " to Volume:  " << ((*it    
196           }                                       
197         }                                         
198         else if((*vit).value == "Msc")            
199         {                                         
200           G4String name = ((*iter).first)->Get    
201           MscSD* aMscSD = new MscSD(name);        
202           SDman->AddNewDetector(aMscSD);          
203           ((*iter).first)->SetSensitiveDetecto    
204           if(verbose)                             
205           {                                       
206             G4cout << "Attaching sensitive Det    
207                    << " to Volume:  " << ((*it    
208           }                                       
209         }                                         
210         else if((*vit).value == "lArTPC")         
211         {                                         
212           G4String name       = ((*iter).first    
213           lArTPCSD* alArTPCSD = new lArTPCSD(n    
214           SDman->AddNewDetector(alArTPCSD);       
215           ((*iter).first)->SetSensitiveDetecto    
216           if(verbose)                             
217           {                                       
218             G4cout << "Attaching sensitive Det    
219                    << " to Volume:  " << ((*it    
220           }                                       
221         }                                         
222         else if((*vit).value == "Radiator")       
223         {                                         
224           G4String name           = ((*iter).f    
225           RadiatorSD* aRadiatorSD = new Radiat    
226           SDman->AddNewDetector(aRadiatorSD);     
227           ((*iter).first)->SetSensitiveDetecto    
228           if(verbose)                             
229           {                                       
230             G4cout << "Attaching sensitive Det    
231                    << " to Volume:  " << ((*it    
232           }                                       
233         }                                         
234         else if((*vit).value == "Calorimeter")    
235         {                                         
236           G4String name = ((*iter).first)->Get    
237           CalorimeterSD* aCalorimeterSD = new     
238           SDman->AddNewDetector(aCalorimeterSD    
239           ((*iter).first)->SetSensitiveDetecto    
240           if(verbose)                             
241           {                                       
242             G4cout << "Attaching sensitive Det    
243                    << " to Volume:  " << ((*it    
244           }                                       
245         }                                         
246         else if((*vit).value == "DRCalorimeter    
247         {                                         
248           G4String name = ((*iter).first)->Get    
249           DRCalorimeterSD* aDRCalorimeterSD =     
250           SDman->AddNewDetector(aDRCalorimeter    
251           ((*iter).first)->SetSensitiveDetecto    
252           if(verbose)                             
253           {                                       
254             G4cout << "Attaching sensitive Det    
255                    << " to Volume:  " << ((*it    
256           }                                       
257         }                                         
258       }                                           
259       else if((*vit).type == "Solid")             
260       {                                           
261         if((*vit).value == "True")                
262         {                                         
263           G4VisAttributes* visibility = new G4    
264           visibility->SetForceSolid(true);        
265           G4VisAttributes* visatt = new G4VisA    
266             ((*iter).first)->GetVisAttributes(    
267           visatt->SetVisibility(true);            
268           visatt->SetForceSolid(true);            
269           visatt->SetForceAuxEdgeVisible(true)    
270           ((*iter).first)->SetVisAttributes(vi    
271         }                                         
272       }                                           
273     }                                             
274   }                                               
275 }                                                 
276 void DetectorConstruction::ReadGDML()             
277 {                                                 
278   fReader = new ColorReader;                      
279   parser  = new G4GDMLParser(fReader);            
280   parser->Read(gdmlFile, false);                  
281   G4VPhysicalVolume* World = parser->GetWorldV    
282   //----- GDML parser makes world invisible, t    
283   // visible again...                             
284   G4LogicalVolume* pWorldLogical = World->GetL    
285   pWorldLogical->SetVisAttributes(0);             
286   G4cout << World->GetTranslation() << G4endl     
287   if(verbose)                                     
288   {                                               
289     G4cout << "Found World:  " << World->GetNa    
290     G4cout << "World LV:  " << World->GetLogic    
291   }                                               
292   G4LogicalVolumeStore* pLVStore = G4LogicalVo    
293   if(verbose)                                     
294   {                                               
295     G4cout << "Found " << pLVStore->size() <<     
296            << G4endl;                             
297   }                                               
298   G4PhysicalVolumeStore* pPVStore = G4Physical    
299   if(verbose)                                     
300   {                                               
301     G4cout << "Found " << pPVStore->size() <<     
302            << G4endl;                             
303   }                                               
304 }                                                 
305                                                   
306 void DetectorConstruction::UpdateGeometry()       
307 {                                                 
308   G4RunManager::GetRunManager()->DefineWorldVo    
309 }                                                 
310