39 lines
816 B
C++
39 lines
816 B
C++
|
|
||
|
#ifndef CloverPhysicsList_h
|
||
|
#define CloverPhysicsList_h 1
|
||
|
|
||
|
#include "G4VUserPhysicsList.hh"
|
||
|
#include "globals.hh"
|
||
|
|
||
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
||
|
|
||
|
class CloverPhysicsList: public G4VUserPhysicsList
|
||
|
{
|
||
|
public:
|
||
|
CloverPhysicsList();
|
||
|
~CloverPhysicsList();
|
||
|
|
||
|
protected:
|
||
|
// Construct particle and physics
|
||
|
virtual void ConstructParticle();
|
||
|
virtual void ConstructProcess();
|
||
|
|
||
|
virtual void SetCuts();
|
||
|
|
||
|
protected:
|
||
|
// these methods Construct particles
|
||
|
void ConstructBosons();
|
||
|
void ConstructLeptons();
|
||
|
|
||
|
protected:
|
||
|
// these methods Construct physics processes and register them
|
||
|
void ConstructGeneral();
|
||
|
void ConstructEM();
|
||
|
|
||
|
};
|
||
|
|
||
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
||
|
|
||
|
#endif
|
||
|
|