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

#include <B03PhysicsList.hh>

Inheritance diagram for B03PhysicsList:
G4VUserPhysicsList

Public Member Functions

 B03PhysicsList ()
 
virtual ~B03PhysicsList ()
 
void AddParallelWorldName (G4String &pname)
 
void AddBiasing (G4GeometrySampler *mgs, G4String &pname)
 
- 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

virtual void ConstructParticle ()
 
virtual void ConstructProcess ()
 
virtual void SetCuts ()
 
virtual void ConstructGeneral ()
 
virtual void ConstructEM ()
 
virtual void ConstructHad ()
 
virtual void ConstructLeptHad ()
 
void AddScoringProcess ()
 
void AddBiasingProcess ()
 
void ConstructAllBosons ()
 
void ConstructAllLeptons ()
 
void ConstructAllMesons ()
 
void ConstructAllBaryons ()
 
void ConstructAllIons ()
 
void ConstructAllShortLiveds ()
 
- 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 G4VUserPhysicsList
static const G4VUPLManagerGetSubInstanceManager ()
 
- 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 G4VUserPhysicsList
static G4RUN_DLL G4VUPLManager subInstanceManager
 

Detailed Description

Definition at line 41 of file B03PhysicsList.hh.

Constructor & Destructor Documentation

B03PhysicsList::B03PhysicsList ( )

Definition at line 56 of file B03PhysicsList.cc.

References G4VUserPhysicsList::SetVerboseLevel().

57 {
58  fParaWorldName.clear();
59  SetVerboseLevel(1);
60 }
void SetVerboseLevel(G4int value)
B03PhysicsList::~B03PhysicsList ( )
virtual

Definition at line 64 of file B03PhysicsList.cc.

65 {
66  fParaWorldName.clear();
67 }

Member Function Documentation

void B03PhysicsList::AddBiasing ( G4GeometrySampler mgs,
G4String pname 
)
inline

Definition at line 51 of file B03PhysicsList.hh.

References eplot::pname.

52  {fGeomSampler = mgs; fBiasWorldName = pname;}
string pname
Definition: eplot.py:33
void B03PhysicsList::AddBiasingProcess ( )
protected

Definition at line 673 of file B03PhysicsList.cc.

References G4GeometrySampler::AddProcess(), G4GeometrySampler::Configure(), G4cout, G4endl, G4IStore::GetInstance(), G4IStore::GetParallelWorldVolumePointer(), G4GeometrySampler::PrepareImportanceSampling(), G4GeometrySampler::SetParallel(), and G4GeometrySampler::SetWorld().

Referenced by ConstructProcess().

673  {
674 
675 
676  G4cout << " Preparing Importance Sampling with GhostWorld "
677  << fBiasWorldName << G4endl;
678  fGeomSampler->SetParallel(true); // parallelworld
679  G4IStore* iStore = G4IStore::GetInstance(fBiasWorldName);
680  fGeomSampler->SetWorld(iStore->GetParallelWorldVolumePointer());
681  // fGeomSampler->PrepareImportanceSampling(G4IStore::
682  // GetInstance(fBiasWorldName), 0);
683  static G4bool first = true;
684  if(first) {
685  fGeomSampler->PrepareImportanceSampling(iStore, 0);
686 
687  fGeomSampler->Configure();
688  G4cout << " GeomSampler Configured!!! " << G4endl;
689  first = false;
690  }
691 
692 #ifdef G4MULTITHREADED
693  fGeomSampler->AddProcess();
694 #else
695  G4cout << " Running in singlethreaded mode!!! " << G4endl;
696 #endif
697 
698 }
void SetWorld(const G4VPhysicalVolume *world)
void SetParallel(G4bool paraflag)
virtual const G4VPhysicalVolume * GetParallelWorldVolumePointer() const
Definition: G4IStore.cc:94
G4GLOB_DLL std::ostream G4cout
bool G4bool
Definition: G4Types.hh:79
virtual void AddProcess()
static G4IStore * GetInstance()
Definition: G4IStore.cc:211
#define G4endl
Definition: G4ios.hh:61
virtual void Configure()
virtual void PrepareImportanceSampling(G4VIStore *istore, const G4VImportanceAlgorithm *ialg)
void B03PhysicsList::AddParallelWorldName ( G4String pname)
inline

Definition at line 48 of file B03PhysicsList.hh.

Referenced by main().

49  {fParaWorldName.push_back(pname);}
void B03PhysicsList::AddScoringProcess ( )
protected

Definition at line 643 of file B03PhysicsList.cc.

References G4ProcessManager::AddProcess(), G4ParticleDefinition::GetProcessManager(), idxAlongStep, idxAtRest, idxPostStep, G4ParticleDefinition::IsShortLived(), G4ParallelWorldScoringProcess::SetParallelWorld(), G4ProcessManager::SetProcessOrdering(), G4ProcessManager::SetProcessOrderingToLast(), and theParticleIterator.

Referenced by ConstructProcess().

643  {
644 
645  G4int npw = fParaWorldName.size();
646  for ( G4int i = 0; i < npw; i++){
647  G4ParallelWorldScoringProcess* theParallelWorldScoringProcess
648  = new G4ParallelWorldScoringProcess("ParaWorldScoringProc");
649  theParallelWorldScoringProcess->SetParallelWorld(fParaWorldName[i]);
650 
651  theParticleIterator->reset();
652  while( (*theParticleIterator)() ){
653  G4ParticleDefinition* particle = theParticleIterator->value();
654  if ( !particle->IsShortLived() ){
655  G4ProcessManager* pmanager = particle->GetProcessManager();
656  pmanager->AddProcess(theParallelWorldScoringProcess);
657  pmanager->SetProcessOrderingToLast(theParallelWorldScoringProcess
658  ,idxAtRest);
659  pmanager->SetProcessOrdering(theParallelWorldScoringProcess
660  ,idxAlongStep,1);
661  pmanager->SetProcessOrderingToLast(theParallelWorldScoringProcess
662  ,idxPostStep);
663  }
664  }
665  }
666 
667 }
G4ProcessManager * GetProcessManager() const
int G4int
Definition: G4Types.hh:78
G4int AddProcess(G4VProcess *aProcess, G4int ordAtRestDoIt=ordInActive, G4int ordAlongSteptDoIt=ordInActive, G4int ordPostStepDoIt=ordInActive)
void SetParallelWorld(G4String parallelWorldName)
void SetProcessOrdering(G4VProcess *aProcess, G4ProcessVectorDoItIndex idDoIt, G4int ordDoIt=ordDefault)
void SetProcessOrderingToLast(G4VProcess *aProcess, G4ProcessVectorDoItIndex idDoIt)
#define theParticleIterator
void B03PhysicsList::ConstructAllBaryons ( )
protected

Definition at line 115 of file B03PhysicsList.cc.

References G4BaryonConstructor::ConstructParticle().

Referenced by ConstructParticle().

116 {
117  // Construct all barions
118  G4BaryonConstructor pConstructor;
119  pConstructor.ConstructParticle();
120 }
static void ConstructParticle()
void B03PhysicsList::ConstructAllBosons ( )
protected

Definition at line 88 of file B03PhysicsList.cc.

References G4BosonConstructor::ConstructParticle().

Referenced by ConstructParticle().

89 {
90  // Construct all bosons
91  G4BosonConstructor pConstructor;
92  pConstructor.ConstructParticle();
93 }
static void ConstructParticle()
void B03PhysicsList::ConstructAllIons ( )
protected

Definition at line 124 of file B03PhysicsList.cc.

References G4IonConstructor::ConstructParticle().

Referenced by ConstructParticle().

125 {
126  // Construct light ions
127  G4IonConstructor pConstructor;
128  pConstructor.ConstructParticle();
129 }
static void ConstructParticle()
void B03PhysicsList::ConstructAllLeptons ( )
protected

Definition at line 97 of file B03PhysicsList.cc.

References G4LeptonConstructor::ConstructParticle().

Referenced by ConstructParticle().

98 {
99  // Construct all leptons
100  G4LeptonConstructor pConstructor;
101  pConstructor.ConstructParticle();
102 }
static void ConstructParticle()
void B03PhysicsList::ConstructAllMesons ( )
protected

Definition at line 106 of file B03PhysicsList.cc.

References G4MesonConstructor::ConstructParticle().

Referenced by ConstructParticle().

107 {
108  // Construct all mesons
109  G4MesonConstructor pConstructor;
110  pConstructor.ConstructParticle();
111 }
static void ConstructParticle()
void B03PhysicsList::ConstructAllShortLiveds ( )
protected

Definition at line 133 of file B03PhysicsList.cc.

References G4ShortLivedConstructor::ConstructParticle().

Referenced by ConstructParticle().

134 {
135  // Construct resonaces and quarks
136  G4ShortLivedConstructor pConstructor;
137  pConstructor.ConstructParticle();
138 }
void B03PhysicsList::ConstructEM ( )
protectedvirtual

Definition at line 173 of file B03PhysicsList.cc.

References G4ProcessManager::AddDiscreteProcess(), G4ProcessManager::AddProcess(), G4ParticleDefinition::GetParticleName(), G4ParticleDefinition::GetPDGCharge(), G4ParticleDefinition::GetProcessManager(), G4ParticleDefinition::IsShortLived(), and theParticleIterator.

Referenced by ConstructProcess().

174 {
175  theParticleIterator->reset();
176  while( (*theParticleIterator)() ){
177  G4ParticleDefinition* particle = theParticleIterator->value();
178  G4ProcessManager* pmanager = particle->GetProcessManager();
179  G4String particleName = particle->GetParticleName();
180 
181  if (particleName == "gamma") {
182  // gamma
183  // Construct processes for gamma
184  pmanager->AddDiscreteProcess(new G4GammaConversion());
185  pmanager->AddDiscreteProcess(new G4ComptonScattering());
186  pmanager->AddDiscreteProcess(new G4PhotoElectricEffect());
187 
188  } else if (particleName == "e-") {
189  //electron
190  // Construct processes for electron
191  pmanager->AddProcess(new G4eMultipleScattering(),-1,1,1);
192  pmanager->AddProcess(new G4eIonisation(),-1,2,2);
193  pmanager->AddProcess(new G4eBremsstrahlung(),-1,-1,3);
194 
195  } else if (particleName == "e+") {
196  //positron
197  // Construct processes for positron
198  pmanager->AddProcess(new G4eMultipleScattering(),-1,1,1);
199 
200  pmanager->AddProcess(new G4eIonisation(),-1,2,2);
201  pmanager->AddProcess(new G4eBremsstrahlung(),-1,-1,3);
202  pmanager->AddProcess(new G4eplusAnnihilation(),0,-1,4);
203 
204  } else if( particleName == "mu+" ||
205  particleName == "mu-" ) {
206  //muon
207  // Construct processes for muon+
208  pmanager->AddProcess(new G4MuMultipleScattering(),-1,1,1);
209  pmanager->AddProcess(new G4MuIonisation(),-1,2,2);
210  pmanager->AddProcess(new G4MuBremsstrahlung(),-1,-1,3);
211  pmanager->AddProcess(new G4MuPairProduction(),-1,-1,4);
212 
213  } else if( particleName == "GenericIon" ) {
214  pmanager->AddProcess(new G4hMultipleScattering(),-1,1,1);
215  pmanager->AddProcess(new G4hIonisation(),-1,2,2);
216  } else {
217  if ((particle->GetPDGCharge() != 0.0) &&
218  (particle->GetParticleName() != "chargedgeantino")&&
219  (!particle->IsShortLived()) ) {
220  // all others charged particles except geantino
221  pmanager->AddProcess(new G4hMultipleScattering(),-1,1,1);
222  pmanager->AddProcess(new G4hIonisation(),-1,2,2);
223  }
224  }
225  }
226 }
G4int AddDiscreteProcess(G4VProcess *aProcess, G4int ord=ordDefault)
G4ProcessManager * GetProcessManager() const
const G4String & GetParticleName() const
G4int AddProcess(G4VProcess *aProcess, G4int ordAtRestDoIt=ordInActive, G4int ordAlongSteptDoIt=ordInActive, G4int ordPostStepDoIt=ordInActive)
G4double GetPDGCharge() const
#define theParticleIterator
void B03PhysicsList::ConstructGeneral ( )
protectedvirtual

Definition at line 611 of file B03PhysicsList.cc.

References G4ProcessManager::AddProcess(), G4ParticleDefinition::GetProcessManager(), idxAtRest, idxPostStep, G4Decay::IsApplicable(), G4ProcessManager::SetProcessOrdering(), and theParticleIterator.

Referenced by ConstructProcess().

612 {
613  G4Decay* theDecayProcess = new G4Decay();
614  theParticleIterator->reset();
615  while( (*theParticleIterator)() ){
616  G4ParticleDefinition* particle = theParticleIterator->value();
617  G4ProcessManager* pmanager = particle->GetProcessManager();
618  if (theDecayProcess->IsApplicable(*particle)) {
619  pmanager ->AddProcess(theDecayProcess);
620  pmanager ->SetProcessOrdering(theDecayProcess, idxPostStep);
621  pmanager ->SetProcessOrdering(theDecayProcess, idxAtRest);
622  }
623  }
624 }
virtual G4bool IsApplicable(const G4ParticleDefinition &)
Definition: G4Decay.cc:89
G4ProcessManager * GetProcessManager() const
G4int AddProcess(G4VProcess *aProcess, G4int ordAtRestDoIt=ordInActive, G4int ordAlongSteptDoIt=ordInActive, G4int ordPostStepDoIt=ordInActive)
void SetProcessOrdering(G4VProcess *aProcess, G4ProcessVectorDoItIndex idDoIt, G4int ordDoIt=ordDefault)
#define theParticleIterator
void B03PhysicsList::ConstructHad ( )
protectedvirtual

Definition at line 300 of file B03PhysicsList.cc.

References G4HadronicProcess::AddDataSet(), G4ProcessManager::AddDiscreteProcess(), G4ParticleDefinition::GetParticleName(), G4ParticleDefinition::GetProcessManager(), python.hepunit::GeV, python.hepunit::MeV, G4HadronicProcess::RegisterMe(), G4VIntraNuclearTransportModel::SetDeExcitation(), G4ExcitationHandler::SetEvaporation(), G4ExcitationHandler::SetFermiModel(), G4VPartonStringModel::SetFragmentationModel(), G4TheoFSGenerator::SetHighEnergyGenerator(), G4ExcitationHandler::SetMaxAandZForFermiBreakUp(), G4HadronicInteraction::SetMaxEnergy(), G4ExcitationHandler::SetMinEForMultiFrag(), G4HadronicInteraction::SetMinEnergy(), G4ExcitationHandler::SetMultiFragmentation(), G4TheoFSGenerator::SetTransport(), python.hepunit::TeV, and theParticleIterator.

Referenced by ConstructProcess().

301 {
302  // this will be the model class for high energies
303  G4TheoFSGenerator* theTheoModel = new G4TheoFSGenerator;
304  G4TheoFSGenerator* antiBHighEnergyModel = new G4TheoFSGenerator;
305 
306  // all models for treatment of thermal nucleus
307  G4Evaporation* theEvaporation = new G4Evaporation;
308  G4FermiBreakUp* theFermiBreakUp = new G4FermiBreakUp;
309  G4StatMF* theMF = new G4StatMF;
310 
311  // Evaporation logic
312  G4ExcitationHandler* theHandler = new G4ExcitationHandler;
313  theHandler->SetEvaporation(theEvaporation);
314  theHandler->SetFermiModel(theFermiBreakUp);
315  theHandler->SetMultiFragmentation(theMF);
316  theHandler->SetMaxAandZForFermiBreakUp(12, 6);
317  theHandler->SetMinEForMultiFrag(3*MeV);
318 
319  // Pre equilibrium stage
320  G4PreCompoundModel* thePreEquilib = new G4PreCompoundModel(theHandler);
321 
322  // a no-cascade generator-precompound interaface
323  G4GeneratorPrecompoundInterface* theCascade =
325  theCascade->SetDeExcitation(thePreEquilib);
326 
327  // Bertini cascade
328  G4CascadeInterface* bertini = new G4CascadeInterface;
329  bertini->SetMaxEnergy(22*MeV);
330 
331  // here come the high energy parts
332  G4VPartonStringModel* theStringModel;
333  theStringModel = new G4FTFModel;
334  theTheoModel->SetTransport(theCascade);
335  theTheoModel->SetHighEnergyGenerator(theStringModel);
336  theTheoModel->SetMinEnergy(19*GeV);
337  theTheoModel->SetMaxEnergy(100*TeV);
338 
339  G4VLongitudinalStringDecay* theFragmentation = new G4QGSMFragmentation;
340  G4ExcitedStringDecay* theStringDecay =
341  new G4ExcitedStringDecay(theFragmentation);
342  theStringModel->SetFragmentationModel(theStringDecay);
343 
344  // high energy model for anti-baryons
345  antiBHighEnergyModel = new G4TheoFSGenerator("ANTI-FTFP");
346  G4FTFModel* antiBStringModel = new G4FTFModel;
347  G4ExcitedStringDecay* stringDecay =
349  antiBStringModel->SetFragmentationModel(stringDecay);
350 
351  G4GeneratorPrecompoundInterface* antiBCascade =
353  G4PreCompoundModel* preEquilib =
355  antiBCascade->SetDeExcitation(preEquilib);
356 
357  antiBHighEnergyModel->SetTransport(antiBCascade);
358  antiBHighEnergyModel->SetHighEnergyGenerator(antiBStringModel);
359  antiBHighEnergyModel->SetMinEnergy(0.0);
360  antiBHighEnergyModel->SetMaxEnergy(20*TeV);
361 
362  // Light ion models
364  binaryCascade->SetMinEnergy(0.0);
365  binaryCascade->SetMaxEnergy(110*MeV);
366 
367  G4QMDReaction* qmd = new G4QMDReaction;
368  qmd->SetMinEnergy(100*MeV);
369  qmd->SetMaxEnergy(10*GeV);
370 
374 
375  // Elastic process
376  G4HadronElasticProcess* theElasticProcess = new G4HadronElasticProcess;
377  G4HadronElastic* theElasticModel = new G4HadronElastic;
378  theElasticProcess->RegisterMe(theElasticModel);
379 
380  theParticleIterator->reset();
381  while ((*theParticleIterator)()) {
382  G4ParticleDefinition* particle = theParticleIterator->value();
383  G4ProcessManager* pmanager = particle->GetProcessManager();
384  G4String particleName = particle->GetParticleName();
385 
386  if (particleName == "pi+") {
387  pmanager->AddDiscreteProcess(theElasticProcess);
388  G4PionPlusInelasticProcess* theInelasticProcess =
389  new G4PionPlusInelasticProcess("inelastic");
390  theInelasticProcess->RegisterMe(bertini);
391  theInelasticProcess->RegisterMe(theTheoModel);
392  pmanager->AddDiscreteProcess(theInelasticProcess);
393  } else if (particleName == "pi-") {
394  pmanager->AddDiscreteProcess(theElasticProcess);
395  G4PionMinusInelasticProcess* theInelasticProcess =
396  new G4PionMinusInelasticProcess("inelastic");
397  theInelasticProcess->RegisterMe(bertini);
398  theInelasticProcess->RegisterMe(theTheoModel);
399  pmanager->AddDiscreteProcess(theInelasticProcess);
400  } else if (particleName == "kaon+") {
401  pmanager->AddDiscreteProcess(theElasticProcess);
402  G4KaonPlusInelasticProcess* theInelasticProcess =
403  new G4KaonPlusInelasticProcess("inelastic");
404  theInelasticProcess->RegisterMe(bertini);
405  theInelasticProcess->RegisterMe(theTheoModel);
406  pmanager->AddDiscreteProcess(theInelasticProcess);
407  }
408  else if (particleName == "kaon0S") {
409  pmanager->AddDiscreteProcess(theElasticProcess);
410  G4KaonZeroSInelasticProcess* theInelasticProcess =
411  new G4KaonZeroSInelasticProcess("inelastic");
412  theInelasticProcess->RegisterMe(bertini);
413  theInelasticProcess->RegisterMe(theTheoModel);
414  pmanager->AddDiscreteProcess(theInelasticProcess);
415  }
416  else if (particleName == "kaon0L") {
417  pmanager->AddDiscreteProcess(theElasticProcess);
418  G4KaonZeroLInelasticProcess* theInelasticProcess =
419  new G4KaonZeroLInelasticProcess("inelastic");
420  theInelasticProcess->RegisterMe(bertini);
421  theInelasticProcess->RegisterMe(theTheoModel);
422  pmanager->AddDiscreteProcess(theInelasticProcess);
423  }
424  else if (particleName == "kaon-") {
425  pmanager->AddDiscreteProcess(theElasticProcess);
426  G4KaonMinusInelasticProcess* theInelasticProcess =
427  new G4KaonMinusInelasticProcess("inelastic");
428  theInelasticProcess->RegisterMe(bertini);
429  theInelasticProcess->RegisterMe(theTheoModel);
430  pmanager->AddDiscreteProcess(theInelasticProcess);
431  }
432  else if (particleName == "proton") {
433  pmanager->AddDiscreteProcess(theElasticProcess);
434  G4ProtonInelasticProcess* theInelasticProcess =
435  new G4ProtonInelasticProcess("inelastic");
436  theInelasticProcess->RegisterMe(bertini);
437  theInelasticProcess->RegisterMe(theTheoModel);
438  pmanager->AddDiscreteProcess(theInelasticProcess);
439  }
440  else if (particleName == "anti_proton") {
441  pmanager->AddDiscreteProcess(theElasticProcess);
442  G4AntiProtonInelasticProcess* theInelasticProcess =
443  new G4AntiProtonInelasticProcess("inelastic");
444  theInelasticProcess->RegisterMe(antiBHighEnergyModel);
445  pmanager->AddDiscreteProcess(theInelasticProcess);
446 
447  } else if (particleName == "neutron") {
448  // elastic scattering
449  pmanager->AddDiscreteProcess(theElasticProcess);
450 
451  // inelastic scattering
452  G4NeutronInelasticProcess* theInelasticProcess =
453  new G4NeutronInelasticProcess("inelastic");
454  theInelasticProcess->RegisterMe(bertini);
455  theInelasticProcess->RegisterMe(theTheoModel);
456  pmanager->AddDiscreteProcess(theInelasticProcess);
457 
458  // fission
459  G4HadronFissionProcess* theFissionProcess = new G4HadronFissionProcess;
460  G4LFission* theFissionModel = new G4LFission;
461  theFissionProcess->RegisterMe(theFissionModel);
462  pmanager->AddDiscreteProcess(theFissionProcess);
463 
464  // capture
465  G4HadronCaptureProcess* theCaptureProcess = new G4HadronCaptureProcess;
466  G4NeutronRadCapture* theCaptureModel = new G4NeutronRadCapture;
467  theCaptureProcess->RegisterMe(theCaptureModel);
468  pmanager->AddDiscreteProcess(theCaptureProcess);
469 
470  } else if (particleName == "anti_neutron") {
471  pmanager->AddDiscreteProcess(theElasticProcess);
472  G4AntiNeutronInelasticProcess* theInelasticProcess =
473  new G4AntiNeutronInelasticProcess("inelastic");
474  theInelasticProcess->RegisterMe(antiBHighEnergyModel);
475  pmanager->AddDiscreteProcess(theInelasticProcess);
476 
477  } else if (particleName == "lambda") {
478  pmanager->AddDiscreteProcess(theElasticProcess);
479  G4LambdaInelasticProcess* theInelasticProcess =
480  new G4LambdaInelasticProcess("inelastic");
481  theInelasticProcess->RegisterMe(bertini);
482  theInelasticProcess->RegisterMe(theTheoModel);
483  pmanager->AddDiscreteProcess(theInelasticProcess);
484  }
485  else if (particleName == "anti_lambda") {
486  pmanager->AddDiscreteProcess(theElasticProcess);
487  G4AntiLambdaInelasticProcess* theInelasticProcess =
488  new G4AntiLambdaInelasticProcess("inelastic");
489  theInelasticProcess->RegisterMe(antiBHighEnergyModel);
490  pmanager->AddDiscreteProcess(theInelasticProcess);
491  }
492  else if (particleName == "sigma+") {
493  pmanager->AddDiscreteProcess(theElasticProcess);
494  G4SigmaPlusInelasticProcess* theInelasticProcess =
495  new G4SigmaPlusInelasticProcess("inelastic");
496  theInelasticProcess->RegisterMe(bertini);
497  theInelasticProcess->RegisterMe(theTheoModel);
498  pmanager->AddDiscreteProcess(theInelasticProcess);
499  }
500  else if (particleName == "sigma-") {
501  pmanager->AddDiscreteProcess(theElasticProcess);
502  G4SigmaMinusInelasticProcess* theInelasticProcess =
503  new G4SigmaMinusInelasticProcess("inelastic");
504  theInelasticProcess->RegisterMe(bertini);
505  theInelasticProcess->RegisterMe(theTheoModel);
506  pmanager->AddDiscreteProcess(theInelasticProcess);
507  }
508  else if (particleName == "anti_sigma+") {
509  pmanager->AddDiscreteProcess(theElasticProcess);
510  G4AntiSigmaPlusInelasticProcess* theInelasticProcess =
511  new G4AntiSigmaPlusInelasticProcess("inelastic");
512  theInelasticProcess->RegisterMe(antiBHighEnergyModel);
513  pmanager->AddDiscreteProcess(theInelasticProcess);
514  }
515  else if (particleName == "anti_sigma-") {
516  pmanager->AddDiscreteProcess(theElasticProcess);
517  G4AntiSigmaMinusInelasticProcess* theInelasticProcess =
518  new G4AntiSigmaMinusInelasticProcess("inelastic");
519  theInelasticProcess->RegisterMe(antiBHighEnergyModel);
520  pmanager->AddDiscreteProcess(theInelasticProcess);
521  }
522  else if (particleName == "xi0") {
523  pmanager->AddDiscreteProcess(theElasticProcess);
524  G4XiZeroInelasticProcess* theInelasticProcess =
525  new G4XiZeroInelasticProcess("inelastic");
526  theInelasticProcess->RegisterMe(bertini);
527  theInelasticProcess->RegisterMe(theTheoModel);
528  pmanager->AddDiscreteProcess(theInelasticProcess);
529  }
530  else if (particleName == "xi-") {
531  pmanager->AddDiscreteProcess(theElasticProcess);
532  G4XiMinusInelasticProcess* theInelasticProcess =
533  new G4XiMinusInelasticProcess("inelastic");
534  theInelasticProcess->RegisterMe(bertini);
535  theInelasticProcess->RegisterMe(theTheoModel);
536  pmanager->AddDiscreteProcess(theInelasticProcess);
537  }
538  else if (particleName == "anti_xi0") {
539  pmanager->AddDiscreteProcess(theElasticProcess);
540  G4AntiXiZeroInelasticProcess* theInelasticProcess =
541  new G4AntiXiZeroInelasticProcess("inelastic");
542  theInelasticProcess->RegisterMe(antiBHighEnergyModel);
543  pmanager->AddDiscreteProcess(theInelasticProcess);
544  }
545  else if (particleName == "anti_xi-") {
546  pmanager->AddDiscreteProcess(theElasticProcess);
547  G4AntiXiMinusInelasticProcess* theInelasticProcess =
548  new G4AntiXiMinusInelasticProcess("inelastic");
549  theInelasticProcess->RegisterMe(antiBHighEnergyModel);
550  pmanager->AddDiscreteProcess(theInelasticProcess);
551  }
552  else if (particleName == "deuteron") {
553  pmanager->AddDiscreteProcess(theElasticProcess);
554  G4DeuteronInelasticProcess* theInelasticProcess =
555  new G4DeuteronInelasticProcess("inelastic");
556  theInelasticProcess->RegisterMe(binaryCascade);
557  theInelasticProcess->RegisterMe(qmd);
558  theInelasticProcess->AddDataSet(shenXS);
559  theInelasticProcess->AddDataSet(tripXS);
560  theInelasticProcess->AddDataSet(tripLightXS);
561  pmanager->AddDiscreteProcess(theInelasticProcess);
562  }
563  else if (particleName == "triton") {
564  pmanager->AddDiscreteProcess(theElasticProcess);
565  G4TritonInelasticProcess* theInelasticProcess =
566  new G4TritonInelasticProcess("inelastic");
567  theInelasticProcess->RegisterMe(binaryCascade);
568  theInelasticProcess->RegisterMe(qmd);
569  theInelasticProcess->AddDataSet(shenXS);
570  theInelasticProcess->AddDataSet(tripXS);
571  theInelasticProcess->AddDataSet(tripLightXS);
572  pmanager->AddDiscreteProcess(theInelasticProcess);
573  }
574  else if (particleName == "alpha") {
575  pmanager->AddDiscreteProcess(theElasticProcess);
576  G4AlphaInelasticProcess* theInelasticProcess =
577  new G4AlphaInelasticProcess("inelastic");
578  theInelasticProcess->RegisterMe(binaryCascade);
579  theInelasticProcess->RegisterMe(qmd);
580  theInelasticProcess->AddDataSet(shenXS);
581  theInelasticProcess->AddDataSet(tripXS);
582  theInelasticProcess->AddDataSet(tripLightXS);
583  pmanager->AddDiscreteProcess(theInelasticProcess);
584 
585  } else if (particleName == "omega-") {
586  pmanager->AddDiscreteProcess(theElasticProcess);
587  G4OmegaMinusInelasticProcess* theInelasticProcess =
588  new G4OmegaMinusInelasticProcess("inelastic");
589  theInelasticProcess->RegisterMe(bertini);
590  theInelasticProcess->RegisterMe(theTheoModel);
591  pmanager->AddDiscreteProcess(theInelasticProcess);
592 
593  } else if (particleName == "anti_omega-") {
594  pmanager->AddDiscreteProcess(theElasticProcess);
595  G4AntiOmegaMinusInelasticProcess* theInelasticProcess =
596  new G4AntiOmegaMinusInelasticProcess("inelastic");
597  theInelasticProcess->RegisterMe(antiBHighEnergyModel);
598  pmanager->AddDiscreteProcess(theInelasticProcess);
599  }
600  }
601 }
void SetFragmentationModel(G4VStringFragmentation *aModel)
G4int AddDiscreteProcess(G4VProcess *aProcess, G4int ord=ordDefault)
void SetMinEForMultiFrag(G4double anE)
G4ProcessManager * GetProcessManager() const
const G4String & GetParticleName() const
void SetHighEnergyGenerator(G4VHighEnergyGenerator *const value)
void RegisterMe(G4HadronicInteraction *a)
void SetMinEnergy(G4double anEnergy)
void AddDataSet(G4VCrossSectionDataSet *aDataSet)
void SetFermiModel(G4VFermiBreakUp *ptr)
void SetMultiFragmentation(G4VMultiFragmentation *ptr)
void SetMaxAandZForFermiBreakUp(G4int anA, G4int aZ)
void SetEvaporation(G4VEvaporation *ptr)
void SetMaxEnergy(const G4double anEnergy)
void SetDeExcitation(G4VPreCompoundModel *ptr)
void SetTransport(G4VIntraNuclearTransportModel *const value)
#define theParticleIterator
void B03PhysicsList::ConstructLeptHad ( )
protectedvirtual

Definition at line 605 of file B03PhysicsList.cc.

Referenced by ConstructProcess().

606 {;}
void B03PhysicsList::ConstructParticle ( void  )
protectedvirtual

Implements G4VUserPhysicsList.

Definition at line 71 of file B03PhysicsList.cc.

References ConstructAllBaryons(), ConstructAllBosons(), ConstructAllIons(), ConstructAllLeptons(), ConstructAllMesons(), and ConstructAllShortLiveds().

72 {
73  // In this method, static member functions should be called
74  // for all particles which you want to use.
75  // This ensures that objects of these particle types will be
76  // created in the program.
77 
84 }
void ConstructAllBosons()
void ConstructAllLeptons()
void ConstructAllShortLiveds()
void ConstructAllBaryons()
void ConstructAllMesons()
void B03PhysicsList::ConstructProcess ( void  )
protectedvirtual
void B03PhysicsList::SetCuts ( )
protectedvirtual

Reimplemented from G4VUserPhysicsList.

Definition at line 628 of file B03PhysicsList.cc.

References G4VUserPhysicsList::defaultCutValue, G4cout, G4endl, python.hepunit::mm, G4VUserPhysicsList::SetCutsWithDefault(), and G4VUserPhysicsList::verboseLevel.

629 {
630  if (verboseLevel >0)
631  {
632  G4cout << "B03PhysicsList::SetCuts:";
633  G4cout << "CutLength : " << defaultCutValue/mm << " (mm)" << G4endl;
634  }
635  // "G4VUserPhysicsList::SetCutsWithDefault" method sets
636  // the default cut value for all particle types
638 }
G4GLOB_DLL std::ostream G4cout
#define G4endl
Definition: G4ios.hh:61

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