// ///////////////////////////////////////////////////////////////////////////// // // // Title: Hadron Physics for Simple and Fast Physics List // // Date: 20 March 2005 // // Author: D.H. Wright (SLAC) // // // ///////////////////////////////////////////////////////////////////////////// // #ifndef SFHadronPhysics_h #define SFHadronPhysics_h 1 #include "G4VPhysicsConstructor.hh" class SFHadronPhysics : public G4VPhysicsConstructor { public: SFHadronPhysics(const G4String& name ="hadron"); virtual ~SFHadronPhysics(); // This method will be invoked in the Construct() method. // each particle type will be instantiated virtual void ConstructParticle(); // This method will be invoked in the Construct() method. // each physics process will be instantiated and // registered to the process manager of each particle type virtual void ConstructProcess(); }; #endif