Geant4  10.03.p03
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
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 //
28 //
29 // $Id: PhysicsList.cc 85260 2014-10-27 08:53:35Z gcosmo $
30 //
31 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
32 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
33 
34 #include "PhysicsList.hh"
35 #include "PhysicsListMessenger.hh"
36 
37 #include "G4EmDNAPhysics.hh"
45 
46 #include "G4UnitsTable.hh"
47 #include "G4SystemOfUnits.hh"
48 #include "G4UserSpecialCuts.hh"
49 
50 // particles
51 
52 #include "G4BosonConstructor.hh"
53 #include "G4LeptonConstructor.hh"
54 #include "G4MesonConstructor.hh"
55 #include "G4BosonConstructor.hh"
56 #include "G4BaryonConstructor.hh"
57 #include "G4IonConstructor.hh"
60 
61 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
62 
64  fEmPhysicsList(0), fMessenger(0)
65 {
66  fMessenger = new PhysicsListMessenger(this);
67 
68  SetVerboseLevel(1);
69 
70  // EM physics
71  fEmPhysicsList = new G4EmDNAPhysics();
72 }
73 
74 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
75 
77 {
78  delete fMessenger;
79  delete fEmPhysicsList;
80 }
81 
82 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
83 
85 {
86  G4BosonConstructor pBosonConstructor;
87  pBosonConstructor.ConstructParticle();
88 
89  G4LeptonConstructor pLeptonConstructor;
90  pLeptonConstructor.ConstructParticle();
91 
92  G4MesonConstructor pMesonConstructor;
93  pMesonConstructor.ConstructParticle();
94 
95  G4BaryonConstructor pBaryonConstructor;
96  pBaryonConstructor.ConstructParticle();
97 
98  G4IonConstructor pIonConstructor;
99  pIonConstructor.ConstructParticle();
100 
101  G4ShortLivedConstructor pShortLivedConstructor;
102  pShortLivedConstructor.ConstructParticle();
103 
104  G4DNAGenericIonsManager* genericIonsManager;
105  genericIonsManager=G4DNAGenericIonsManager::Instance();
106  genericIonsManager->GetIon("alpha++");
107  genericIonsManager->GetIon("alpha+");
108  genericIonsManager->GetIon("helium");
109  genericIonsManager->GetIon("hydrogen");
110 }
111 
112 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
113 
114 #include "G4ProcessManager.hh"
115 #include "G4EmProcessOptions.hh"
116 
118 {
119  // transportation
120  //
122 
123  // electromagnetic physics list
124  //
125  fEmPhysicsList->ConstructProcess();
126 
127  // tracking cut
128  //
129  AddTrackingCut();
130 }
131 
132 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
133 
135 {
136  if (verboseLevel>-1) {
137  G4cout << "PhysicsList::AddPhysicsList: <" << name << ">" << G4endl;
138  }
139 
140  if (name == fEmName) return;
141 
142  if (name == "dna") {
143  fEmName = name;
144  delete fEmPhysicsList;
145  fEmPhysicsList = new G4EmDNAPhysics();
146 
147  } else if (name == "dna_opt1") {
148  fEmName = name;
149  delete fEmPhysicsList;
150  fEmPhysicsList = new G4EmDNAPhysics_option1();
151  }
152  else if (name == "dna_opt2") {
153  fEmName = name;
154  delete fEmPhysicsList;
155  fEmPhysicsList = new G4EmDNAPhysics_option2();
156  }
157  else if (name == "dna_opt3") {
158  fEmName = name;
159  delete fEmPhysicsList;
160  fEmPhysicsList = new G4EmDNAPhysics_option3();
161  }
162  else if (name == "dna_opt4") {
163  fEmName = name;
164  delete fEmPhysicsList;
165  fEmPhysicsList = new G4EmDNAPhysics_option4();
166  }
167  else if (name == "dna_opt5") {
168  fEmName = name;
169  delete fEmPhysicsList;
170  fEmPhysicsList = new G4EmDNAPhysics_option5();
171  }
172  else if (name == "dna_opt7") {
173  fEmName = name;
174  delete fEmPhysicsList;
175  fEmPhysicsList = new G4EmDNAPhysics_option7();
176  }
177  else if(name == "std_opt3") {
178  fEmName = name;
179  delete fEmPhysicsList;
180  fEmPhysicsList = new G4EmStandardPhysics_option3();
181  }
182  else {
183  G4cout << "PhysicsList::AddPhysicsList: <" << name << ">"
184  << " is not defined"
185  << G4endl;
186  }
187 }
188 
189 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
190 
192 {
194 
196  particleIterator->reset();
197  while( (*particleIterator)() )
198  {
199  G4ParticleDefinition* particle = particleIterator->value();
200  G4String particleName = particle->GetParticleName();
201 
202  if (particleName == "e-")
203  ph->RegisterProcess(new G4UserSpecialCuts(), particle);
204  }
205 }
206 
207 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
const XML_Char * name
Definition: expat.h:151
void ConstructParticle()
Definition: PhysicsList.cc:117
void AddTrackingCut()
Definition: PhysicsList.cc:188
static void ConstructParticle()
static void ConstructParticle()
const G4String & GetParticleName() const
void AddPhysicsList(const G4String &name)
Definition: PhysicsList.cc:191
static void ConstructParticle()
G4GLOB_DLL std::ostream G4cout
static void ConstructParticle()
G4bool RegisterProcess(G4VProcess *process, G4ParticleDefinition *particle)
static G4DNAGenericIonsManager * Instance(void)
void SetVerboseLevel(G4int value)
static void ConstructParticle()
static G4PhysicsListHelper * GetPhysicsListHelper()
virtual void ConstructProcess()=0
std::vector< G4InuclElementaryParticle >::iterator particleIterator
Definition: G4BigBanger.cc:65
G4ParticleTable::G4PTblDicIterator * GetParticleIterator() const
#define G4endl
Definition: G4ios.hh:61
void ConstructProcess()
Definition: PhysicsList.cc:170
G4ParticleDefinition * GetIon(const G4String &name)