Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
exrdmPhysicsList.hh
Go to the documentation of this file.
1 //
2 // ********************************************************************
3 // * License and Disclaimer *
4 // * *
5 // * The Geant4 software is copyright of the Copyright Holders of *
6 // * the Geant4 Collaboration. It is provided under the terms and *
7 // * conditions of the Geant4 Software License, included in the file *
8 // * LICENSE and available at http://cern.ch/geant4/license . These *
9 // * include a list of copyright holders. *
10 // * *
11 // * Neither the authors of this software system, nor their employing *
12 // * institutes,nor the agencies providing financial support for this *
13 // * work make any representation or warranty, express or implied, *
14 // * regarding this software system or assume any liability for its *
15 // * use. Please see the license in the file LICENSE and URL above *
16 // * for the full disclaimer and the limitation of liability. *
17 // * *
18 // * This code implementation is the result of the scientific and *
19 // * technical work of the GEANT4 collaboration. *
20 // * By using, copying, modifying or distributing the software (or *
21 // * any work based on the software) you agree to acknowledge its *
22 // * use in resulting scientific publications, and indicate your *
23 // * acceptance of all terms of the Geant4 Software license. *
24 // ********************************************************************
25 //
26 // $Id: exrdmPhysicsList.hh 68007 2013-03-13 11:28:03Z gcosmo $
27 //
28 /// \file radioactivedecay/rdecay02/include/exrdmPhysicsList.hh
29 /// \brief Definition of the exrdmPhysicsList class
30 //
31 
32 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
33 
34 #ifndef exrdmPhysicsList_h
35 #define exrdmPhysicsList_h 1
36 
37 #include "G4VModularPhysicsList.hh"
38 #include "globals.hh"
39 #include <vector>
40 
43 class G4ProductionCuts;
44 
45 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
46 
48 {
49 public:
51  virtual ~exrdmPhysicsList();
52 
53  virtual void ConstructParticle();
54 
55  virtual void SetCuts();
59 
60  void SelectPhysicsList(const G4String& name);
61  virtual void ConstructProcess();
62 
63  void SetTargetCut(G4double val);
64  void SetDetectorCut(G4double val);
65 
66 private:
67 
68  void AddExtraBuilders(G4bool flagHP);
69 
70  // hide assignment operator
71  exrdmPhysicsList & operator=(const exrdmPhysicsList &right);
73 
74  G4double fCutForGamma;
75  G4double fCutForElectron;
76  G4double fCutForPositron;
77 
78  G4VPhysicsConstructor* fEmPhysicsList;
79  G4VPhysicsConstructor* fRaddecayList;
80  G4VPhysicsConstructor* fParticleList;
81  G4VPhysicsConstructor* fHadPhysicsList;
82 
83  std::vector<G4VPhysicsConstructor*> fHadronPhys;
84  G4int fNhadcomp;
85 
86  exrdmPhysicsListMessenger* fPMessenger;
87  G4ProductionCuts* fDetectorCuts;
88  G4ProductionCuts* fTargetCuts;
89 
90 };
91 
92 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
93 
94 #endif
95 
virtual void SetCuts()
const XML_Char * name
virtual ~exrdmPhysicsList()
int G4int
Definition: G4Types.hh:78
void SetTargetCut(G4double val)
void SetCutForElectron(G4double)
bool G4bool
Definition: G4Types.hh:79
virtual void ConstructParticle()
void SetDetectorCut(G4double val)
void SetCutForGamma(G4double)
virtual void ConstructProcess()
void SetCutForPositron(G4double)
double G4double
Definition: G4Types.hh:76
void SelectPhysicsList(const G4String &name)