00001 #ifndef musrParticleChangeForSR_h
00002 #define musrParticleChangeForSR_h 1
00003
00004 #include "G4ParticleChangeForTransport.hh"
00005
00006
00007 class musrParticleChangeForSR : public G4ParticleChangeForTransport
00008 {
00009
00010 G4Step* UpdateStepForAtRest(G4Step* Step);
00011
00012 public:
00013 G4double theDecayTime;
00014
00015
00016
00017
00018 inline void SetDecayTime(G4double fDecayTime) { theDecayTime = fDecayTime; }
00019
00020 inline G4double GetDecayTime() { return theDecayTime; }
00021
00022 };
00023
00024
00025 #endif