LArSoft  v06_85_00
Liquid Argon Software toolkit - http://larsoft.org/
NeutronHPphysics.hh
Go to the documentation of this file.
1 #pragma once
7 
8 // Geant4 includes
9 #include "Geant4/globals.hh"
10 #include "Geant4/G4VPhysicsConstructor.hh"
11 
12 class NeutronHPphysics : public G4VPhysicsConstructor
13 {
14  public:
15  NeutronHPphysics(const G4String& name="neutron");
17 
18  public:
19  virtual void ConstructParticle() {};
20  virtual void ConstructProcess();
21 
22  public:
23  void SetThermalPhysics(G4bool flag) {fThermal = flag;};
24 
25  private:
26  G4bool fThermal;
27 };
virtual void ConstructParticle()
void SetThermalPhysics(G4bool flag)
virtual void ConstructProcess()
NeutronHPphysics(const G4String &name="neutron")