Geant4 Cross Reference

Cross-Referencing   Geant4
Geant4/processes/cuts/include/G4ProductionCutsTable.hh

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 /processes/cuts/include/G4ProductionCutsTable.hh (Version 11.3.0) and /processes/cuts/include/G4ProductionCutsTable.hh (Version 3.1)


  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 // G4ProductionCutsTable                          
 27 //                                                
 28 // Class description:                             
 29 //                                                
 30 // G4ProductionCutsTable is a singleton class     
 31 // G4ProductionCuts objects. This class manage    
 32 // cuts and energy cuts for each particle type    
 33                                                   
 34 // Author: M.Asai, 5 October 2002 - First impl    
 35 // Modifications: H.Kurashige, 2004-2008          
 36 // -------------------------------------------    
 37 #ifndef G4ProductionCutsTable_hh                  
 38 #define G4ProductionCutsTable_hh 1                
 39                                                   
 40 #include <cmath>                                  
 41 #include <vector>                                 
 42                                                   
 43 #include "globals.hh"                             
 44 #include "G4ios.hh"                               
 45 #include "G4MaterialCutsCouple.hh"                
 46 #include "G4MCCIndexConversionTable.hh"           
 47 #include "G4Region.hh"                            
 48                                                   
 49 class G4RegionStore;                              
 50 class G4VRangeToEnergyConverter;                  
 51 class G4LogicalVolume;                            
 52 class G4VPhysicalVolume;                          
 53 class G4ProductionCuts;                           
 54 class G4ProductionCutsTableMessenger;             
 55                                                   
 56 class G4ProductionCutsTable                       
 57 {                                                 
 58   public:                                         
 59                                                   
 60     static G4ProductionCutsTable* GetProductio    
 61       // This static method returns the single    
 62       // At first invocation, the singleton ob    
 63                                                   
 64     G4ProductionCutsTable(const G4ProductionCu    
 65     G4ProductionCutsTable& operator=(const G4P    
 66                                                   
 67     virtual ~G4ProductionCutsTable();             
 68                                                   
 69     void CreateCoupleTables();                    
 70       // Creates material cuts couples table a    
 71                                                   
 72     void UpdateCoupleTable(G4VPhysicalVolume*     
 73       // Triggers an update of the table of G4    
 74                                                   
 75     void SetEnergyRange(G4double lowedge, G4do    
 76       // Sets the limits of energy cuts for al    
 77                                                   
 78     G4double GetLowEdgeEnergy() const;            
 79     G4double GetHighEdgeEnergy() const;           
 80       // Get the limits of energy cuts for all    
 81                                                   
 82     G4double GetMaxEnergyCut();                   
 83     void SetMaxEnergyCut(G4double value);         
 84       // Get/set max cut energy of RangeToEner    
 85       // for all particle types                   
 86                                                   
 87     void DumpCouples() const;                     
 88       // Displays a list of registered couples    
 89                                                   
 90     const G4MCCIndexConversionTable* GetMCCInd    
 91       // Gives the pointer to the MCCIndexConv    
 92                                                   
 93     const std::vector<G4double>* GetRangeCutsV    
 94     const std::vector<G4double>* GetEnergyCuts    
 95                                                   
 96     std::size_t GetTableSize() const;             
 97       // Returns the size of the couple table     
 98                                                   
 99     const G4MaterialCutsCouple* GetMaterialCut    
100       // Returns the pointer to the couple        
101                                                   
102     const G4MaterialCutsCouple* GetMaterialCut    
103                                             co    
104      // Returns the pointer to the couple         
105                                                   
106     G4int GetCoupleIndex(const G4MaterialCutsC    
107     G4int GetCoupleIndex(const G4Material* aMa    
108                          const G4ProductionCut    
109       // Return the index of the couple.          
110       // -1 is returned if index is not found     
111                                                   
112     G4bool IsModified() const;                    
113       // Returns TRUE if at least one producti    
114                                                   
115     void PhysicsTableUpdated();                   
116       // Resets the status of IsModified(). Th    
117       // used by the RunManager when physics t    
118                                                   
119     G4ProductionCuts* GetDefaultProductionCuts    
120       // Returns the default production cuts      
121                                                   
122     G4double ConvertRangeToEnergy(const G4Part    
123                                   const G4Mate    
124                                         G4doub    
125       // Gives energy corresponding to range v    
126       // -1 is returned if particle or materia    
127                                                   
128     void ResetConverters();                       
129       // Resets all range to energy converters    
130                                                   
131     G4bool StoreCutsTable(const G4String& dire    
132                           G4bool ascii = false    
133       // Stores cuts and material information     
134       // the specified directory                  
135                                                   
136     G4bool RetrieveCutsTable(const G4String& d    
137                              G4bool ascii = fa    
138       // Retrieve material cut couple informat    
139       // in files under the specified director    
140                                                   
141     G4bool CheckForRetrieveCutsTable(const G4S    
142                                      G4bool as    
143       // Checks stored material and cut values    
144       // with the current detector setup          
145                                                   
146     G4double* GetRangeCutsDoubleVector(std::si    
147     G4double* GetEnergyCutsDoubleVector(std::s    
148       // Methods for backward compatibility       
149                                                   
150     void SetEnergyCutVector(const std::vector<    
151       // User defined cut vectors (idx < 4) ra    
152       // to avoid inconsistency in physics        
153                                                   
154     void  SetVerboseLevel(G4int value);           
155     G4int GetVerboseLevel() const;                
156       // Control flag for output message          
157       //  0: Silent                               
158       //  1: Warning message                      
159       //  2: More                                 
160                                                   
161   protected:                                      
162                                                   
163     G4ProductionCutsTable();                      
164                                                   
165     virtual G4bool StoreMaterialInfo(const G4S    
166                                      G4bool as    
167       // Stores material information in files     
168                                                   
169     virtual G4bool CheckMaterialInfo(const G4S    
170                                      G4bool as    
171       // Checks stored material is consistent     
172                                                   
173     virtual G4bool StoreMaterialCutsCoupleInfo    
174                                                   
175       // Stores materialCutsCouple information    
176       // specified directory                      
177                                                   
178     virtual G4bool CheckMaterialCutsCoupleInfo    
179                                                   
180       // Checks stored materialCutsCouple is c    
181       // the current detector setup               
182                                                   
183     virtual G4bool StoreCutsInfo(const G4Strin    
184                                  G4bool ascii     
185       // Stores cut values information in file    
186                                                   
187     virtual G4bool  RetrieveCutsInfo(const G4S    
188                                      G4bool as    
189       // Retrieves cut values information in f    
190       // specified directory                      
191                                                   
192   private:                                        
193                                                   
194     void ScanAndSetCouple(G4LogicalVolume* aLV    
195                           G4MaterialCutsCouple    
196                           G4Region* aRegion);     
197                                                   
198     G4bool IsCoupleUsedInTheRegion(const G4Mat    
199                                    const G4Reg    
200                                                   
201                                                   
202   private:                                        
203                                                   
204     static G4ProductionCutsTable* fProductionC    
205                                                   
206     std::vector<G4MaterialCutsCouple*> coupleT    
207     std::vector<std::vector<G4double>*> rangeC    
208     std::vector<std::vector<G4double>*> energy    
209                                                   
210     std::vector<G4double>* userEnergyCuts[4] =    
211                                                   
212     G4RegionStore* fG4RegionStore = nullptr;      
213     G4VRangeToEnergyConverter* converters[Numb    
214                                                   
215     G4ProductionCuts* defaultProductionCuts =     
216                                                   
217     G4MCCIndexConversionTable mccConversionTab    
218                                                   
219     // These two vectors are for backward comp    
220     G4double* rangeDoubleVector[NumberOfG4CutI    
221     G4double* energyDoubleVector[NumberOfG4Cut    
222                                                   
223     enum { FixedStringLengthForStore = 32 };      
224                                                   
225     G4ProductionCutsTableMessenger* fMessenger    
226     G4int verboseLevel = 1;                       
227     G4bool firstUse = true;                       
228 };                                                
229                                                   
230 // ------------------                             
231 // Inline methods                                 
232 // ------------------                             
233                                                   
234 inline                                            
235 const std::vector<G4double>*                      
236 G4ProductionCutsTable::GetRangeCutsVector(std:    
237 {                                                 
238   return rangeCutTable[pcIdx];                    
239 }                                                 
240                                                   
241 inline                                            
242 const std::vector<G4double>*                      
243 G4ProductionCutsTable::GetEnergyCutsVector(std    
244 {                                                 
245   return energyCutTable[pcIdx];                   
246 }                                                 
247                                                   
248 inline                                            
249 std::size_t G4ProductionCutsTable::GetTableSiz    
250 {                                                 
251   return coupleTable.size();                      
252 }                                                 
253                                                   
254 inline                                            
255 const G4MaterialCutsCouple*                       
256 G4ProductionCutsTable::GetMaterialCutsCouple(G    
257 {                                                 
258   return coupleTable[std::size_t(i)];             
259 }                                                 
260                                                   
261 inline                                            
262 G4bool G4ProductionCutsTable::IsModified() con    
263 {                                                 
264   if(firstUse) return true;                       
265   for(auto itr=coupleTable.cbegin(); itr!=coup    
266   {                                               
267     if((*itr)->IsRecalcNeeded())                  
268     {                                             
269       return true;                                
270     }                                             
271   }                                               
272   return false;                                   
273 }                                                 
274                                                   
275 inline                                            
276 void G4ProductionCutsTable::PhysicsTableUpdate    
277 {                                                 
278   for(auto itr=coupleTable.cbegin(); itr!=coup    
279   {                                               
280     (*itr)->PhysicsTableUpdated();                
281   }                                               
282 }                                                 
283                                                   
284 inline                                            
285 G4double*                                         
286 G4ProductionCutsTable::GetRangeCutsDoubleVecto    
287 {                                                 
288   return rangeDoubleVector[pcIdx];                
289 }                                                 
290                                                   
291 inline                                            
292 G4double*                                         
293 G4ProductionCutsTable::GetEnergyCutsDoubleVect    
294 {                                                 
295   return energyDoubleVector[pcIdx];               
296 }                                                 
297                                                   
298 inline                                            
299 G4ProductionCuts* G4ProductionCutsTable::GetDe    
300 {                                                 
301   return defaultProductionCuts;                   
302 }                                                 
303                                                   
304 inline                                            
305 G4bool G4ProductionCutsTable::IsCoupleUsedInTh    
306                                  const G4Mater    
307                                  const G4Regio    
308 {                                                 
309   G4ProductionCuts* fProductionCut = aRegion->    
310   auto mItr = aRegion->GetMaterialIterator();     
311   std::size_t nMaterial = aRegion->GetNumberOf    
312   for(std::size_t iMate=0;iMate<nMaterial; ++i    
313   {                                               
314     if(aCouple->GetMaterial()==(*mItr) &&         
315        aCouple->GetProductionCuts()==fProducti    
316     {                                             
317       return true;                                
318     }                                             
319   }                                               
320   return false;                                   
321 }                                                 
322                                                   
323 inline                                            
324 const G4MaterialCutsCouple*                       
325 G4ProductionCutsTable::GetMaterialCutsCouple(c    
326                                              c    
327 {                                                 
328   for(auto cItr=coupleTable.cbegin(); cItr!=co    
329   {                                               
330     if((*cItr)->GetMaterial()!=aMat) continue;    
331     if((*cItr)->GetProductionCuts()==aCut) ret    
332   }                                               
333   return nullptr;                                 
334 }                                                 
335                                                   
336 inline                                            
337 G4int                                             
338 G4ProductionCutsTable::GetCoupleIndex(const G4    
339 {                                                 
340   G4int idx = 0;                                  
341   for(auto cItr=coupleTable.cbegin(); cItr!=co    
342   {                                               
343     if((*cItr)==aCouple) return idx;              
344     ++idx;                                        
345   }                                               
346   return -1;                                      
347 }                                                 
348                                                   
349 inline                                            
350 G4int G4ProductionCutsTable::GetCoupleIndex(co    
351                                             co    
352 {                                                 
353   const G4MaterialCutsCouple* aCouple = GetMat    
354   return GetCoupleIndex(aCouple);                 
355 }                                                 
356                                                   
357 inline                                            
358 G4int G4ProductionCutsTable::GetVerboseLevel()    
359 {                                                 
360   return verboseLevel;                            
361 }                                                 
362                                                   
363 inline                                            
364 const G4MCCIndexConversionTable*                  
365 G4ProductionCutsTable::GetMCCIndexConversionTa    
366 {                                                 
367   return &mccConversionTable;                     
368 }                                                 
369                                                   
370 #endif                                            
371