Geant4 Cross Reference |
>> 1 // This code implementation is the intellectual property of >> 2 // the GEANT4 collaboration. 1 // 3 // 2 // ******************************************* << 4 // By copying, distributing or modifying the Program (or any work 3 // * License and Disclaimer << 5 // based on the Program) you indicate your acceptance of this statement, 4 // * << 6 // and all its terms. 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 // 7 // 26 // G4VRestProcess class implementation << 8 // $Id: G4VRestProcess.cc,v 1.1.10.1 1999/12/07 20:52:51 gunter Exp $ >> 9 // GEANT4 tag $Name: geant4-01-00 $ 27 // 10 // 28 // Authors: << 11 // 29 // - 2 December 1995, G.Cosmo - First implemen << 12 // -------------------------------------------------------------- 30 // - 18 December 1996, H.Kurashige - New Physi << 13 // GEANT 4 class implementation file 31 // ------------------------------------------- << 14 // >> 15 // For information related to this code contact: >> 16 // CERN, CN Division, ASD Group >> 17 // History: first implementation, based on object model of >> 18 // 2nd December 1995, G.Cosmo >> 19 // -------------------------------------------------------------- >> 20 // New Physics scheme 8 Jan. 1997 H.Kurahige >> 21 // ------------------------------------------------------------ 32 22 33 #include "G4VRestProcess.hh" 23 #include "G4VRestProcess.hh" 34 #include "G4SystemOfUnits.hh" << 35 << 36 #include "G4Step.hh" << 37 #include "G4Track.hh" << 38 #include "G4MaterialTable.hh" << 39 #include "G4VParticleChange.hh" << 40 << 41 // ------------------------------------------- << 42 G4VRestProcess::G4VRestProcess() 24 G4VRestProcess::G4VRestProcess() 43 : G4VProcess("No Name Rest Process") << 25 :G4VProcess("No Name Rest Process") 44 { 26 { 45 G4Exception("G4VRestProcess::G4VRestProcess( << 27 G4Exception("G4VRestProcess:: default constructor is called"); 46 JustWarning, "Default constructo << 47 } 28 } 48 29 49 // ------------------------------------------- << 30 G4VRestProcess::G4VRestProcess(const G4String& aName , G4ProcessType aType) 50 G4VRestProcess::G4VRestProcess(const G4String& << 31 : G4VProcess(aName, aType) 51 : G4VProcess(aName, aType) << 52 { 32 { 53 enableAlongStepDoIt = false; << 54 enablePostStepDoIt = false; << 55 } 33 } 56 34 57 // ------------------------------------------- << 58 G4VRestProcess::~G4VRestProcess() 35 G4VRestProcess::~G4VRestProcess() 59 { 36 { 60 } 37 } 61 38 62 // ------------------------------------------- << 63 G4VRestProcess::G4VRestProcess(G4VRestProcess& 39 G4VRestProcess::G4VRestProcess(G4VRestProcess& right) 64 : G4VProcess(right) << 40 : G4VProcess(right) 65 { 41 { 66 } 42 } 67 43 68 // ------------------------------------------- << 69 G4double G4VRestProcess:: << 70 AtRestGetPhysicalInteractionLength( const G4Tr << 71 G4ForceCon << 72 { << 73 // beginning of tracking << 74 ResetNumberOfInteractionLengthLeft(); << 75 44 76 // condition is set to "Not Forced" << 77 *condition = NotForced; << 78 45 79 // get mean life time << 80 currentInteractionLength = GetMeanLifeTime(t << 81 46 82 G4double time = (currentInteractionLength < << 83 theNumberOfInteractionLengthLeft * current << 84 << 85 #ifdef G4VERBOSE << 86 if ((currentInteractionLength <0.0) || (verb << 87 { << 88 G4double t = (currentInteractionLength < D << 89 currentInteractionLength/ns : DBL_MAX; << 90 G4cout << "G4VRestProcess::AtRestGetPhysic << 91 G4cout << "[ " << GetProcessName() << "]" << 92 track.GetDynamicParticle()->DumpInfo(); << 93 G4cout << " in Material " << track.GetMat << 94 G4cout << "MeanLifeTime = " << t << " [ns] << 95 << G4endl; << 96 } << 97 #endif << 98 47 99 return time; << 100 } << 101 48 102 // ------------------------------------------- << 103 G4VParticleChange* G4VRestProcess::AtRestDoIt( << 104 << 105 { << 106 ClearNumberOfInteractionLengthLeft(); << 107 49 108 return pParticleChange; << 50 109 } << 51 >> 52 >> 53 110 54