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 // G4VProcess << 27 // 26 // 28 // Class description: << 27 // $Id: G4VProcess.hh,v 1.24 2007/10/02 08:23:20 kurasige Exp $ >> 28 // GEANT4 tag $Name: geant4-09-01-patch-01 $ 29 // 29 // 30 // This class is the virtual class for physics << 30 // 31 // It defines public methods which describe th << 31 // ------------------------------------------------------------ 32 // a physics process. << 32 // GEANT 4 class header file 33 << 33 // 34 // Authors: << 34 // History: first implementation, based on object model of 35 // - 2 December 1995, G.Cosmo - First implemen << 35 // 2nd December 1995, G.Cosmo 36 // - 18 December 1996, H.Kurashige - New Physi << 36 // 37 // ------------------------------------------- << 37 // Class Description 38 #ifndef G4VProcess_hh << 38 // This class is the virtual class for physics process objects. 39 #define G4VProcess_hh 1 << 39 // It defines public methods which describe the behavior of >> 40 // a physics process. >> 41 // >> 42 // ------------------------------------------------------------ >> 43 // New Physics scheme 18 Dec. 1996 H.Kurahige >> 44 // ------------------------------------------------------------ >> 45 // change DoIt/GetPIL arguments type 20 Mar. 1997 H.Kurashige >> 46 // modified AlongStepGPIL 17 Dec. 1997 H.Kurashige >> 47 // modified for new ParticleChange 12 Mar. 1998 H.Kurashige >> 48 // Add process trype 27 Mar. 1998 H.Kurashige >> 49 // Remove thePhysicsTable 2 Aug. 1998 H.Kurashige >> 50 // Add PILfactor and GPIL 3 Nov. 2000 H.Kurashige >> 51 // Add Store/RetrievePhysicsTable 8 Nov. 2000 H.Kurashige >> 52 // Modify Store/RetrievePhysicsTable methods 9 Mar. 2001 H.Kurashige >> 53 // Added PreparePhysicsTable 20 Aug. 2004 H.Kurashige >> 54 // Added isXXXXDoItIsEnabled 2 Oct. 2007 H.Kurashige 40 55 41 #include <cmath> << 56 #ifndef G4VProcess_h >> 57 #define G4VProcess_h 1 42 58 43 #include "globals.hh" 59 #include "globals.hh" >> 60 #include <cmath> 44 #include "G4ios.hh" 61 #include "G4ios.hh" 45 #include "Randomize.hh" << 62 >> 63 class G4ParticleDefinition; >> 64 class G4DynamicParticle; >> 65 class G4Track; >> 66 class G4Step; 46 67 47 #include "G4PhysicsTable.hh" 68 #include "G4PhysicsTable.hh" 48 #include "G4VParticleChange.hh" 69 #include "G4VParticleChange.hh" 49 #include "G4ForceCondition.hh" 70 #include "G4ForceCondition.hh" 50 #include "G4GPILSelection.hh" 71 #include "G4GPILSelection.hh" 51 #include "G4ParticleChange.hh" 72 #include "G4ParticleChange.hh" 52 #include "G4ProcessType.hh" 73 #include "G4ProcessType.hh" 53 74 54 class G4ParticleDefinition; << 55 class G4DynamicParticle; << 56 class G4Track; << 57 class G4Step; << 58 class G4ProcessTable; << 59 << 60 class G4VProcess 75 class G4VProcess 61 { 76 { >> 77 // A virtual class for physics process objects. It defines >> 78 // public methods which describe the behavior of a >> 79 // physics process. 62 80 63 public: << 81 private: 64 << 82 // hide default constructor and assignment operator as private 65 G4VProcess(const G4String& aName = "NoName << 83 // do not hide default constructor for alpha version 66 G4ProcessType aType = fNotDefin << 84 // G4VProcess G4VProcess(); 67 // Constructor requires the process name << 85 G4VProcess & operator=(const G4VProcess &right); 68 << 86 69 G4VProcess(const G4VProcess& right); << 87 public: // with description 70 // Copy constructor copies the name but << 88 // constructor requires the process name and type 71 // physics table (null pointer is assign << 89 G4VProcess(const G4String& aName = "NoName", 72 << 90 G4ProcessType aType = fNotDefined ); 73 virtual ~G4VProcess(); << 91 74 // Destructor << 92 // copy constructor copys the name but does not copy the 75 << 93 // physics table (0 pointer is assigned) 76 G4VProcess& operator=(const G4VProcess&) = << 94 G4VProcess(const G4VProcess &right); 77 << 95 78 G4bool operator==(const G4VProcess& right) << 96 public: 79 G4bool operator!=(const G4VProcess& right) << 97 // destructor 80 // Equality operators << 98 virtual ~G4VProcess(); 81 << 99 82 //////////////////////////// << 100 // equal opperators 83 // DoIt ///////////////// << 101 G4int operator==(const G4VProcess &right) const; 84 //////////////////////////// << 102 G4int operator!=(const G4VProcess &right) const; 85 << 103 86 virtual G4VParticleChange* PostStepDoIt( << 104 public: // with description 87 const G4Track& tr << 105 //////////////////////////// 88 const G4Step& ste << 106 // DoIt ///////////////// 89 ) = 0; << 107 /////////////////////////// 90 << 108 virtual G4VParticleChange* PostStepDoIt( 91 virtual G4VParticleChange* AlongStepDoIt( << 109 const G4Track& track, 92 const G4Track& tr << 110 const G4Step& stepData 93 const G4Step& ste << 111 ) = 0; 94 ) = 0; << 112 95 virtual G4VParticleChange* AtRestDoIt( << 113 virtual G4VParticleChange* AlongStepDoIt( 96 const G4Track& tr << 114 const G4Track& track, 97 const G4Step& ste << 115 const G4Step& stepData 98 ) = 0; << 116 ) = 0; 99 // A virtual base class function that ha << 117 virtual G4VParticleChange* AtRestDoIt( 100 // by any subclass. The DoIt() method ac << 118 const G4Track& track, 101 // physics process and determines either << 119 const G4Step& stepData 102 // of the production of secondaries etc. << 120 ) = 0; 103 // Arguments << 121 // A virtual base class function that has to be overridden 104 // const G4Track& track: << 122 // by any subclass. The DoIt method actually performs the >> 123 // physics process and determines either momentum change >> 124 // of the production of secondaries etc. >> 125 // arguments >> 126 // const G4Track& track: 105 // reference to the current G4Tra 127 // reference to the current G4Track information 106 // const G4Step& stepData: << 128 // const G4Step& stepData: 107 // reference to the current G4Ste 129 // reference to the current G4Step information 108 130 109 ////////////////////////// << 131 ////////////////////////// 110 // GPIL /////////////// << 132 // GPIL ////////////// 111 ////////////////////////// << 133 ///////////////////////// 112 << 134 virtual G4double AlongStepGetPhysicalInteractionLength( 113 virtual G4double AlongStepGetPhysicalInter << 114 const G4Track& tr 135 const G4Track& track, 115 G4double previous << 136 G4double previousStepSize, 116 G4double currentM << 137 G4double currentMinimumStep, 117 G4double& propose << 138 G4double& proposedSafety, 118 G4GPILSelection* 139 G4GPILSelection* selection) = 0; 119 140 120 virtual G4double AtRestGetPhysicalInteract << 141 virtual G4double AtRestGetPhysicalInteractionLength( 121 const G4Track& tr 142 const G4Track& track, 122 G4ForceCondition* << 143 G4ForceCondition* condition >> 144 ) = 0; 123 145 124 virtual G4double PostStepGetPhysicalIntera << 146 virtual G4double PostStepGetPhysicalInteractionLength( 125 const G4Track& tr 147 const G4Track& track, 126 G4double previous << 148 G4double previousStepSize, 127 G4ForceCondition* << 149 G4ForceCondition* condition >> 150 ) = 0; >> 151 128 // Returns the Step-size (actual length 152 // Returns the Step-size (actual length) which is allowed 129 // by "this" process. (for AtRestGetPhy 153 // by "this" process. (for AtRestGetPhysicalInteractionLength, 130 // return value is Step-time) The Numbe 154 // return value is Step-time) The NumberOfInteractionLengthLeft is 131 // recalculated by using previousStepSi 155 // recalculated by using previousStepSize and the Step-size is 132 // calucalted accoding to the resultant 156 // calucalted accoding to the resultant NumberOfInteractionLengthLeft. 133 // using NumberOfInteractionLengthLeft, 157 // using NumberOfInteractionLengthLeft, which is recalculated at 134 // arguments 158 // arguments 135 // const G4Track& track: 159 // const G4Track& track: 136 // reference to the current G4Tra 160 // reference to the current G4Track information 137 // G4double* previousStepS 161 // G4double* previousStepSize: 138 // the Step-size (actual length) 162 // the Step-size (actual length) of the previous Step 139 // of this track. Negative calue 163 // of this track. Negative calue indicates that 140 // NumberOfInteractionLengthLeft 164 // NumberOfInteractionLengthLeft must be reset. 141 // the current physical interacti 165 // the current physical interaction legth of this process 142 // G4ForceCondition* condition: 166 // G4ForceCondition* condition: 143 // the flag indicates DoIt of thi 167 // the flag indicates DoIt of this process is forced 144 // to be called 168 // to be called 145 // Forced: Corresponding DoIt 169 // Forced: Corresponding DoIt is forced 146 // NotForced: Corresponding DoIt 170 // NotForced: Corresponding DoIt is called 147 // if the Step size o 171 // if the Step size of this Step is determined 148 // by this process 172 // by this process 149 // !! AlongStepDoIt is always cal 173 // !! AlongStepDoIt is always called !! 150 // G4double& currentMinimumStep: 174 // G4double& currentMinimumStep: 151 // this value is used for transfo 175 // this value is used for transformation of 152 // true path length to geometrica 176 // true path length to geometrical path length 153 177 154 inline G4double GetCurrentInteractionLengt << 178 G4double GetCurrentInteractionLength() const; 155 // Returns currentInteractionLength 179 // Returns currentInteractionLength 156 180 157 ////////// PIL factor //////// << 181 ////////// PIL factor //////// 158 // << 182 void SetPILfactor(G4double value); 159 inline void SetPILfactor(G4double value); << 183 G4double GetPILfactor() const; 160 inline G4double GetPILfactor() const; << 161 // Set/Get factor for PhysicsInteraction 184 // Set/Get factor for PhysicsInteractionLength 162 // which is passed to G4SteppingManager 185 // which is passed to G4SteppingManager for both AtRest and PostStep 163 186 164 // These three GPIL methods are used by St << 187 // These three GPIL methods are used by Stepping Manager. 165 // They invoke virtual GPIL methods listed << 188 // They invoke virtual GPIL methods listed above. 166 // As for AtRest and PostStep the returned << 189 // As for AtRest and PostStep the returned value is multipled by thePILfactor 167 // thePILfactor << 190 // 168 // << 191 G4double AlongStepGPIL( const G4Track& track, 169 inline G4double AlongStepGPIL( const G4Tra << 192 G4double previousStepSize, 170 G4double pr << 193 G4double currentMinimumStep, 171 G4double cu << 194 G4double& proposedSafety, 172 G4double& p << 195 G4GPILSelection* selection ); 173 G4GPILSelec << 196 174 << 197 G4double AtRestGPIL( const G4Track& track, 175 inline G4double AtRestGPIL( const G4Track& << 198 G4ForceCondition* condition ); 176 G4ForceConditi << 199 177 << 200 G4double PostStepGPIL( const G4Track& track, 178 inline G4double PostStepGPIL( const G4Trac << 201 G4double previousStepSize, 179 G4double pre << 202 G4ForceCondition* condition ); 180 G4ForceCondi << 181 203 182 virtual G4bool IsApplicable(const G4Partic << 204 ////////////////////// >> 205 virtual G4bool IsApplicable(const G4ParticleDefinition&){return true;}; 183 // Returns true if this process object i 206 // Returns true if this process object is applicable to 184 // the particle type. Process will not b << 207 // the particle type 185 // particle if IsApplicable is false << 208 // Process will not be registered to a particle if IsApplicable is false 186 209 187 virtual void BuildPhysicsTable(const G4Par << 210 virtual void BuildPhysicsTable(const G4ParticleDefinition&){}; 188 // Messaged by the Particle definition ( 211 // Messaged by the Particle definition (via the Process manager) 189 // whenever cross-section tables have to << 212 // whenever cross section tables have to be rebuilt (i.e. if new 190 // materials have been defined). 213 // materials have been defined). 191 // It is overloaded by individual proces 214 // It is overloaded by individual processes when they need physics 192 // tables << 215 // tables. 193 216 194 virtual void PreparePhysicsTable(const G4P << 217 virtual void PreparePhysicsTable(const G4ParticleDefinition&){}; 195 // Messaged by the Particle definition ( 218 // Messaged by the Particle definition (via the Process manager) 196 // whenever cross-section tables have to << 219 // whenever cross section tables have to be prepare for rebuilt 197 // (i.e. if new materials have been defi 220 // (i.e. if new materials have been defined). 198 // It is overloaded by individual proces 221 // It is overloaded by individual processes when they need physics 199 // tables << 222 // tables. >> 223 >> 224 // Processes which Build physics tables independent of cuts >> 225 // (for example in their constructors) >> 226 // should preferably use private >> 227 // void BuildThePhysicsTable() and void PreparePhysicsTable(). >> 228 // Not another BuildPhysicsTable, please. 200 229 201 // Processes which Build physics tables in << 202 // (for example in their constructors) sho << 203 // void BuildThePhysicsTable() and void Pr << 204 // *Not* another BuildPhysicsTable << 205 230 206 virtual G4bool StorePhysicsTable(const G4P << 231 virtual G4bool StorePhysicsTable(const G4ParticleDefinition* , 207 const G4S << 232 const G4String&, >> 233 G4bool ascii = false) >> 234 {ascii=false; return true;} 208 // Store PhysicsTable in a file. 235 // Store PhysicsTable in a file. 209 // Return false in case of failure at I/ << 236 // (return false in case of failure at I/O ) 210 237 211 virtual G4bool RetrievePhysicsTable(const << 238 virtual G4bool RetrievePhysicsTable( const G4ParticleDefinition* , 212 const G4 << 239 const G4String&, >> 240 G4bool ascii = false) >> 241 {ascii=false; return false;} 213 // Retrieve Physics from a file. 242 // Retrieve Physics from a file. 214 // Return true if the Physics Table can << 243 // (return true if the Physics Table can be build by using file) 215 // Return false if the process has no fu << 244 // (return false if the process has no functionality or in case of failure) 216 // of failure. File name should be defin << 245 // File name should be defined by each process 217 // file should be placed under the direc << 246 // and the file should be placed under the directory specifed by the argument. 218 << 247 const G4String& GetPhysicsTableFileName(const G4ParticleDefinition* , 219 const G4String& GetPhysicsTableFileName(co << 248 const G4String& directory, 220 co << 249 const G4String& tableName, 221 co << 250 G4bool ascii =false); 222 G4 << 251 // this method is utility for Store/RetreivePhysicsTable 223 // This method is utility for Store/Retr << 252 224 << 253 //////////////////////////// 225 inline const G4String& GetProcessName() co << 254 const G4String& GetProcessName() const; 226 // Returns the name of the process << 255 // Returns the name of the process. 227 << 256 228 inline G4ProcessType GetProcessType() cons << 257 G4ProcessType GetProcessType() const; 229 // Returns the process type << 258 // Returns the process type. 230 << 259 231 inline void SetProcessType(G4ProcessType); << 260 void SetProcessType(G4ProcessType ); 232 // Sets the process type << 261 // Set the process type. 233 << 262 234 inline G4int GetProcessSubType() const; << 263 static const G4String& GetProcessTypeName(G4ProcessType ); 235 // Returns the process sub type << 264 // Returns the process type name 236 << 265 237 inline void SetProcessSubType(G4int); << 266 virtual void StartTracking(G4Track*); 238 // Sets the process sub type << 267 virtual void EndTracking(); 239 << 268 // inform Start/End of tracking for each track to the physics process 240 static const G4String& GetProcessTypeName( << 241 // Returns the process type name << 242 << 243 virtual const G4VProcess* GetCreatorProces << 244 // Returns the process to be used as Cre << 245 // coming from this process << 246 << 247 virtual void StartTracking(G4Track*); << 248 virtual void EndTracking(); << 249 // Inform Start/End of tracking for each << 250 << 251 virtual void SetProcessManager(const G4Pro << 252 // A process manager sets its own pointe << 253 // is registered in the process Manager << 254 virtual const G4ProcessManager* GetProcess << 255 // Get the process manager which the pro << 256 << 257 virtual void ResetNumberOfInteractionLengt << 258 // Reset (determine the value of) Number << 259 269 260 inline G4double GetNumberOfInteractionLeng << 270 public: 261 // Get NumberOfInteractionLengthLeft << 271 virtual void SetProcessManager(const G4ProcessManager*); 262 << 272 // A process manager set its own pointer when the process is registered 263 inline G4double GetTotalNumberOfInteractio << 273 // the process Manager 264 // Get NumberOfInteractionLength after << 274 virtual const G4ProcessManager* GetProcessManager(); 265 // ResetNumberOfInteractionLengthLeft() << 275 // Get the process manager which the process belongs to 266 << 267 inline G4bool isAtRestDoItIsEnabled() cons << 268 inline G4bool isAlongStepDoItIsEnabled() c << 269 inline G4bool isPostStepDoItIsEnabled() co << 270 // These methods indicate which DoIt is << 271 // They are used by G4ProcessManager to << 272 // that ordering parameters are properly << 273 276 274 virtual void DumpInfo() const; << 275 // Dump out process information << 276 << 277 virtual void ProcessDescription(std::ostre << 278 // Write out to html file for automatic << 279 << 280 inline void SetVerboseLevel(G4int value); << 281 inline G4int GetVerboseLevel() const; << 282 // set/get control flag for output messa << 283 // 0: Silent << 284 // 1: Warning message << 285 // 2: More << 286 << 287 virtual void SetMasterProcess(G4VProcess* << 288 // Sets the master thread process instan << 289 inline const G4VProcess* GetMasterProcess( << 290 // Returns the master thread process ins << 291 // Can be used to initialise worker type << 292 // instances from master one (e.g. to sh << 293 // if ( this != GetMasterProcess() ) { / << 294 // else { /* master or sequential */ } << 295 << 296 virtual void BuildWorkerPhysicsTable(const << 297 // Messaged by the Particle definition ( << 298 // in worker threads. See BuildWorkerPhy << 299 // Can be used to share among threads ph << 300 // Use GetMasterProcess() to get pointer << 301 // worker thread. << 302 // By default this method makes a forwar << 303 << 304 virtual void PrepareWorkerPhysicsTable(con << 305 // Messaged by the Particle definition ( << 306 // in worker threads. See Preparephysics << 307 // Can be used to share among threads ph << 308 // Use GetMasterProcess() to get pointer << 309 // worker thread << 310 // By default this method makes a forwar << 311 << 312 protected: 277 protected: 313 << 278 const G4ProcessManager* aProcessManager; 314 inline void SubtractNumberOfInteractionLen << 315 // Subtract NumberOfInteractionLengthLef << 316 // to previousStepSize << 317 279 318 inline void ClearNumberOfInteractionLength << 319 // This method should be at the end of P << 320 << 321 protected: 280 protected: 322 << 281 G4VParticleChange* pParticleChange; 323 const G4ProcessManager* aProcessManager = << 282 // The pointer to G4VParticleChange object >> 283 // which is modified and returned by address by the DoIt() method. >> 284 // This pointer should be set in each physics process >> 285 // after construction of derived class object. >> 286 >> 287 G4ParticleChange aParticleChange; >> 288 // This object is kept for compatibility with old scheme >> 289 // This will be removed in future >> 290 >> 291 G4double theNumberOfInteractionLengthLeft; >> 292 // The flight length left for the current tracking particle >> 293 // in unit of "Interaction length". >> 294 >> 295 G4double currentInteractionLength; >> 296 // The InteractionLength in the current material >> 297 >> 298 public: // with description >> 299 virtual void ResetNumberOfInteractionLengthLeft(); >> 300 // reset (determine the value of)NumberOfInteractionLengthLeft 324 301 325 G4VParticleChange* pParticleChange = nullp << 302 protected: // with description 326 // The pointer to G4VParticleChange obje << 303 virtual void SubtractNumberOfInteractionLengthLeft( 327 // which is modified and returned by add << 304 G4double previousStepSize 328 // This pointer should be set in each ph << 305 ); 329 // after construction of derived class o << 306 // subtract NumberOfInteractionLengthLeft by the value corresponding to 330 << 307 // previousStepSize 331 G4ParticleChange aParticleChange; << 308 332 // This object is kept for compatibility << 309 virtual void ClearNumberOfInteractionLengthLeft(); 333 // May be removed in future << 310 // clear NumberOfInteractionLengthLeft 334 << 311 // !!! This method should be at the end of PostStepDoIt() 335 G4double theNumberOfInteractionLengthLeft << 312 // !!! and AtRestDoIt 336 // The flight length left for the curren << 313 337 // in unit of "Interaction length" << 314 public: // with description 338 << 315 // These methods indicate which DoIt is enabled 339 G4double currentInteractionLength = -1.0; << 316 // These methods are used by G4ProcessManager to check 340 // The InteractionLength in the current << 317 // that ordering parameters are set properly 341 << 318 G4bool isAtRestDoItIsEnabled() const; 342 G4double theInitialNumberOfInteractionLeng << 319 G4bool isAlongStepDoItIsEnabled() const; 343 // The initial value when ResetNumberOfI << 320 G4bool isPostStepDoItIsEnabled() const; 344 << 321 345 G4String theProcessName; << 322 protected: 346 // The name of the process << 323 G4String theProcessName; 347 << 324 // The name of the process 348 G4String thePhysicsTableFileName; << 349 325 350 G4ProcessType theProcessType = fNotDefined << 326 G4String thePhysicsTableFileName; 351 // The type of the process << 352 327 353 G4int theProcessSubType = -1; << 328 G4ProcessType theProcessType; 354 // The sub type of the process << 329 // The type of the process 355 330 356 G4double thePILfactor = 1.0; << 331 G4double thePILfactor; 357 // Factor for PhysicsInteractionLength << 332 // factor for PhysicsInteractionLength 358 // which is passed to G4SteppingManager 333 // which is passed to G4SteppingManager 359 334 360 G4int verboseLevel = 0; << 335 G4bool enableAtRestDoIt; 361 // Controle flag for output message << 336 G4bool enableAlongStepDoIt; 362 << 337 G4bool enablePostStepDoIt; 363 G4bool enableAtRestDoIt = true; << 338 364 G4bool enableAlongStepDoIt = true; << 339 public: // with description 365 G4bool enablePostStepDoIt = true; << 340 virtual void DumpInfo() const; 366 << 341 // dump out process information 367 private: << 342 368 << 343 public: // with description 369 G4VProcess(); << 344 void SetVerboseLevel(G4int value); 370 // Hidden default constructor << 345 G4int GetVerboseLevel() const; 371 << 346 // set/get controle flag for output message 372 private: << 347 // 0: Silent 373 << 348 // 1: Warning message 374 G4VProcess* masterProcessShadow = nullptr; << 349 // 2: More 375 // For multi-threaded: pointer to the in << 350 376 // for the master thread << 351 >> 352 protected: >> 353 G4int verboseLevel; >> 354 // controle flag for output message 377 355 378 G4ProcessTable* fProcessTable = nullptr; << 379 }; 356 }; 380 357 381 // ----------------------------------------- 358 // ----------------------------------------- 382 // inlined function members implementation 359 // inlined function members implementation 383 // ----------------------------------------- 360 // ----------------------------------------- >> 361 #include "Randomize.hh" 384 362 385 inline 363 inline 386 const G4String& G4VProcess::GetProcessName() c << 364 const G4String& G4VProcess::GetProcessName() const 387 { 365 { 388 return theProcessName; 366 return theProcessName; 389 } 367 } 390 368 391 inline 369 inline 392 G4ProcessType G4VProcess::GetProcessType() con << 370 G4ProcessType G4VProcess::GetProcessType() const 393 { 371 { 394 return theProcessType; 372 return theProcessType; 395 } 373 } 396 374 397 inline 375 inline 398 void G4VProcess::SetProcessType(G4ProcessType << 376 void G4VProcess::SetProcessType(G4ProcessType aType) 399 { 377 { 400 theProcessType = aType; 378 theProcessType = aType; 401 } 379 } 402 380 403 inline << 381 inline void G4VProcess::SetVerboseLevel(G4int value) 404 G4int G4VProcess::GetProcessSubType() const << 405 { << 406 return theProcessSubType; << 407 } << 408 << 409 inline << 410 void G4VProcess::SetProcessSubType(G4int value << 411 { << 412 theProcessSubType = value; << 413 } << 414 << 415 inline << 416 void G4VProcess::SetVerboseLevel(G4int value) << 417 { 382 { 418 verboseLevel = value; 383 verboseLevel = value; 419 } 384 } 420 385 421 inline << 386 inline G4int G4VProcess::GetVerboseLevel() const 422 G4int G4VProcess::GetVerboseLevel() const << 423 { 387 { 424 return verboseLevel; 388 return verboseLevel; 425 } 389 } 426 390 427 inline << 391 inline void G4VProcess::ResetNumberOfInteractionLengthLeft() 428 void G4VProcess::ClearNumberOfInteractionLengt << 429 { 392 { 430 theInitialNumberOfInteractionLength = -1.0; << 393 theNumberOfInteractionLengthLeft = -std::log( G4UniformRand() ); 431 theNumberOfInteractionLengthLeft = -1.0; << 432 } 394 } 433 395 434 inline << 396 inline void G4VProcess::ClearNumberOfInteractionLengthLeft() 435 G4double G4VProcess::GetNumberOfInteractionLen << 436 { 397 { 437 return theNumberOfInteractionLengthLeft; << 398 theNumberOfInteractionLengthLeft = -1.0; 438 } 399 } 439 400 440 inline << 401 inline G4double G4VProcess::GetCurrentInteractionLength() const 441 G4double G4VProcess::GetTotalNumberOfInteracti << 442 { << 443 return theInitialNumberOfInteractionLength - << 444 } << 445 << 446 inline << 447 G4double G4VProcess::GetCurrentInteractionLeng << 448 { 402 { 449 return currentInteractionLength; 403 return currentInteractionLength; 450 } 404 } 451 405 452 inline << 406 inline void G4VProcess::SetPILfactor(G4double value) 453 void G4VProcess::SetPILfactor(G4double value) << 454 { 407 { 455 if (value>0.) { thePILfactor = value; } << 408 if (value>0.) { >> 409 thePILfactor = value; >> 410 } 456 } 411 } 457 412 458 inline << 413 inline G4double G4VProcess::GetPILfactor() const 459 G4double G4VProcess::GetPILfactor() const << 460 { 414 { 461 return thePILfactor; 415 return thePILfactor; 462 } 416 } 463 417 464 inline << 418 inline G4double G4VProcess::AlongStepGPIL( const G4Track& track, 465 G4double G4VProcess::AlongStepGPIL( const G4Tr << 419 G4double previousStepSize, 466 G4double << 420 G4double currentMinimumStep, 467 G4double << 421 G4double& proposedSafety, 468 G4double& << 422 G4GPILSelection* selection ) 469 G4GPILSele << 423 { 470 { << 424 G4double value 471 return AlongStepGetPhysicalInteractionLength << 425 =AlongStepGetPhysicalInteractionLength(track, previousStepSize, currentMinimumStep, proposedSafety, selection); 472 currentMinimumSte << 426 return value; 473 } 427 } 474 428 475 inline << 429 inline G4double G4VProcess::AtRestGPIL( const G4Track& track, 476 G4double G4VProcess::AtRestGPIL( const G4Track << 477 G4ForceCondit 430 G4ForceCondition* condition ) 478 { 431 { 479 return thePILfactor * AtRestGetPhysicalInter << 432 G4double value >> 433 =AtRestGetPhysicalInteractionLength(track, condition); >> 434 return thePILfactor*value; 480 } 435 } 481 436 482 inline << 437 inline G4double G4VProcess::PostStepGPIL( const G4Track& track, 483 G4double G4VProcess::PostStepGPIL( const G4Tra << 438 G4double previousStepSize, 484 G4double pr << 485 G4ForceCond 439 G4ForceCondition* condition ) 486 { 440 { 487 return thePILfactor * << 441 G4double value 488 PostStepGetPhysicalInteractionLength(tra << 442 =PostStepGetPhysicalInteractionLength(track, previousStepSize, condition); >> 443 return thePILfactor*value; 489 } 444 } 490 445 491 inline 446 inline 492 void G4VProcess::SetProcessManager(const G4Pro << 447 void G4VProcess::SetProcessManager(const G4ProcessManager* procMan) 493 { 448 { 494 aProcessManager = procMan; << 449 aProcessManager = procMan; 495 } 450 } 496 451 497 inline 452 inline 498 const G4ProcessManager* G4VProcess::GetProcess << 453 const G4ProcessManager* G4VProcess::GetProcessManager() 499 { 454 { 500 return aProcessManager; << 455 return aProcessManager; 501 } 456 } 502 457 503 inline 458 inline 504 G4bool G4VProcess::isAtRestDoItIsEnabled() con << 459 G4bool G4VProcess::isAtRestDoItIsEnabled() const 505 { 460 { 506 return enableAtRestDoIt; 461 return enableAtRestDoIt; 507 } 462 } 508 463 509 inline 464 inline 510 G4bool G4VProcess::isAlongStepDoItIsEnabled() << 465 G4bool G4VProcess::isAlongStepDoItIsEnabled() const 511 { 466 { 512 return enableAlongStepDoIt; 467 return enableAlongStepDoIt; 513 } 468 } 514 469 515 inline 470 inline 516 G4bool G4VProcess::isPostStepDoItIsEnabled() c << 471 G4bool G4VProcess::isPostStepDoItIsEnabled() const 517 { 472 { 518 return enablePostStepDoIt; 473 return enablePostStepDoIt; 519 } 474 } 520 475 521 inline << 522 const G4VProcess* G4VProcess::GetMasterProcess << 523 { << 524 return masterProcessShadow; << 525 } << 526 << 527 inline << 528 void G4VProcess::SubtractNumberOfInteractionLe << 529 { << 530 if (currentInteractionLength>0.0) << 531 { << 532 theNumberOfInteractionLengthLeft -= prevSt << 533 if(theNumberOfInteractionLengthLeft<0.) << 534 { << 535 theNumberOfInteractionLengthLeft=CLHEP: << 536 } << 537 } << 538 else << 539 { << 540 #ifdef G4VERBOSE << 541 if (verboseLevel>0) << 542 { << 543 G4cerr << "G4VProcess::SubtractNumberOfI << 544 G4cerr << " [" << theProcessName << "]" << 545 G4cerr << " currentInteractionLength = " << 546 << currentInteractionLength << " << 547 G4cerr << " previousStepSize = " << prev << 548 G4cerr << G4endl; << 549 } << 550 #endif 476 #endif 551 G4String msg = "Negative currentInteractio << 552 msg += theProcessName; << 553 G4Exception("G4VProcess::SubtractNumberOfI << 554 "ProcMan201", EventMustBeAbort << 555 } << 556 } << 557 477 558 #endif << 478 >> 479 >> 480 >> 481 >> 482 >> 483 >> 484 >> 485 >> 486 >> 487 >> 488 >> 489 >> 490 >> 491 >> 492 >> 493 >> 494 >> 495 >> 496 559 497