// // ******************************************************************** // * DISCLAIMER * // * * // * The following disclaimer summarizes all the specific disclaimers * // * of contributors to this software. The specific disclaimers,which * // * govern, are listed with their locations in: * // * http://cern.ch/geant4/license * // * * // * Neither the authors of this software system, nor their employing * // * institutes,nor the agencies providing financial support for this * // * work make any representation or warranty, express or implied, * // * regarding this software system or assume any liability for its * // * use. * // * * // * 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: ExN06PhysicsList.hh,v 1.6 2003/01/23 15:34:23 maire Exp $ // GEANT4 tag $Name: geant4-05-01 $ // //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... #ifndef ExN06PhysicsList_h #define ExN06PhysicsList_h 1 #include "globals.hh" #include "G4VUserPhysicsList.hh" class G4Cerenkov; class G4Scintillation; class G4OpAbsorption; class G4OpRayleigh; class G4OpBoundaryProcess; class ExN06PhysicsListMessenger; //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... class ExN06PhysicsList : public G4VUserPhysicsList { public: ExN06PhysicsList(); ~ExN06PhysicsList(); public: void ConstructParticle(); void ConstructProcess(); void SetCuts(); //these methods Construct particles void ConstructBosons(); void ConstructLeptons(); void ConstructMesons(); void ConstructBaryons(); //these methods Construct physics processes and register them void ConstructGeneral(); void ConstructEM(); void ConstructOp(); //for the Messenger void SetVerbose(G4int); void SetNbOfPhotonsCerenkov(G4int); private: G4Cerenkov* theCerenkovProcess; G4Scintillation* theScintillationProcess; G4OpAbsorption* theAbsorptionProcess; G4OpRayleigh* theRayleighScatteringProcess; G4OpBoundaryProcess* theBoundaryProcess; ExN06PhysicsListMessenger* pMessenger; }; //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... #endif /* ExN06PhysicsList_h */