Monte Carlo LYSO
Geant4 simulation for the LYSO calorimeter prototype
physics.hh
Go to the documentation of this file.
1 
5 #ifndef PHYSICS_HH
6 #define PHYSICS_HH
7 
8 #include "G4VModularPhysicsList.hh"
9 #include "G4EmStandardPhysics.hh"
10 #include "G4OpticalPhysics.hh"
11 #include "G4DecayPhysics.hh"
12 #include "G4RadioactiveDecayPhysics.hh"
13 
19 class MyPhysicsList : public G4VModularPhysicsList
20 {
21 public:
22  MyPhysicsList();
23  ~MyPhysicsList() override = default;
24 };
25 
26 #endif // PHYSICS_HH
Mandatory user initialization concrete class of G4VModularPhysicsList. It defines physical processes ...
Definition: physics.hh:20
~MyPhysicsList() override=default
Destructor of the class.
MyPhysicsList()
Constructor of the class.
Definition: physics.cc:7