Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
examples/extended/eventgenerator/HepMC/MCTruth/src/PhysicsList.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 //
26 /// \file eventgenerator/HepMC/MCTruth/src/PhysicsList.cc
27 /// \brief Implementation of the PhysicsList class
28 //
29 //
30 // $Id: PhysicsList.cc 73446 2013-08-27 11:32:59Z gcosmo $
31 //
32 //
33 // --------------------------------------------------------------
34 // GEANT 4 - PhysicsList class
35 // --------------------------------------------------------------
36 //
37 // Author: Witold POKORSKI (Witold.Pokorski@cern.ch)
38 //
39 // --------------------------------------------------------------
40 
41 #include "globals.hh"
42 #include "PhysicsList.hh"
43 
44 #include "G4ProcessManager.hh"
45 #include "G4ParticleTypes.hh"
46 #include "G4SystemOfUnits.hh"
47 
49 {
50  defaultCutValue = 1.0*cm;
51  SetVerboseLevel(1);
52 }
53 
55 {}
56 
58 {
59  // In this method, static member functions should be called
60  // for all particles which you want to use.
61  // This ensures that objects of these particle types will be
62  // created in the program.
63 
68 }
69 
71 {
72  // pseudo-particles
75 
76  // gamma
78 }
79 
81 {
82  // leptons
83  // e+/-
86  // mu+/-
89  // nu_e
92  // nu_mu
95 }
96 
98 {
99  // mesons
100  // light mesons
112 }
113 
115 {
116  // barions
119 
122 }
123 
125 {
127  ConstructEM();
129 }
130 
131 #include "G4ComptonScattering.hh"
132 #include "G4GammaConversion.hh"
133 #include "G4PhotoElectricEffect.hh"
134 
135 #include "G4eMultipleScattering.hh"
136 #include "G4eIonisation.hh"
137 #include "G4eBremsstrahlung.hh"
138 #include "G4eplusAnnihilation.hh"
139 
140 #include "G4MuMultipleScattering.hh"
141 #include "G4MuIonisation.hh"
142 #include "G4MuBremsstrahlung.hh"
143 #include "G4MuPairProduction.hh"
144 
145 #include "G4hMultipleScattering.hh"
146 #include "G4hIonisation.hh"
147 
148 #include "G4StepLimiter.hh"
149 #include "G4UserSpecialCuts.hh"
150 
151 void PhysicsList::ConstructEM()
152 {
153  theParticleIterator->reset();
154  while( (*theParticleIterator)() ){
155  G4ParticleDefinition* particle = theParticleIterator->value();
156  G4ProcessManager* pmanager = particle->GetProcessManager();
157  G4String particleName = particle->GetParticleName();
158 
159  if (particleName == "gamma") {
160  // gamma
163  pmanager->AddDiscreteProcess(new G4GammaConversion);
164 
165  } else if (particleName == "e-") {
166  //electron
167  pmanager->AddProcess(new G4eMultipleScattering,-1, 1,1);
168  pmanager->AddProcess(new G4eIonisation, -1, 2,2);
169  pmanager->AddProcess(new G4eBremsstrahlung, -1, 3,3);
170 
171  } else if (particleName == "e+") {
172  //positron
173  pmanager->AddProcess(new G4eMultipleScattering,-1, 1,1);
174  pmanager->AddProcess(new G4eIonisation, -1, 2,2);
175  pmanager->AddProcess(new G4eBremsstrahlung, -1, 3,3);
176  pmanager->AddProcess(new G4eplusAnnihilation, 0,-1,4);
177 
178  } else if( particleName == "mu+" ||
179  particleName == "mu-" ) {
180  //muon
181  pmanager->AddProcess(new G4MuMultipleScattering,-1, 1,1);
182  pmanager->AddProcess(new G4MuIonisation, -1, 2,2);
183  pmanager->AddProcess(new G4MuBremsstrahlung, -1, 3,3);
184  pmanager->AddProcess(new G4MuPairProduction, -1, 4,4);
185 
186  } else if ((!particle->IsShortLived()) &&
187  (particle->GetPDGCharge() != 0.0) &&
188  (particle->GetParticleName() != "chargedgeantino")) {
189  //all others charged particles except geantino
190  pmanager->AddProcess(new G4hMultipleScattering,-1, 1,1);
191  pmanager->AddProcess(new G4hIonisation, -1, 2,2);
192  //step limit
193  pmanager->AddProcess(new G4StepLimiter, -1,-1,3);
194  ///pmanager->AddProcess(new G4UserSpecialCuts, -1,-1,4);
195  }
196  }
197 }
198 
199 #include "G4Decay.hh"
201 {
202  // Add Decay Process
203  G4Decay* theDecayProcess = new G4Decay();
204  theParticleIterator->reset();
205  while( (*theParticleIterator)() ){
206  G4ParticleDefinition* particle = theParticleIterator->value();
207  G4ProcessManager* pmanager = particle->GetProcessManager();
208  if (theDecayProcess->IsApplicable(*particle)) {
209  pmanager ->AddProcess(theDecayProcess);
210  // set ordering for PostStepDoIt and AtRestDoIt
211  pmanager ->SetProcessOrdering(theDecayProcess, idxPostStep);
212  pmanager ->SetProcessOrdering(theDecayProcess, idxAtRest);
213  }
214  }
215 }
216 
218 {
219  //G4VUserPhysicsList::SetCutsWithDefault method sets
220  //the default cut value for all particle types
221  //
223 
225 }
static G4Geantino * GeantinoDefinition()
Definition: G4Geantino.cc:82
static G4Electron * ElectronDefinition()
Definition: G4Electron.cc:89
static G4KaonPlus * KaonPlusDefinition()
Definition: G4KaonPlus.cc:108
static G4MuonPlus * MuonPlusDefinition()
Definition: G4MuonPlus.cc:94
virtual G4bool IsApplicable(const G4ParticleDefinition &)
Definition: G4Decay.cc:89
static G4KaonMinus * KaonMinusDefinition()
Definition: G4KaonMinus.cc:108
static G4Proton * ProtonDefinition()
Definition: G4Proton.cc:88
G4int AddDiscreteProcess(G4VProcess *aProcess, G4int ord=ordDefault)
static G4KaonZero * KaonZeroDefinition()
Definition: G4KaonZero.cc:99
static G4AntiKaonZero * AntiKaonZeroDefinition()
static G4KaonZeroShort * KaonZeroShortDefinition()
static G4AntiProton * AntiProtonDefinition()
Definition: G4AntiProton.cc:88
G4ProcessManager * GetProcessManager() const
static G4AntiNeutron * AntiNeutronDefinition()
static G4PionZero * PionZeroDefinition()
Definition: G4PionZero.cc:99
const G4String & GetParticleName() const
void DumpCutValuesTable(G4int flag=1)
static G4PionMinus * PionMinusDefinition()
Definition: G4PionMinus.cc:93
static G4KaonZeroLong * KaonZeroLongDefinition()
G4int AddProcess(G4VProcess *aProcess, G4int ordAtRestDoIt=ordInActive, G4int ordAlongSteptDoIt=ordInActive, G4int ordPostStepDoIt=ordInActive)
static G4NeutrinoE * NeutrinoEDefinition()
Definition: G4NeutrinoE.cc:80
static G4AntiNeutrinoMu * AntiNeutrinoMuDefinition()
static G4PionPlus * PionPlusDefinition()
Definition: G4PionPlus.cc:93
void SetProcessOrdering(G4VProcess *aProcess, G4ProcessVectorDoItIndex idDoIt, G4int ordDoIt=ordDefault)
void SetVerboseLevel(G4int value)
static G4Positron * PositronDefinition()
Definition: G4Positron.cc:89
static G4EtaPrime * EtaPrimeDefinition()
Definition: G4EtaPrime.cc:100
static G4MuonMinus * MuonMinusDefinition()
Definition: G4MuonMinus.cc:95
static G4ChargedGeantino * ChargedGeantinoDefinition()
static G4AntiNeutrinoE * AntiNeutrinoEDefinition()
G4double GetPDGCharge() const
static G4NeutrinoMu * NeutrinoMuDefinition()
Definition: G4NeutrinoMu.cc:80
static G4Neutron * NeutronDefinition()
Definition: G4Neutron.cc:99
#define theParticleIterator
static G4Eta * EtaDefinition()
Definition: G4Eta.cc:104
static G4Gamma * GammaDefinition()
Definition: G4Gamma.cc:81