Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Public Member Functions | Protected Member Functions
G4HumanPhantomPhysicsList Class Reference

#include <G4HumanPhantomPhysicsList.hh>

Inheritance diagram for G4HumanPhantomPhysicsList:
G4VModularPhysicsList G4VUserPhysicsList

Public Member Functions

 G4HumanPhantomPhysicsList ()
 
 ~G4HumanPhantomPhysicsList ()
 
- Public Member Functions inherited from G4VModularPhysicsList
 G4VModularPhysicsList ()
 
virtual ~G4VModularPhysicsList ()
 
void RegisterPhysics (G4VPhysicsConstructor *)
 
const G4VPhysicsConstructorGetPhysics (G4int index) const
 
const G4VPhysicsConstructorGetPhysics (const G4String &name) const
 
const G4VPhysicsConstructorGetPhysicsWithType (G4int physics_type) const
 
void ReplacePhysics (G4VPhysicsConstructor *)
 
void RemovePhysics (G4VPhysicsConstructor *)
 
void RemovePhysics (G4int type)
 
void RemovePhysics (const G4String &name)
 
void SetVerboseLevel (G4int value)
 
G4int GetVerboseLevel () const
 
G4int GetInstanceID () const
 
- Public Member Functions inherited from G4VUserPhysicsList
 G4VUserPhysicsList ()
 
virtual ~G4VUserPhysicsList ()
 
 G4VUserPhysicsList (const G4VUserPhysicsList &)
 
G4VUserPhysicsListoperator= (const G4VUserPhysicsList &)
 
void Construct ()
 
void UseCoupledTransportation (G4bool vl=true)
 
void SetDefaultCutValue (G4double newCutValue)
 
G4double GetDefaultCutValue () const
 
void BuildPhysicsTable ()
 
void PreparePhysicsTable (G4ParticleDefinition *)
 
void BuildPhysicsTable (G4ParticleDefinition *)
 
G4bool StorePhysicsTable (const G4String &directory=".")
 
G4bool IsPhysicsTableRetrieved () const
 
G4bool IsStoredInAscii () const
 
const G4StringGetPhysicsTableDirectory () const
 
void SetPhysicsTableRetrieved (const G4String &directory="")
 
void SetStoredInAscii ()
 
void ResetPhysicsTableRetrieved ()
 
void ResetStoredInAscii ()
 
void DumpList () const
 
void DumpCutValuesTable (G4int flag=1)
 
void DumpCutValuesTableIfRequested ()
 
void SetVerboseLevel (G4int value)
 
G4int GetVerboseLevel () const
 
void SetCutsWithDefault ()
 
void SetCutValue (G4double aCut, const G4String &pname)
 
G4double GetCutValue (const G4String &pname) const
 
void SetCutValue (G4double aCut, const G4String &pname, const G4String &rname)
 
void SetParticleCuts (G4double cut, G4ParticleDefinition *particle, G4Region *region=0)
 
void SetParticleCuts (G4double cut, const G4String &particleName, G4Region *region=0)
 
void SetCutsForRegion (G4double aCut, const G4String &rname)
 
void ResetCuts ()
 obsolete methods More...
 
void SetApplyCuts (G4bool value, const G4String &name)
 
G4bool GetApplyCuts (const G4String &name) const
 
void RemoveProcessManager ()
 
void AddProcessManager (G4ParticleDefinition *newParticle, G4ProcessManager *newManager=0)
 
void CheckParticleList ()
 
void DisableCheckParticleList ()
 
G4int GetInstanceID () const
 
void InitializeWorker ()
 

Protected Member Functions

void ConstructParticle ()
 
void ConstructProcess ()
 
void SetCuts ()
 
- Protected Member Functions inherited from G4VModularPhysicsList
 G4VModularPhysicsList (const G4VModularPhysicsList &)
 
G4VModularPhysicsListoperator= (const G4VModularPhysicsList &)
 
- Protected Member Functions inherited from G4VUserPhysicsList
void AddTransportation ()
 
G4bool RegisterProcess (G4VProcess *process, G4ParticleDefinition *particle)
 
void BuildIntegralPhysicsTable (G4VProcess *, G4ParticleDefinition *)
 
virtual void RetrievePhysicsTable (G4ParticleDefinition *, const G4String &directory, G4bool ascii=false)
 
void InitializeProcessManager ()
 

Additional Inherited Members

- Static Public Member Functions inherited from G4VModularPhysicsList
static const G4VMPLManagerGetSubInstanceManager ()
 
- Static Public Member Functions inherited from G4VUserPhysicsList
static const G4VUPLManagerGetSubInstanceManager ()
 
- Protected Types inherited from G4VModularPhysicsList
typedef
G4VMPLData::G4PhysConstVectorData 
G4PhysConstVector
 
- Protected Attributes inherited from G4VModularPhysicsList
G4int verboseLevel
 
G4int g4vmplInstanceID
 
- Protected Attributes inherited from G4VUserPhysicsList
G4ParticleTabletheParticleTable
 
G4int verboseLevel
 
G4double defaultCutValue
 
G4bool isSetDefaultCutValue
 
G4ProductionCutsTablefCutsTable
 
G4bool fRetrievePhysicsTable
 
G4bool fStoredInAscii
 
G4bool fIsCheckedForRetrievePhysicsTable
 
G4bool fIsRestoredCutValues
 
G4String directoryPhysicsTable
 
G4bool fDisableCheckParticleList
 
G4int g4vuplInstanceID
 
- Static Protected Attributes inherited from G4VModularPhysicsList
static G4RUN_DLL G4VMPLManager G4VMPLsubInstanceManager
 
- Static Protected Attributes inherited from G4VUserPhysicsList
static G4RUN_DLL G4VUPLManager subInstanceManager
 

Detailed Description

Definition at line 43 of file G4HumanPhantomPhysicsList.hh.

Constructor & Destructor Documentation

G4HumanPhantomPhysicsList::G4HumanPhantomPhysicsList ( )

Definition at line 52 of file G4HumanPhantomPhysicsList.cc.

References G4VModularPhysicsList::SetVerboseLevel().

53 {
54  SetVerboseLevel(1);
55  emPhysicsList = new G4EmStandardPhysics_option4(1);
56 
57 // Alternatively you can substitute this physics list
58 // with the LowEnergy Livermore or LowEnergy Penelope:
59 // emPhysicsList = new G4EmLivermorePhysics();
60 // Low Energy based on Livermore Evaluated Data Libraries
61 //
62 // Penelope physics
63 //emPhysicsList = new G4EmPenelopePhysics();
64 }
void SetVerboseLevel(G4int value)
G4HumanPhantomPhysicsList::~G4HumanPhantomPhysicsList ( )

Definition at line 66 of file G4HumanPhantomPhysicsList.cc.

67 {
68 delete emPhysicsList;
69 }

Member Function Documentation

void G4HumanPhantomPhysicsList::ConstructParticle ( void  )
protectedvirtual

Reimplemented from G4VModularPhysicsList.

Definition at line 71 of file G4HumanPhantomPhysicsList.cc.

72 {
73  emPhysicsList -> ConstructParticle();
74 }
void G4HumanPhantomPhysicsList::ConstructProcess ( void  )
protectedvirtual

Reimplemented from G4VModularPhysicsList.

Definition at line 76 of file G4HumanPhantomPhysicsList.cc.

References G4VUserPhysicsList::AddTransportation().

77 {
79  emPhysicsList -> ConstructProcess();
80 }
void G4HumanPhantomPhysicsList::SetCuts ( )
protectedvirtual

Reimplemented from G4VUserPhysicsList.

Definition at line 82 of file G4HumanPhantomPhysicsList.cc.

References G4VUserPhysicsList::defaultCutValue, G4VUserPhysicsList::DumpCutValuesTable(), python.hepunit::eV, G4ProductionCutsTable::GetProductionCutsTable(), python.hepunit::GeV, python.hepunit::mm, G4VUserPhysicsList::SetCutValue(), G4ProductionCutsTable::SetEnergyRange(), and G4VModularPhysicsList::verboseLevel.

83 {
84  // The production threshold is fixed to 0.1 mm for all the particles
85  // Secondary particles with a range bigger than 0.1 mm
86  // are generated; otherwise their energy is considered deposited locally
87 
88  defaultCutValue = 1. * mm;
89 
90  const G4double cutForGamma = defaultCutValue;
91  const G4double cutForElectron = defaultCutValue;
92  const G4double cutForPositron = defaultCutValue;
93 
94  SetCutValue(cutForGamma, "gamma");
95  SetCutValue(cutForElectron, "e-");
96  SetCutValue(cutForPositron, "e+");
97 
98  // Set the secondary production cut lower than 990. eV
99  // Very important for high precision of lowenergy processes at low energies
100 
101  G4double lowLimit = 250. * eV;
102  G4double highLimit = 100. * GeV;
104 
106 }
void SetCutValue(G4double aCut, const G4String &pname)
void SetEnergyRange(G4double lowedge, G4double highedge)
void DumpCutValuesTable(G4int flag=1)
static G4ProductionCutsTable * GetProductionCutsTable()
double G4double
Definition: G4Types.hh:76

The documentation for this class was generated from the following files: