Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer << 3 // * DISCLAIMER * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th << 5 // * The following disclaimer summarizes all the specific disclaimers * 6 // * the Geant4 Collaboration. It is provided << 6 // * of contributors to this software. The specific disclaimers,which * 7 // * conditions of the Geant4 Software License << 7 // * govern, are listed with their locations in: * 8 // * LICENSE and available at http://cern.ch/ << 8 // * http://cern.ch/geant4/license * 9 // * include a list of copyright holders. << 10 // * 9 // * * 11 // * Neither the authors of this software syst 10 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 11 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 12 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 13 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file << 14 // * use. * 16 // * for the full disclaimer and the limitatio << 17 // * 15 // * * 18 // * This code implementation is the result << 16 // * This code implementation is the intellectual property of the * 19 // * technical work of the GEANT4 collaboratio << 17 // * GEANT4 collaboration. * 20 // * By using, copying, modifying or distri << 18 // * By copying, distributing or modifying the Program (or any work * 21 // * any work based on the software) you ag << 19 // * based on the Program) you indicate your acceptance of this * 22 // * use in resulting scientific publicati << 20 // * statement, and all its terms. * 23 // * acceptance of all terms of the Geant4 Sof << 24 // ******************************************* 21 // ******************************************************************** 25 // 22 // 26 /// \file electromagnetic/TestEm12/include/Phy << 27 /// \brief Definition of the PhysicsList class << 28 // << 29 // 23 // >> 24 // $Id: PhysicsList.hh,v 1.1 2005/07/22 11:08:48 maire Exp $ >> 25 // GEANT4 tag $Name: geant4-08-00 $ 30 // 26 // 31 //....oooOO0OOooo........oooOO0OOooo........oo 27 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 32 // 28 // 33 // 14.10.02 (V.Ivanchenko) provide modular lis 29 // 14.10.02 (V.Ivanchenko) provide modular list on base of old PhysicsList 34 // 30 // 35 //....oooOO0OOooo........oooOO0OOooo........oo 31 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 36 //....oooOO0OOooo........oooOO0OOooo........oo 32 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 37 33 38 #ifndef PhysicsList_h 34 #ifndef PhysicsList_h 39 #define PhysicsList_h 1 35 #define PhysicsList_h 1 40 36 41 #include "G4VModularPhysicsList.hh" 37 #include "G4VModularPhysicsList.hh" 42 #include "globals.hh" 38 #include "globals.hh" 43 39 44 class StepMax; 40 class StepMax; 45 class PhysicsListMessenger; 41 class PhysicsListMessenger; 46 42 47 //....oooOO0OOooo........oooOO0OOooo........oo 43 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 48 44 49 class PhysicsList : public G4VModularPhysicsLi << 45 class PhysicsList: public G4VModularPhysicsList 50 { 46 { 51 public: 47 public: 52 PhysicsList(); 48 PhysicsList(); 53 ~PhysicsList() override; << 49 ~PhysicsList(); 54 << 55 void ConstructParticle() override; << 56 50 >> 51 void ConstructParticle(); >> 52 >> 53 void SetCuts(); >> 54 void SetCutForGamma(G4double); >> 55 void SetCutForElectron(G4double); >> 56 void SetCutForPositron(G4double); >> 57 57 void AddPhysicsList(const G4String& name); 58 void AddPhysicsList(const G4String& name); 58 void ConstructProcess() override; << 59 void ConstructProcess(); 59 void AddDecay(); << 60 60 void AddStepMax(); << 61 void AddStepMax(); 61 << 62 StepMax* GetStepMaxProcess() {return stepMaxProcess;}; 62 StepMax* GetStepMaxProcess() { return fSte << 63 63 64 private: 64 private: 65 G4String fEmName; << 65 G4double cutForGamma; 66 G4VPhysicsConstructor* fEmPhysicsList = nu << 66 G4double cutForElectron; 67 static G4ThreadLocal StepMax* fStepMaxProc << 67 G4double cutForPositron; 68 << 68 69 PhysicsListMessenger* fMessenger = nullptr << 69 G4String emName; >> 70 G4VPhysicsConstructor* emPhysicsList; >> 71 StepMax* stepMaxProcess; >> 72 >> 73 PhysicsListMessenger* pMessenger; 70 }; 74 }; 71 75 72 //....oooOO0OOooo........oooOO0OOooo........oo 76 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 73 77 74 #endif 78 #endif >> 79 75 80