Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer 3 // * License and Disclaimer * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th 5 // * The Geant4 software is copyright of the Copyright Holders of * 6 // * the Geant4 Collaboration. It is provided 6 // * the Geant4 Collaboration. It is provided under the terms and * 7 // * conditions of the Geant4 Software License 7 // * conditions of the Geant4 Software License, included in the file * 8 // * LICENSE and available at http://cern.ch/ 8 // * LICENSE and available at http://cern.ch/geant4/license . These * 9 // * include a list of copyright holders. 9 // * include a list of copyright holders. * 10 // * 10 // * * 11 // * Neither the authors of this software syst 11 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 12 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 13 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 14 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file 15 // * use. Please see the license in the file LICENSE and URL above * 16 // * for the full disclaimer and the limitatio 16 // * for the full disclaimer and the limitation of liability. * 17 // * 17 // * * 18 // * This code implementation is the result 18 // * This code implementation is the result of the scientific and * 19 // * technical work of the GEANT4 collaboratio 19 // * technical work of the GEANT4 collaboration. * 20 // * By using, copying, modifying or distri 20 // * By using, copying, modifying or distributing the software (or * 21 // * any work based on the software) you ag 21 // * any work based on the software) you agree to acknowledge its * 22 // * use in resulting scientific publicati 22 // * use in resulting scientific publications, and indicate your * 23 // * acceptance of all terms of the Geant4 Sof 23 // * acceptance of all terms of the Geant4 Software license. * 24 // ******************************************* 24 // ******************************************************************** 25 // 25 // 26 // G4ProcessManager << 27 // 26 // 28 // Class Description: << 27 // $Id: G4ProcessManager.hh,v 1.12 2006/06/29 21:07:26 gunter Exp $ >> 28 // GEANT4 tag $Name: geant4-08-02 $ 29 // 29 // 30 // G4ProcessManager collects all physics a par << 30 // 31 // vectors. These vectors are: << 31 // ------------------------------------------------------------ 32 // - one vector for all processes (called as " << 32 // GEANT 4 class header file 33 // - two vectors for processes with AtRestGetP << 33 // 34 // and AtRestDoIt << 34 // History: first implementation, based on object model of 35 // - two vectors for processes with AlongStepG << 35 // 2nd December 1995, G.Cosmo 36 // and AlongStepD << 36 // ---------------- G4ProcessManager ----------------- 37 // - two vectors for processes with PostStepGe << 37 // Class Description 38 // and PostStepDo << 38 // It collects all physics a particle can undertake as seven vectors. 39 // The tracking will message three types of Ge << 39 // These vectors are 40 // in order to limit the Step and select the o << 40 // one vector for all processes (called as "process List") 41 // It will message the corresponding DoIt() to << 41 // two vectors for processes with AtRestGetPhysicalInteractionLength 42 // processes. In addition, the Tracking will l << 42 // and AtRestDoIt 43 // and select the occurrence of the processes << 43 // two vectors for processes with AlongStepGetPhysicalInteractionLength 44 // the shortest physical interaction length co << 44 // and AlongStepDoIt 45 // processes at rest, for which the Tracking w << 45 // two vectors for processes with PostStepGetPhysicalInteractionLength 46 // occurrence of the process which returns the << 46 // and PostStepDoIt 47 // life-time from the GetPhysicalInteractionLe << 47 // The tracking will message three types of GetPhysicalInteractionLength 48 << 48 // in order to limit the Step and select the occurence of processes. 49 // Authors: << 49 // It will message the corresponding DoIt() to apply the selected 50 // - 02.12.1995, G.Cosmo - First implementatio << 50 // processes. In addition, the Tracking will limit the Step 51 // - 06.05.1996, G.Cosmo - Revised; added vect << 51 // and select the occurence of the processes according to 52 // - 08.01.1997, H.Kurashige - New Physics sch << 52 // the shortest physical interaction length computed (except for 53 // ------------------------------------------- << 53 // processes at rest, for which the Tracking will select the 54 #ifndef G4ProcessManager_hh << 54 // occurence of the process which returns the shortest mean 55 #define G4ProcessManager_hh 1 << 55 // life-time from the GetPhysicalInteractionLength()). >> 56 // >> 57 // History: >> 58 // revised by G.Cosmo, 06 May 1996 >> 59 // Added vector of processes at rest, 06 May 1996 >> 60 // ------------------------------------------------------------ >> 61 // New Physics scheme 8 Jan. 1997 H.Kurahige >> 62 // Add SetProcessOrdering methods 27 Mar 1998 H.Kurahige >> 63 // Add copy constructor (deep copy) 28 June 1998 H.Kurashige >> 64 // Add GetProcessActivation 3 May. 1999 H.Kurashige >> 65 // Use STL vector instead of RW vector 1. Mar 00 H.Kurashige >> 66 // Modify G4ProcessVectorOrdering to fix FindInsedrtPosition 15 Feb. 2005 >> 67 // ------------------------------------------------------------ 56 68 57 #include <vector> << 69 #ifndef G4ProcessManager_h >> 70 #define G4ProcessManager_h 1 58 71 59 #include "globals.hh" 72 #include "globals.hh" 60 #include "G4ios.hh" 73 #include "G4ios.hh" >> 74 #include <vector> 61 75 62 #include "G4VProcess.hh" 76 #include "G4VProcess.hh" 63 #include "G4ProcessVector.hh" 77 #include "G4ProcessVector.hh" 64 #include "G4ParticleDefinition.hh" 78 #include "G4ParticleDefinition.hh" 65 79 66 class G4ProcessManagerMessenger; 80 class G4ProcessManagerMessenger; 67 class G4ProcessAttribute; 81 class G4ProcessAttribute; 68 82 69 // Indexes for ProcessVector << 83 // Indexes for ProcessVector 70 // << 71 enum G4ProcessVectorTypeIndex 84 enum G4ProcessVectorTypeIndex 72 { 85 { 73 typeGPIL = 0, // for GetPhysicalInter << 86 typeGPIL = 0, // for GetPhysicalInteractionLength 74 typeDoIt =1 // for DoIt << 87 typeDoIt =1 // for DoIt 75 }; 88 }; 76 enum G4ProcessVectorDoItIndex 89 enum G4ProcessVectorDoItIndex 77 { 90 { 78 idxAll = -1, // for all DoIt/GPIL << 91 idxAll = -1, // for all DoIt/GPIL 79 idxAtRest = 0, // for AtRestDoIt/GPIL << 92 idxAtRest = 0, // for AtRestDoIt/GPIL 80 idxAlongStep = 1, // for AlongStepDoIt/GP << 93 idxAlongStep = 1, // for AlongStepDoIt/GPIL 81 idxPostStep =2, // for AlongSTepDoIt/GP << 94 idxPostStep =2 // for AlongSTepDoIt/GPIL 82 NDoit =3 << 83 }; 95 }; 84 96 85 // Enumeration for Ordering Parameter << 97 // enumeration for Ordering Parameter 86 // << 87 enum G4ProcessVectorOrdering 98 enum G4ProcessVectorOrdering 88 { 99 { 89 ordInActive = -1, // ordering parameter t << 100 ordInActive = -1, // ordering parameter to indicate InActive DoIt 90 ordDefault = 1000, // default ordering par << 101 ordDefault = 1000, // default ordering parameter 91 ordLast = 9999 // ordering parameter t << 102 ordLast = 99999 // ordering parameter to indicate the last DoIt 92 }; 103 }; 93 104 94 class G4ProcessManager 105 class G4ProcessManager 95 { 106 { 96 using G4ProcessAttrVector = std::vector<G4Pr << 107 97 << 98 public: 108 public: >> 109 // copy constructor >> 110 G4ProcessManager(G4ProcessManager &right); 99 111 100 G4ProcessManager(const G4ParticleDefinitio << 112 private: 101 // Constructor << 113 // hide default constructor and assignment operator >> 114 G4ProcessManager & operator=(G4ProcessManager &right); >> 115 G4ProcessManager(); 102 116 103 G4ProcessManager(G4ProcessManager& right); << 104 // copy constructor << 105 117 106 G4ProcessManager() = delete; << 118 public: 107 G4ProcessManager& operator=(const G4Proces << 119 108 // Default constructor and assignment op << 120 G4ProcessManager(const G4ParticleDefinition* aParticleType); >> 121 // Constructor 109 122 110 ~G4ProcessManager(); << 123 ~G4ProcessManager(); 111 // Destructor << 124 // Destructor 112 125 113 G4bool operator==(const G4ProcessManager & << 126 G4int operator==(const G4ProcessManager &right) const; 114 G4bool operator!=(const G4ProcessManager & << 127 G4int operator!=(const G4ProcessManager &right) const; 115 128 116 inline G4ProcessVector* GetProcessList() c << 129 public: // with description 117 // Returns the address of the vector of << 130 G4ProcessVector* GetProcessList() const; >> 131 // Returns the address of the vector of all processes 118 132 119 inline G4int GetProcessListLength() const; << 133 G4int GetProcessListLength() const; 120 // Returns the number of process in the << 134 // Returns the number of process in the ProcessVector 121 135 122 inline G4int GetProcessIndex(G4VProcess*) << 136 G4int GetProcessIndex(G4VProcess *) const; 123 // Returns the index of the process in t << 137 // Returns the index of the process in the process List 124 138 125 inline G4ProcessVector* GetProcessVector( << 139 // -------------------------------------- 126 G4ProcessVector << 140 127 G4ProcessVector << 141 G4ProcessVector* GetProcessVector( 128 ) const; << 142 G4ProcessVectorDoItIndex idx, 129 // Returns the address of the vector of << 143 G4ProcessVectorTypeIndex typ = typeGPIL >> 144 ) const; >> 145 // Returns the address of the vector of processes 130 146 131 inline G4ProcessVector* GetAtRestProcessVe << 147 G4ProcessVector* GetAtRestProcessVector( 132 G4ProcessVector << 148 G4ProcessVectorTypeIndex typ = typeGPIL 133 ) const; 149 ) const; 134 // Returns the address of the vector of << 150 // Returns the address of the vector of processes for 135 // AtRestGetPhysicalInteractionLength 151 // AtRestGetPhysicalInteractionLength idx =0 136 // AtRestGetPhysicalDoIt 152 // AtRestGetPhysicalDoIt idx =1 137 << 153 G4ProcessVector* GetAlongStepProcessVector( 138 inline G4ProcessVector* GetAlongStepProces << 154 G4ProcessVectorTypeIndex typ = typeGPIL 139 G4ProcessVector << 140 ) const; 155 ) const; 141 // Returns the address of the vector of << 156 // Returns the address of the vector of processes for 142 // AlongStepGetPhysicalInteractionLen 157 // AlongStepGetPhysicalInteractionLength idx =0 143 // AlongStepGetPhysicalDoIt 158 // AlongStepGetPhysicalDoIt idx =1 144 159 145 inline G4ProcessVector* GetPostStepProcess << 160 G4ProcessVector* GetPostStepProcessVector( 146 G4ProcessVector << 161 G4ProcessVectorTypeIndex typ = typeGPIL 147 ) const; 162 ) const; 148 // Returns the address of the vector of << 163 // Returns the address of the vector of processes for 149 // PostStepGetPhysicalInteractionLeng 164 // PostStepGetPhysicalInteractionLength idx =0 150 // PostStepGetPhysicalDoIt 165 // PostStepGetPhysicalDoIt idx =1 151 166 152 G4int GetProcessVectorIndex( << 167 G4int GetProcessVectorIndex( 153 G4VProcess* aProces << 154 G4ProcessVectorDoIt << 155 G4ProcessVectorType << 156 ) const; << 157 inline G4int GetAtRestIndex( << 158 G4VProcess* aProces 168 G4VProcess* aProcess, 159 G4ProcessVectorType << 169 G4ProcessVectorDoItIndex idx, 160 ) const; << 170 G4ProcessVectorTypeIndex typ = typeGPIL 161 inline G4int GetAlongStepIndex( << 171 ) const; >> 172 G4int GetAtRestIndex( 162 G4VProcess* aProces 173 G4VProcess* aProcess, 163 G4ProcessVectorType << 174 G4ProcessVectorTypeIndex typ = typeGPIL 164 ) const; << 175 ) const; 165 inline G4int GetPostStepIndex( << 176 G4int GetAlongStepIndex( 166 G4VProcess* aProces 177 G4VProcess* aProcess, 167 G4ProcessVectorType << 178 G4ProcessVectorTypeIndex typ = typeGPIL 168 ) const; << 179 ) const; 169 // Returns the index for GPIL/DoIt proce << 180 G4int GetPostStepIndex( 170 << 181 G4VProcess* aProcess, 171 G4int AddProcess( G4VProcess* aProcess, << 182 G4ProcessVectorTypeIndex typ = typeGPIL 172 G4int ordAtRestDoIt = or << 183 ) const; 173 G4int ordAlongSteptDoIt << 184 // Returns the index for GPIL/DoIt process vector of the process 174 G4int ordPostStepDoIt = << 185 175 // Adds a process to the process List << 186 G4int AddProcess( 176 // Return values is the index to the Lis << 187 G4VProcess *aProcess, 177 // indicates that the process has not be << 188 G4int ordAtRestDoIt = ordInActive, 178 // The first argument is a pointer to th << 189 G4int ordAlongSteptDoIt = ordInActive, 179 // Successive arguments are ordering par << 190 G4int ordPostStepDoIt = ordInActive 180 // process vectors. If value is negative << 191 ); 181 // not added to the corresponding proces << 192 // Add a process to the process List >> 193 // return values are index to the List. Negative return value >> 194 // indicates that the process has not be added due to some errors >> 195 // The first argument is a pointer to process. >> 196 // Following arguments are ordering parameters of the process in >> 197 // process vectors. If value is negative, the process is >> 198 // not added to the corresponding process vector. 182 199 183 ////////////////////////////////////////// << 200 // following methods are provided for simple processes 184 // The following methods are provided for << 201 // AtRestProcess has only AtRestDoIt 185 // AtRestProcess has only AtRestDoIt << 202 // ContinuousProcess has only AlongStepDoIt 186 // ContinuousProcess has only AlongStepD << 203 // DiscreteProcess has only PostStepDoIt 187 // DiscreteProcess has only PostStepDoIt << 204 // if ord is not specified, the process is 188 // If the ordering parameter is not specif << 205 // added at the end of List of processvectors for 189 // added at the end of List of process vec << 206 // both DoIt and GetPhysicalInteractionLength 190 // If a process with same ordering paramet << 207 191 // this new process will be added just aft << 208 G4int AddRestProcess(G4VProcess *aProcess, G4int ord = ordDefault); 192 // with same ordering parameter (except fo << 209 G4int AddDiscreteProcess(G4VProcess *aProcess, G4int ord = ordDefault); 193 // explicitly) for both DoIt() and GetPhys << 210 G4int AddContinuousProcess(G4VProcess *aProcess, G4int ord = ordDefault); 194 ////////////////////////////////////////// << 211 195 << 212 // Methods for setting ordering parameters 196 inline G4int AddRestProcess(G4VProcess* aP << 213 // Altanative methods for setting ordering parameters 197 inline G4int AddDiscreteProcess(G4VProcess << 214 // Note: AddProcess method should precede these methods 198 inline G4int AddContinuousProcess(G4VProce << 215 199 << 216 G4int GetProcessOrdering( 200 ////////////////////////////////////////// << 217 G4VProcess *aProcess, 201 // Alternative methods for setting orderin << 218 G4ProcessVectorDoItIndex idDoIt 202 // Note: AddProcess() method should preced << 219 ); 203 ////////////////////////////////////////// << 220 204 << 221 void SetProcessOrdering( 205 G4int GetProcessOrdering( << 222 G4VProcess *aProcess, 206 G4VProcess* aProce << 223 G4ProcessVectorDoItIndex idDoIt, 207 G4ProcessVectorDoI << 224 G4int ordDoIt = ordDefault 208 ); << 225 ); 209 << 226 // Set ordering parameter for DoIt specified by typeDoIt. 210 void SetProcessOrdering( << 227 211 G4VProcess* aProce << 228 void SetProcessOrderingToFirst( 212 G4ProcessVectorDoI << 229 G4VProcess *aProcess, 213 G4int ordDoIt = or << 230 G4ProcessVectorDoItIndex idDoIt 214 ); << 231 ); 215 // Set ordering parameter for DoIt() spe << 216 // If a process with same ordering param << 217 // this new process will be added just a << 218 // with same ordering parameter << 219 // Note: Ordering parameter will bet set << 220 // even if you set ordDoIt = 0 << 221 << 222 void SetProcessOrderingToFirst( << 223 G4VProcess* aProce << 224 G4ProcessVectorDoI << 225 ); << 226 // Set ordering parameter to the first o 232 // Set ordering parameter to the first of all processes 227 // for DoIt() specified by idDoIt. << 233 // for DoIt specified by idDoIt. 228 // Note: If you use this method for two << 234 // Note: If you use this method for two processes, 229 // a process called later will be << 235 // a process called later will be first. 230 << 236 231 void SetProcessOrderingToSecond( << 237 void SetProcessOrderingToLast( 232 G4VProcess* aProce << 238 G4VProcess *aProcess, 233 G4ProcessVectorDoI << 239 G4ProcessVectorDoItIndex idDoIt 234 ); << 240 ); 235 // Set ordering parameter to 1 for DoIt( << 236 // and the process will be added just af << 237 // the processes with ordering parameter << 238 // Note: If you use this method for two << 239 // a process called later will be << 240 << 241 void SetProcessOrderingToLast( << 242 G4VProcess* aProce << 243 G4ProcessVectorDoI << 244 ); << 245 // Set ordering parameter to the last of 241 // Set ordering parameter to the last of all processes 246 // for DoIt() specified by idDoIt. << 242 // for DoIt specified by idDoIt. 247 // Note: If you use this method for two << 243 // Note: If you use this method for two processes, 248 // a process called later will pre << 244 // a process called later will be the last one. 249 << 245 250 ////////////////////////////////////////// << 246 G4VProcess* RemoveProcess(G4VProcess *aProcess); 251 << 247 G4VProcess* RemoveProcess(G4int index); 252 G4VProcess* RemoveProcess(G4VProcess* aPro << 248 // Removes a process from the process List. 253 G4VProcess* RemoveProcess(G4int index); << 249 // return value is pointer to the removed process. 254 // Removes a process from the process Li << 250 // (0 value will be returned in case of errors) 255 // Returns pointer to the removed proces << 251 256 // (nullptr value will be returned in ca << 252 G4VProcess* SetProcessActivation(G4VProcess *aProcess, G4bool fActive); 257 << 253 G4VProcess* SetProcessActivation(G4int index, G4bool fActive); 258 G4VProcess* SetProcessActivation(G4VProces << 254 // Set activation flag. 259 G4VProcess* SetProcessActivation(G4int ind << 255 // return value is pointer to the applied process. 260 // Set activation flag. << 256 // (0 value will be returned in case of errors) 261 // Returns pointer to the applied proces << 257 262 // (nullptr value will be returned in ca << 258 G4bool GetProcessActivation(G4VProcess *aProcess) const; 263 << 259 G4bool GetProcessActivation(G4int index) const; 264 G4bool GetProcessActivation(G4VProcess* aP << 260 // Get activation flag. 265 G4bool GetProcessActivation(G4int index) c << 261 266 // Get activation flag. << 262 G4ParticleDefinition* GetParticleType() const; 267 << 263 // get the particle type 268 inline G4ParticleDefinition* GetParticleTy << 264 void SetParticleType(const G4ParticleDefinition*); 269 // Get the particle type << 265 // set the particle type 270 inline void SetParticleType(const G4Partic << 266 271 // Set the particle type << 267 void StartTracking(G4Track* aTrack=0); 272 << 268 void EndTracking(); 273 G4VProcess* GetProcess (const G4String&) c << 269 // these two methods are used by G4TrackingManager 274 // Get process by process name << 275 << 276 void StartTracking(G4Track* aTrack = nullp << 277 void EndTracking(); << 278 // These two methods are used by G4Track << 279 // in order to inform Start/End of track 270 // in order to inform Start/End of tracking for each track 280 // to the process manager and all physic << 271 // to the process manager and all physics processes 281 << 282 void DumpInfo(); << 283 << 284 inline void SetVerboseLevel(G4int value); << 285 inline G4int GetVerboseLevel() const; << 286 // Control flag for output message << 287 // 0: Silent << 288 // 1: Warning message << 289 // 2: More << 290 272 291 enum {SizeOfProcVectorArray = 6}; << 292 273 >> 274 public: >> 275 enum {SizeOfProcVectorArray = 6}; 293 private: 276 private: >> 277 G4ProcessVector* theProcVector[SizeOfProcVectorArray]; >> 278 // vector for processes with GetPhysicalInteractionLength/DoIt 294 279 295 G4int InsertAt(G4int position, G4VProcess* << 280 typedef std::vector<G4ProcessAttribute*> G4ProcessAttrVector; 296 // Insert process at position in theProc << 281 G4ProcessAttrVector* theAttrVector; >> 282 // vector for process attribute >> 283 >> 284 protected: // with description >> 285 G4int InsertAt(G4int position, G4VProcess* process, G4int ivec); >> 286 // insert process at position in theProcVector[ivec] 297 287 298 G4int RemoveAt(G4int position, G4VProcess* << 288 G4int RemoveAt(G4int position, G4VProcess* process, G4int ivec); 299 // Remove process at position in theProc << 289 // remove process at position in theProcVector[ivec] 300 290 301 G4int FindInsertPosition(G4int ord, G4int << 291 G4int FindInsertPosition(G4int ord, G4int ivec); 302 // Find insert position according to ord << 292 // find insert position according to ordering parameter 303 // in theProcVector[ivec] 293 // in theProcVector[ivec] 304 294 305 inline G4int GetProcessVectorId(G4ProcessV << 295 G4int GetProcessVectorId(G4ProcessVectorDoItIndex idx, 306 G4ProcessVectorTy << 296 G4ProcessVectorTypeIndex typ = typeGPIL) const; 307 << 297 308 void CheckOrderingParameters(G4VProcess*) << 298 private: 309 // Check consistencies between ordering << 299 G4ProcessAttribute* GetAttribute(G4int index) const; 310 // validity of DoIt() of the Process << 300 G4ProcessAttribute* GetAttribute(G4VProcess *aProcess) const; 311 << 301 // get Pointer to ProcessAttribute 312 G4ProcessAttribute* GetAttribute(G4int ind << 302 313 G4ProcessAttribute* GetAttribute(G4VProces << 303 G4VProcess* ActivateProcess(G4int index); 314 // Get Pointer to ProcessAttribute << 304 G4VProcess* InActivateProcess(G4int index); 315 << 305 // Activate/InActivateProcess Process 316 void CreateGPILvectors(); << 317 void SetIndexToProcessVector(G4int ivec); << 318 << 319 G4VProcess* ActivateProcess(G4int index); << 320 G4VProcess* InActivateProcess(G4int index) << 321 // Activate/InActivate process << 322 306 323 private: << 307 private: 324 << 308 const G4ParticleDefinition* theParticleType; 325 G4ProcessVector* theProcVector[SizeOfProcV << 309 // particle which has this process manager object 326 // Vector for processes with GetPhysical << 310 >> 311 G4int numberOfProcesses; >> 312 G4ProcessVector* theProcessList; >> 313 // vector for all processes (called as "process List") >> 314 >> 315 private: >> 316 G4bool duringTracking; >> 317 void CreateGPILvectors(); >> 318 void SetIndexToProcessVector(G4int ivec); >> 319 >> 320 public: // with description >> 321 void DumpInfo(); >> 322 >> 323 void SetVerboseLevel(G4int value); >> 324 G4int GetVerboseLevel() const; >> 325 // controle flag for output message >> 326 // 0: Silent >> 327 // 1: Warning message >> 328 // 2: More 327 329 328 G4ProcessAttrVector* theAttrVector = nullp << 330 protected: 329 // Vector for process attribute << 331 G4int verboseLevel; 330 << 331 const G4ParticleDefinition* theParticleTyp << 332 // Particle which has this process manag << 333 << 334 G4int numberOfProcesses = 0; << 335 G4ProcessVector* theProcessList = nullptr; << 336 // Vector for all processes (called as " << 337 << 338 G4bool duringTracking = false; << 339 << 340 G4bool isSetOrderingFirstInvoked[NDoit]; << 341 G4bool isSetOrderingLastInvoked[NDoit]; << 342 << 343 G4int verboseLevel = 1; << 344 332 345 static G4ThreadLocal G4ProcessManagerMesse << 333 private: 346 static G4ThreadLocal G4int counterOfObject << 334 static G4ProcessManagerMessenger* fProcessManagerMessenger; >> 335 static G4int counterOfObjects; 347 }; 336 }; 348 << 349 #include "G4ProcessManager.icc" 337 #include "G4ProcessManager.icc" 350 338 351 #endif 339 #endif >> 340 352 341