musrsim/geant4/LEMuSR/include/LEMuSRParticleChangeForSR.hh
2005-11-11 12:35:21 +00:00

26 lines
438 B
C++

#ifndef LEMuSRParticleChangeForSR_h
#define LEMuSRParticleChangeForSR_h 1
#include "G4ParticleChangeForTransport.hh"
class LEMuSRParticleChangeForSR : public G4ParticleChangeForTransport
{
G4Step* UpdateStepForAtRest(G4Step* Step);
public:
G4double theDecayTime;
inline void SetDecayTime(G4double fDecayTime) { theDecayTime = fDecayTime; }
inline G4double GetDecayTime() { return theDecayTime; }
};
#endif