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