Geant4  10.03.p03
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
PhysListEmStandardSSM.cc
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 //
28 //
29 // $Id: PhysListEmStandardSSM.cc 100335 2016-10-18 07:37:53Z gcosmo $
30 //
31 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
32 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
33 
34 #include "PhysListEmStandardSSM.hh"
35 
36 #include "G4ParticleDefinition.hh"
37 #include "G4ProcessManager.hh"
38 
39 #include "G4ComptonScattering.hh"
40 #include "G4GammaConversion.hh"
41 #include "G4PhotoElectricEffect.hh"
42 
43 #include "G4CoulombScattering.hh"
47 
48 #include "G4eIonisation.hh"
49 #include "G4eBremsstrahlung.hh"
50 #include "G4eplusAnnihilation.hh"
51 
52 #include "G4MuIonisation.hh"
53 #include "G4MuBremsstrahlung.hh"
54 #include "G4MuPairProduction.hh"
55 
56 #include "G4hIonisation.hh"
57 #include "G4ionIonisation.hh"
58 
59 #include "G4SystemOfUnits.hh"
60 
61 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
62 
64  : G4VPhysicsConstructor(name)
65 {}
66 
67 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
68 
70 {}
71 
72 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
73 
75 {
76  // Add standard EM Processes
77 
79  particleIterator->reset();
80  while( (*particleIterator)() ){
81  G4ParticleDefinition* particle = particleIterator->value();
82  G4ProcessManager* pmanager = particle->GetProcessManager();
83  G4String particleName = particle->GetParticleName();
84 
85  if (particleName == "gamma") {
86  // gamma
90 
91  } else if (particleName == "e-") {
92  //electron
93  pmanager->AddProcess(new G4eIonisation, -1, 1, 1);
94  pmanager->AddProcess(new G4eBremsstrahlung, -1, 2, 2);
95 
99  //model->SetLowEnergyThreshold(10*eV);
100  model->SetPolarAngleLimit(0.0);
101  cs->AddEmModel(0, model);
102  pmanager->AddDiscreteProcess(cs);
103 
104  } else if (particleName == "e+") {
105  //positron
106 
107  pmanager->AddProcess(new G4eIonisation, -1, 1, 1);
108  pmanager->AddProcess(new G4eBremsstrahlung, -1, 2, 2);
109  pmanager->AddProcess(new G4eplusAnnihilation, 0,-1, 3);
110 
114  model->SetPolarAngleLimit(0.0);
115  cs->AddEmModel(0, model);
116  pmanager->AddDiscreteProcess(cs);
117 
118  } else if (particleName == "mu+" ||
119  particleName == "mu-" ) {
120  //muon
121  pmanager->AddProcess(new G4MuIonisation, -1, 1, 1);
122  pmanager->AddProcess(new G4MuBremsstrahlung, -1, 2, 2);
123  pmanager->AddProcess(new G4MuPairProduction, -1, 3, 3);
126  model->SetPolarAngleLimit(0.0);
127  cs->AddEmModel(0, model);
128  pmanager->AddDiscreteProcess(cs);
129 
130 
131  } else if (particleName == "alpha" || particleName == "He3") {
132  pmanager->AddProcess(new G4ionIonisation, -1, 1, 1);
135  cs->SetBuildTableFlag(false);
136  pmanager->AddDiscreteProcess(cs);
137 
138  } else if (particleName == "GenericIon" ) {
139  pmanager->AddProcess(new G4ionIonisation, -1, 1, 1);
142  cs->SetBuildTableFlag(false);
143  pmanager->AddDiscreteProcess(cs);
144 
145  } else if ((!particle->IsShortLived()) &&
146  (particle->GetPDGCharge() != 0.0) &&
147  (particle->GetParticleName() != "chargedgeantino")) {
148  //all others charged particles except geantino
149  pmanager->AddProcess(new G4hIonisation, -1, 1, 1);
150  pmanager->AddDiscreteProcess(new G4CoulombScattering);
151  }
152  }
153 }
154 
155 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
156 
const XML_Char * name
Definition: expat.h:151
void SetBuildTableFlag(G4bool val)
G4int AddDiscreteProcess(G4VProcess *aProcess, G4int ord=ordDefault)
const G4String & GetParticleName() const
PhysListEmStandardSSM(const G4String &name="standardSSM")
G4ParticleTable::G4PTblDicIterator * GetParticleIterator() const
G4int AddProcess(G4VProcess *aProcess, G4int ordAtRestDoIt=ordInActive, G4int ordAlongSteptDoIt=ordInActive, G4int ordPostStepDoIt=ordInActive)
void AddEmModel(G4int, G4VEmModel *, const G4Region *region=nullptr)
G4ProcessManager * GetProcessManager() const
std::vector< G4InuclElementaryParticle >::iterator particleIterator
Definition: G4BigBanger.cc:65
G4double GetPDGCharge() const
const XML_Char XML_Content * model
Definition: expat.h:151
void SetPolarAngleLimit(G4double)
Definition: G4VEmModel.hh:767