Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4EmExtraPhysics.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 // $Id: G4EmExtraPhysics.cc 66704 2013-01-10 18:20:17Z gunter $
27 //
28 //---------------------------------------------------------------------------
29 //
30 // ClassName: G4EmExtraPhysics
31 //
32 // Author: 2002 J.P. Wellisch
33 //
34 // Modified:
35 // 10.11.2005 V.Ivanchenko edit to provide a standard
36 // 19.06.2006 V.Ivanchenko add mu-nuclear process
37 // 16.10.2012 A.Ribon: renamed G4EmExtraBertiniPhysics as G4EmExtraPhysics
38 //
39 //----------------------------------------------------------------------------
40 //
41 
42 #include "G4EmExtraPhysics.hh"
43 
44 #include "G4SystemOfUnits.hh"
46 
47 #include "G4ParticleDefinition.hh"
48 #include "G4ParticleTable.hh"
49 #include "G4Gamma.hh"
50 #include "G4Electron.hh"
51 #include "G4Positron.hh"
52 #include "G4MuonPlus.hh"
53 #include "G4MuonMinus.hh"
54 #include "G4ProcessManager.hh"
55 #include "G4BuilderType.hh"
56 
57 // factory
59 //
61 
62 G4ThreadLocal G4bool G4EmExtraPhysics::wasBuilt = false;
63 G4ThreadLocal G4bool G4EmExtraPhysics::munActivated = false;
64 G4ThreadLocal G4bool G4EmExtraPhysics::gnActivated = false;
65 G4ThreadLocal G4bool G4EmExtraPhysics::synActivated = false;
66 G4ThreadLocal G4bool G4EmExtraPhysics::synchOn = false;
67 G4ThreadLocal G4bool G4EmExtraPhysics::gammNucOn = true;
68 G4ThreadLocal G4bool G4EmExtraPhysics::muNucOn = false;
69 
70 
72  G4VPhysicsConstructor("G4GammaLeptoNuclearPhys"),
73  verbose(ver)
74 {
75  theMessenger = new G4EmMessenger(this);
77  if(verbose > 1) G4cout << "### G4EmExtraPhysics" << G4endl;
78 }
79 
81  G4VPhysicsConstructor("G4GammaLeptoNuclearPhys"),
82  verbose(1)
83 {
84  theMessenger = new G4EmMessenger(this);
86  if(verbose > 1) G4cout << "### G4EmExtraPhysics" << G4endl;
87 }
88 
90 {
91  delete theMessenger;
92 }
93 
95 {
96  if(newState == "on" || newState == "ON") {
97  synchOn = true;
98  if(wasBuilt) BuildSynch();
99  } else synchOn = false;
100 }
101 
103 {
104  if(newState == "on" || newState == "ON") {
105  gammNucOn = true;
106  if(wasBuilt) BuildGammaNuclear();
107  } else gammNucOn = false;
108 }
109 
111 {
112  if(newState == "on" || newState == "ON") {
113  muNucOn = true;
114  if(wasBuilt) BuildMuonNuclear();
115  } else muNucOn = false;
116 }
117 
119 {
120  G4Gamma::Gamma();
125 }
126 
128 {
129  if(wasBuilt) return;
130  wasBuilt = true;
131 
132  if (synchOn) BuildSynch();
133  if (gammNucOn) BuildGammaNuclear();
134  if (muNucOn) BuildMuonNuclear();
135 }
136 
137 void G4EmExtraPhysics::BuildMuonNuclear()
138 {
139  if(munActivated) return;
140  munActivated = true;
141  G4ProcessManager * pManager = 0;
142 
143  G4MuonNuclearProcess* muNucProcess = new G4MuonNuclearProcess();
144  G4MuonVDNuclearModel* muNucModel = new G4MuonVDNuclearModel();
145  muNucProcess->RegisterMe(muNucModel);
146 
147  pManager = G4MuonPlus::MuonPlus()->GetProcessManager();
148  pManager->AddDiscreteProcess(muNucProcess);
149 
151  pManager->AddDiscreteProcess(muNucProcess);
152 }
153 
154 void G4EmExtraPhysics::BuildGammaNuclear()
155 {
156  if(gnActivated) return;
157  gnActivated = true;
158 
160  theGNPhysics->Build();
161 }
162 
163 void G4EmExtraPhysics::BuildSynch()
164 {
165  if(synActivated) return;
166  synActivated = true;
167  G4ProcessManager * pManager = 0;
168 
169  pManager = G4Electron::Electron()->GetProcessManager();
170  G4SynchrotronRadiation* theElectronSynch = new G4SynchrotronRadiation();
171  pManager->AddDiscreteProcess(theElectronSynch);
172 
173  pManager = G4Positron::Positron()->GetProcessManager();
174  G4SynchrotronRadiation* thePositronSynch = new G4SynchrotronRadiation();
175  pManager->AddDiscreteProcess(thePositronSynch);
176 }
virtual ~G4EmExtraPhysics()
static G4MuonPlus * MuonPlus()
Definition: G4MuonPlus.cc:99
G4int AddDiscreteProcess(G4VProcess *aProcess, G4int ord=ordDefault)
#define G4ThreadLocal
Definition: tls.hh:52
G4ProcessManager * GetProcessManager() const
int G4int
Definition: G4Types.hh:78
void RegisterMe(G4HadronicInteraction *a)
G4GLOB_DLL std::ostream G4cout
bool G4bool
Definition: G4Types.hh:79
G4EmExtraPhysics(G4int ver=1)
static G4Gamma * Gamma()
Definition: G4Gamma.cc:86
void GammaNuclear(G4String &aState)
static G4Positron * Positron()
Definition: G4Positron.cc:94
void Synch(G4String &aState)
void MuonNuclear(G4String &aState)
static G4MuonMinus * MuonMinus()
Definition: G4MuonMinus.cc:100
static G4Electron * Electron()
Definition: G4Electron.cc:94
#define G4endl
Definition: G4ios.hh:61
G4_DECLARE_PHYSCONSTR_FACTORY(G4EmExtraPhysics)