blob: 19ab27ba94fb17b4eaa7e42bb2e583e695eb7ca5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#ifndef G4TANKRESPONSE_G4BEAMTESTGENERALPHYSICS_H_INCLUDED
#define G4TANKRESPONSE_G4BEAMTESTGENERALPHYSICS_H_INCLUDED
#include <globals.hh>
#include <G4VPhysicsConstructor.hh>
#include <G4Decay.hh>
/**
* Implementation of G4VPhysicsConstructor for decay processes and geantino.
*/
class G4BeamTestGeneralPhysics : public G4VPhysicsConstructor
{
public:
G4BeamTestGeneralPhysics();
virtual ~G4BeamTestGeneralPhysics();
void ConstructParticle();
void ConstructProcess();
private:
G4Decay decay;
};
#endif // G4TANKRESPONSE_G4BEAMTESTGENERALPHYSICS_H_INCLUDED
|