// This code implementation is the intellectual property of // the GEANT4 collaboration. // // By copying, distributing or modifying the Program (or any work // based on the Program) you indicate your acceptance of this statement, // and all its terms. // // $Id: Em3PhysicsList.hh,v 1.1.4.1 1999/12/07 20:47:00 gunter Exp $ // GEANT4 tag $Name: geant4-01-00 $ // // //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... #ifndef Em3PhysicsList_h #define Em3PhysicsList_h 1 #include "G4VUserPhysicsList.hh" #include "globals.hh" //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... class Em3PhysicsList: public G4VUserPhysicsList { public: Em3PhysicsList(); ~Em3PhysicsList(); protected: // Construct particle and physics void ConstructParticle(); void ConstructProcess(); void SetCuts(); protected: // these methods Construct particles void ConstructBosons(); void ConstructLeptons(); void ConstructMesons(); void ConstructBarions(); protected: // these methods Construct physics processes and register them void ConstructGeneral(); void ConstructEM(); }; #endif