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

#include <PhysListEmPenelope.hh>

Inheritance diagram for PhysListEmPenelope:
G4VPhysicsConstructor G4VPhysicsConstructor G4VPhysicsConstructor

Public Member Functions

 PhysListEmPenelope (const G4String &name="penelope")
 
 ~PhysListEmPenelope ()
 
virtual void ConstructParticle ()
 
virtual void ConstructProcess ()
 
 PhysListEmPenelope (const G4String &name="penelope")
 
 ~PhysListEmPenelope ()
 
virtual void ConstructParticle ()
 
virtual void ConstructProcess ()
 
 PhysListEmPenelope (const G4String &name="Penelope")
 
 ~PhysListEmPenelope ()
 
virtual void ConstructParticle ()
 
virtual void ConstructProcess ()
 
- Public Member Functions inherited from G4VPhysicsConstructor
 G4VPhysicsConstructor (const G4String &="")
 
 G4VPhysicsConstructor (const G4String &name, G4int physics_type)
 
virtual ~G4VPhysicsConstructor ()
 
void SetPhysicsName (const G4String &="")
 
const G4StringGetPhysicsName () const
 
void SetPhysicsType (G4int)
 
G4int GetPhysicsType () const
 
void SetVerboseLevel (G4int value)
 
G4int GetVerboseLevel () const
 
G4int GetInstanceID () const
 

Additional Inherited Members

- Static Public Member Functions inherited from G4VPhysicsConstructor
static const G4VPCManagerGetSubInstanceManager ()
 
- Protected Member Functions inherited from G4VPhysicsConstructor
G4bool RegisterProcess (G4VProcess *process, G4ParticleDefinition *particle)
 
- Protected Attributes inherited from G4VPhysicsConstructor
G4int verboseLevel
 
G4String namePhysics
 
G4int typePhysics
 
G4ParticleTabletheParticleTable
 
G4int g4vpcInstanceID
 
- Static Protected Attributes inherited from G4VPhysicsConstructor
static G4RUN_DLL G4VPCManager subInstanceManager
 

Detailed Description

Definition at line 42 of file TestEm13/include/PhysListEmPenelope.hh.

Constructor & Destructor Documentation

PhysListEmPenelope::PhysListEmPenelope ( const G4String name = "penelope")

Definition at line 82 of file TestEm13/src/PhysListEmPenelope.cc.

83  : G4VPhysicsConstructor(name)
84 { }
G4VPhysicsConstructor(const G4String &="")
PhysListEmPenelope::~PhysListEmPenelope ( )

Definition at line 88 of file TestEm13/src/PhysListEmPenelope.cc.

89 { }
PhysListEmPenelope::PhysListEmPenelope ( const G4String name = "penelope")
PhysListEmPenelope::~PhysListEmPenelope ( )
PhysListEmPenelope::PhysListEmPenelope ( const G4String name = "Penelope")
PhysListEmPenelope::~PhysListEmPenelope ( )

Member Function Documentation

virtual void PhysListEmPenelope::ConstructParticle ( void  )
inlinevirtual

Implements G4VPhysicsConstructor.

Definition at line 46 of file TestEm18/include/PhysListEmPenelope.hh.

46 { };
virtual void PhysListEmPenelope::ConstructParticle ( void  )
inlinevirtual

Implements G4VPhysicsConstructor.

Definition at line 50 of file TestEm13/include/PhysListEmPenelope.hh.

50 {};
virtual void PhysListEmPenelope::ConstructParticle ( void  )
inlinevirtual

Implements G4VPhysicsConstructor.

Definition at line 50 of file TestEm14/include/PhysListEmPenelope.hh.

50 {};
virtual void PhysListEmPenelope::ConstructProcess ( )
virtual

Implements G4VPhysicsConstructor.

void PhysListEmPenelope::ConstructProcess ( void  )
virtual

Implements G4VPhysicsConstructor.

Definition at line 93 of file TestEm13/src/PhysListEmPenelope.cc.

References G4ProcessManager::AddDiscreteProcess(), G4VEmProcess::AddEmModel(), G4VEnergyLossProcess::AddEmModel(), G4ProcessManager::AddProcess(), aParticleIterator, G4ParticleDefinition::GetParticleName(), G4ParticleDefinition::GetPDGCharge(), G4ParticleDefinition::GetProcessManager(), python.hepunit::GeV, G4ParticleDefinition::IsShortLived(), and G4VEmModel::SetHighEnergyLimit().

94 {
95  // Add standard EM Processes
96 
97  aParticleIterator->reset();
98  while( (*aParticleIterator)() ){
99  G4ParticleDefinition* particle = aParticleIterator->value();
100  G4ProcessManager* pmanager = particle->GetProcessManager();
101  G4String particleName = particle->GetParticleName();
102 
103  //Applicability range for Penelope models
104  //for higher energies, the Standard models are used
105  G4double highEnergyLimit = 1*GeV;
106 
107  if (particleName == "gamma") {
108  // gamma
109 
112  photModel = new G4PenelopePhotoElectricModel();
113  photModel->SetHighEnergyLimit(highEnergyLimit);
114  phot->AddEmModel(0, photModel);
115  pmanager->AddDiscreteProcess(phot);
116 
119  comptModel = new G4PenelopeComptonModel();
120  comptModel->SetHighEnergyLimit(highEnergyLimit);
121  compt->AddEmModel(0, comptModel);
122  pmanager->AddDiscreteProcess(compt);
123 
124  G4GammaConversion* conv = new G4GammaConversion();
126  convModel = new G4PenelopeGammaConversionModel();
127  convModel->SetHighEnergyLimit(highEnergyLimit);
128  conv->AddEmModel(0, convModel);
129  pmanager->AddDiscreteProcess(conv);
130 
133  raylModel = new G4PenelopeRayleighModel();
134  raylModel->SetHighEnergyLimit(highEnergyLimit);
135  rayl->AddEmModel(0, raylModel);
136  pmanager->AddDiscreteProcess(rayl);
137 
138  } else if (particleName == "e-") {
139  //electron
140 
141  G4eIonisation* eIoni = new G4eIonisation();
143  eIoniModel = new G4PenelopeIonisationModel();
144  eIoniModel->SetHighEnergyLimit(highEnergyLimit);
145  eIoni->AddEmModel(0, eIoniModel, new G4UniversalFluctuation() );
146  pmanager->AddProcess(eIoni, -1,-1, 1);
147 
148  G4eBremsstrahlung* eBrem = new G4eBremsstrahlung();
150  eBremModel = new G4PenelopeBremsstrahlungModel();
151  eBremModel->SetHighEnergyLimit(highEnergyLimit);
152  eBrem->AddEmModel(0, eBremModel);
153  pmanager->AddProcess(eBrem, -1,-1, 2);
154 
155  } else if (particleName == "e+") {
156  //positron
157  G4eIonisation* eIoni = new G4eIonisation();
159  eIoniModel = new G4PenelopeIonisationModel();
160  eIoniModel->SetHighEnergyLimit(highEnergyLimit);
161  eIoni->AddEmModel(0, eIoniModel, new G4UniversalFluctuation() );
162  pmanager->AddProcess(eIoni, -1,-1, 1);
163 
164  G4eBremsstrahlung* eBrem = new G4eBremsstrahlung();
166  eBremModel = new G4PenelopeBremsstrahlungModel();
167  eBremModel->SetHighEnergyLimit(highEnergyLimit);
168  eBrem->AddEmModel(0, eBremModel);
169  pmanager->AddProcess(eBrem, -1,-1, 2);
170 
173  eAnniModel = new G4PenelopeAnnihilationModel();
174  eAnniModel->SetHighEnergyLimit(highEnergyLimit);
175  eAnni->AddEmModel(0, eAnniModel);
176  pmanager->AddProcess(eAnni, 0,-1, 3);
177 
178  } else if( particleName == "mu+" ||
179  particleName == "mu-" ) {
180  //muon
181  pmanager->AddProcess(new G4MuIonisation, -1,-1, 1);
182  pmanager->AddProcess(new G4MuBremsstrahlung, -1,-1, 2);
183  pmanager->AddProcess(new G4MuPairProduction, -1,-1, 3);
184 
185  } else if( particleName == "alpha" || particleName == "GenericIon" ) {
186  pmanager->AddProcess(new G4ionIonisation, -1,-1, 1);
187 
188  } else if ((!particle->IsShortLived()) &&
189  (particle->GetPDGCharge() != 0.0) &&
190  (particle->GetParticleName() != "chargedgeantino")) {
191  //all others charged particles except geantino
192  pmanager->AddProcess(new G4hIonisation, -1,-1, 1);
193  }
194  }
195 }
G4int AddDiscreteProcess(G4VProcess *aProcess, G4int ord=ordDefault)
G4ProcessManager * GetProcessManager() const
const G4String & GetParticleName() const
void SetHighEnergyLimit(G4double)
Definition: G4VEmModel.hh:683
#define aParticleIterator
G4int AddProcess(G4VProcess *aProcess, G4int ordAtRestDoIt=ordInActive, G4int ordAlongSteptDoIt=ordInActive, G4int ordPostStepDoIt=ordInActive)
void AddEmModel(G4int, G4VEmModel *, G4VEmFluctuationModel *fluc=0, const G4Region *region=0)
void AddEmModel(G4int, G4VEmModel *, const G4Region *region=0)
double G4double
Definition: G4Types.hh:76
G4double GetPDGCharge() const
virtual void PhysListEmPenelope::ConstructProcess ( )
virtual

Implements G4VPhysicsConstructor.


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