35 lines
754 B
C++
35 lines
754 B
C++
#ifndef LEMuSRDecay_h
|
|
#define LEMuSRDecay_h 1
|
|
|
|
#include "G4Decay.hh"
|
|
|
|
|
|
#include "G4ios.hh"
|
|
#include "globals.hh"
|
|
#include "G4VRestDiscreteProcess.hh"
|
|
#include "G4ParticleChangeForDecay.hh"
|
|
class G4VExtDecayer;
|
|
|
|
class G4Decay;
|
|
|
|
class LEMuSRDecay : public G4Decay
|
|
{
|
|
|
|
protected: // With Description
|
|
virtual G4VParticleChange* DecayIt(
|
|
const G4Track& aTrack,
|
|
const G4Step& aStep
|
|
);
|
|
// The DecayIt() method returns by pointer a particle-change object,
|
|
// which has information of daughter particles.
|
|
G4ParticleChangeForDecay pParticleChangeForDecay;
|
|
// const G4VExtDecayer *m_ExtDecayer;
|
|
G4double m_RemainderLifeTime;
|
|
|
|
public:
|
|
G4int testa, testb;
|
|
};
|
|
|
|
|
|
#endif
|