Added to repository

This commit is contained in:
paraiso
2005-11-11 12:35:21 +00:00
parent bad53d7f6c
commit 277293fc40
201 changed files with 47334 additions and 0 deletions

View File

@ -0,0 +1,25 @@
#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