Geant4  10.03.p01
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
G4EmDNAPhysics_option4 Class Reference

#include <G4EmDNAPhysics_option4.hh>

Inheritance diagram for G4EmDNAPhysics_option4:
Collaboration diagram for G4EmDNAPhysics_option4:

Public Member Functions

 G4EmDNAPhysics_option4 (G4int ver=1, const G4String &name="")
 
virtual ~G4EmDNAPhysics_option4 ()
 
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)
 
G4ParticleTable::G4PTblDicIteratorGetParticleIterator () const
 
- 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 37 of file G4EmDNAPhysics_option4.hh.

Constructor & Destructor Documentation

G4EmDNAPhysics_option4::G4EmDNAPhysics_option4 ( G4int  ver = 1,
const G4String name = "" 
)
explicit

Definition at line 94 of file G4EmDNAPhysics_option4.cc.

95  : G4VPhysicsConstructor("G4EmDNAPhysics_option4"), verbose(ver)
96 {
98  param->SetDefaults();
99  param->SetFluo(true);
100  param->SetAuger(true);
101  param->SetAugerCascade(true);
102  param->SetDeexcitationIgnoreCut(true);
103 
105 }
void SetDeexcitationIgnoreCut(G4bool val)
void SetAuger(G4bool val)
void SetAugerCascade(G4bool val)
static G4EmParameters * Instance()
G4VPhysicsConstructor(const G4String &="")
void SetFluo(G4bool val)

Here is the call graph for this function:

G4EmDNAPhysics_option4::~G4EmDNAPhysics_option4 ( )
virtual

Definition at line 109 of file G4EmDNAPhysics_option4.cc.

110 {}

Member Function Documentation

void G4EmDNAPhysics_option4::ConstructParticle ( )
virtual

Implements G4VPhysicsConstructor.

Definition at line 114 of file G4EmDNAPhysics_option4.cc.

115 {
116 // bosons
117  G4Gamma::Gamma();
118 
119 // leptons
122 
123 // baryons
125 
127 
128  G4DNAGenericIonsManager * genericIonsManager;
129  genericIonsManager=G4DNAGenericIonsManager::Instance();
130  genericIonsManager->GetIon("alpha++");
131  genericIonsManager->GetIon("alpha+");
132  genericIonsManager->GetIon("helium");
133  genericIonsManager->GetIon("hydrogen");
134 
135 }
static G4GenericIon * GenericIonDefinition()
Definition: G4GenericIon.cc:88
static G4Proton * Proton()
Definition: G4Proton.cc:93
static G4DNAGenericIonsManager * Instance(void)
static G4Gamma * Gamma()
Definition: G4Gamma.cc:86
static G4Positron * Positron()
Definition: G4Positron.cc:94
static G4Electron * Electron()
Definition: G4Electron.cc:94
G4ParticleDefinition * GetIon(const G4String &name)

Here is the call graph for this function:

void G4EmDNAPhysics_option4::ConstructProcess ( )
virtual

Implements G4VPhysicsConstructor.

Definition at line 139 of file G4EmDNAPhysics_option4.cc.

140 {
141  if(verbose > 1) {
142  G4cout << "### " << GetPhysicsName() << " Construct Processes " << G4endl;
143  }
145 
146  auto myParticleIterator=GetParticleIterator();
147  myParticleIterator->reset();
148  while( (*myParticleIterator)() )
149  {
150  G4ParticleDefinition* particle = myParticleIterator->value();
151  G4String particleName = particle->GetParticleName();
152 
153  if (particleName == "e-") {
154 
155  // *** Solvation ***
156 
157  G4DNAElectronSolvation* solvation =
158  new G4DNAElectronSolvation("e-_G4DNAElectronSolvation");
161  therm->SetHighEnergyLimit(10.*eV); // limit of the Uehara's model
162  solvation->SetEmModel(therm);
163  ph->RegisterProcess(solvation, particle);
164 
165  // *** Elastic scattering (two alternative models available) ***
166 
167  G4DNAElastic* theDNAElasticProcess = new G4DNAElastic("e-_G4DNAElastic");
168 
169  //theDNAElasticProcess->SetEmModel(new G4DNAChampionElasticModel());
170  theDNAElasticProcess->SetEmModel(new G4DNAUeharaScreenedRutherfordElasticModel());
171  //theDNAElasticProcess->SetEmModel(new G4DNAScreenedRutherfordElasticModel());
172 
173  ph->RegisterProcess(theDNAElasticProcess, particle);
174 
175  // *** Excitation ***
176  G4DNAExcitation* theDNAExcitationProcess = new G4DNAExcitation("e-_G4DNAExcitation");
177  theDNAExcitationProcess->SetEmModel(new G4DNAEmfietzoglouExcitationModel());
178  ph->RegisterProcess(theDNAExcitationProcess, particle);
179 
180  // *** Ionisation ***
181  G4DNAIonisation* theDNAIonisationProcess = new G4DNAIonisation("e-_G4DNAIonisation");
182  theDNAIonisationProcess->SetEmModel(new G4DNAEmfietzoglouIonisationModel());
183  ph->RegisterProcess(theDNAIonisationProcess, particle);
184 
185  // *** Vibrational excitation ***
186  //ph->RegisterProcess(new G4DNAVibExcitation("e-_G4DNAVibExcitation"), particle);
187 
188  // *** Attachment ***
189  //ph->RegisterProcess(new G4DNAAttachment("e-_G4DNAAttachment"), particle);
190 
191  } else if ( particleName == "proton" ) {
192  ph->RegisterProcess(new G4DNAExcitation("proton_G4DNAExcitation"), particle);
193  ph->RegisterProcess(new G4DNAIonisation("proton_G4DNAIonisation"), particle);
194  ph->RegisterProcess(new G4DNAChargeDecrease("proton_G4DNAChargeDecrease"), particle);
195 
196  } else if ( particleName == "hydrogen" ) {
197  ph->RegisterProcess(new G4DNAExcitation("hydrogen_G4DNAExcitation"), particle);
198  ph->RegisterProcess(new G4DNAIonisation("hydrogen_G4DNAIonisation"), particle);
199  ph->RegisterProcess(new G4DNAChargeIncrease("hydrogen_G4DNAChargeIncrease"), particle);
200 
201  } else if ( particleName == "alpha" ) {
202  ph->RegisterProcess(new G4DNAExcitation("alpha_G4DNAExcitation"), particle);
203  ph->RegisterProcess(new G4DNAIonisation("alpha_G4DNAIonisation"), particle);
204  ph->RegisterProcess(new G4DNAChargeDecrease("alpha_G4DNAChargeDecrease"), particle);
205 
206  } else if ( particleName == "alpha+" ) {
207  ph->RegisterProcess(new G4DNAExcitation("alpha+_G4DNAExcitation"), particle);
208  ph->RegisterProcess(new G4DNAIonisation("alpha+_G4DNAIonisation"), particle);
209  ph->RegisterProcess(new G4DNAChargeDecrease("alpha+_G4DNAChargeDecrease"), particle);
210  ph->RegisterProcess(new G4DNAChargeIncrease("alpha+_G4DNAChargeIncrease"), particle);
211 
212  } else if ( particleName == "helium" ) {
213  ph->RegisterProcess(new G4DNAExcitation("helium_G4DNAExcitation"), particle);
214  ph->RegisterProcess(new G4DNAIonisation("helium_G4DNAIonisation"), particle);
215  ph->RegisterProcess(new G4DNAChargeIncrease("helium_G4DNAChargeIncrease"), particle);
216 
217  // Extension to HZE proposed by Z. Francis
218 
219  } else if ( particleName == "GenericIon" ) {
220  ph->RegisterProcess(new G4DNAIonisation("GenericIon_G4DNAIonisation"), particle);
221  }
222 
223  // Warning : the following particles and processes are needed by EM Physics builders
224  // They are taken from the default Livermore Physics list
225  // These particles are currently not handled by Geant4-DNA
226 
227  // e+
228 
229  else if (particleName == "e+") {
230 
231  // Identical to G4EmStandardPhysics_option3
232 
235  G4eIonisation* eIoni = new G4eIonisation();
236  eIoni->SetStepFunction(0.2, 100*um);
237 
238  ph->RegisterProcess(msc, particle);
239  ph->RegisterProcess(eIoni, particle);
240  ph->RegisterProcess(new G4eBremsstrahlung(), particle);
241  ph->RegisterProcess(new G4eplusAnnihilation(), particle);
242 
243  } else if (particleName == "gamma") {
244 
245  G4double LivermoreHighEnergyLimit = GeV;
246 
247  G4PhotoElectricEffect* thePhotoElectricEffect = new G4PhotoElectricEffect();
248  G4LivermorePhotoElectricModel* theLivermorePhotoElectricModel =
250  theLivermorePhotoElectricModel->SetHighEnergyLimit(LivermoreHighEnergyLimit);
251  thePhotoElectricEffect->AddEmModel(0, theLivermorePhotoElectricModel);
252  ph->RegisterProcess(thePhotoElectricEffect, particle);
253 
254  G4ComptonScattering* theComptonScattering = new G4ComptonScattering();
255  G4LivermoreComptonModel* theLivermoreComptonModel =
257  theLivermoreComptonModel->SetHighEnergyLimit(LivermoreHighEnergyLimit);
258  theComptonScattering->AddEmModel(0, theLivermoreComptonModel);
259  ph->RegisterProcess(theComptonScattering, particle);
260 
261  G4GammaConversion* theGammaConversion = new G4GammaConversion();
262  G4LivermoreGammaConversionModel* theLivermoreGammaConversionModel =
264  theLivermoreGammaConversionModel->SetHighEnergyLimit(LivermoreHighEnergyLimit);
265  theGammaConversion->AddEmModel(0, theLivermoreGammaConversionModel);
266  ph->RegisterProcess(theGammaConversion, particle);
267 
268  G4RayleighScattering* theRayleigh = new G4RayleighScattering();
269  G4LivermoreRayleighModel* theRayleighModel = new G4LivermoreRayleighModel();
270  theRayleighModel->SetHighEnergyLimit(LivermoreHighEnergyLimit);
271  theRayleigh->AddEmModel(0, theRayleighModel);
272  ph->RegisterProcess(theRayleigh, particle);
273  }
274 
275  // Warning : end of particles and processes are needed by EM Physics builders
276 
277  }
278 
279  // Deexcitation
280  //
283 }
static G4LossTableManager * Instance()
void SetStepFunction(G4double v1, G4double v2, G4bool lock=true)
const G4String & GetParticleName() const
void SetHighEnergyLimit(G4double)
Definition: G4VEmModel.hh:724
G4ParticleTable::G4PTblDicIterator * GetParticleIterator() const
void SetEmModel(G4VEmModel *, G4int index=1)
G4GLOB_DLL std::ostream G4cout
static constexpr double um
Definition: G4SIunits.hh:113
G4bool RegisterProcess(G4VProcess *process, G4ParticleDefinition *particle)
static constexpr double eV
Definition: G4SIunits.hh:215
const G4String & GetPhysicsName() const
void AddEmModel(G4int, G4VEmModel *, const G4Region *region=nullptr)
G4TDNAOneStepThermalizationModel< DNA::Penetration::Meesungnoen2002 > G4DNAOneStepThermalizationModel
static G4PhysicsListHelper * GetPhysicsListHelper()
static constexpr double GeV
Definition: G4SIunits.hh:217
#define G4endl
Definition: G4ios.hh:61
double G4double
Definition: G4Types.hh:76
void SetAtomDeexcitation(G4VAtomDeexcitation *)
void SetStepLimitType(G4MscStepLimitType val)

Here is the call graph for this function:


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