Geant4 Cross Reference |
1 // ******************************************************************** 2 // * License and Disclaimer * 3 // * * 4 // * The Geant4 software is copyright of the Copyright Holders of * 5 // * the Geant4 Collaboration. It is provided under the terms and * 6 // * conditions of the Geant4 Software License, included in the file * 7 // * LICENSE and available at http://cern.ch/geant4/license . These * 8 // * include a list of copyright holders. * 9 // * * 10 // * Neither the authors of this software system, nor their employing * 11 // * institutes,nor the agencies providing financial support for this * 12 // * work make any representation or warranty, express or implied, * 13 // * regarding this software system or assume any liability for its * 14 // * use. Please see the license in the file LICENSE and URL above * 15 // * for the full disclaimer and the limitation of liability. * 16 // * * 17 // * This code implementation is the result of the scientific and * 18 // * technical work of the GEANT4 collaboration. * 19 // * By using, copying, modifying or distributing the software (or * 20 // * any work based on the software) you agree to acknowledge its * 21 // * use in resulting scientific publications, and indicate your * 22 // * acceptance of all terms of the Geant4 Software license. * 23 // ******************************************************************** 24 // 25 // Hadrontherapy advanced example for Geant4 26 // See more at: https://twiki.cern.ch/twiki/bin/view/Geant4/AdvancedExamplesHadrontherapy 27 // 28 29 #ifndef HadrontherapyPhysicsList_h 30 #define HadrontherapyPhysicsList_h 1 31 32 #include "G4VModularPhysicsList.hh" 33 #include "G4EmConfigurator.hh" 34 #include "globals.hh" 35 36 class G4VPhysicsConstructor; 37 class HadrontherapyStepMax; 38 class HadrontherapyPhysicsListMessenger; 39 40 class HadrontherapyPhysicsList: public G4VModularPhysicsList 41 { 42 public: 43 44 HadrontherapyPhysicsList(); 45 virtual ~HadrontherapyPhysicsList(); 46 47 void ConstructParticle(); 48 void SetCutForGamma(G4double); 49 void SetCutForElectron(G4double); 50 void SetCutForPositron(G4double); 51 void SetDetectorCut(G4double cut); 52 void AddPhysicsList(const G4String& name); 53 void ConstructProcess(); 54 void AddStepMax(); 55 void AddPackage(const G4String& name); 56 57 private: 58 59 G4EmConfigurator em_config; 60 61 G4double cutForGamma; 62 G4double cutForElectron; 63 G4double cutForPositron; 64 G4bool locIonIonInelasticIsRegistered; 65 G4bool radioactiveDecayIsRegistered; 66 G4String emName; 67 G4VPhysicsConstructor* emPhysicsList; 68 G4VPhysicsConstructor* decay_List; 69 G4VPhysicsConstructor* radioactiveDecay_List; 70 71 std::vector<G4VPhysicsConstructor*> hadronPhys; 72 73 HadrontherapyPhysicsListMessenger* pMessenger; 74 }; 75 76 #endif 77