Geant4_10
G4IonINCLXXPhysics.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: G4IonINCLXXPhysics.cc 71042 2013-06-10 09:28:44Z gcosmo $
27 //
28 //---------------------------------------------------------------------------
29 //
30 // ClassName: G4IonINCLXXPhysics
31 //
32 // Author: D. Mancusi
33 //
34 // Modified:
35 //
36 //----------------------------------------------------------------------------
37 //
38 
39 #include "G4IonINCLXXPhysics.hh"
40 
41 #include "G4SystemOfUnits.hh"
42 #include "G4ParticleDefinition.hh"
43 #include "G4ProcessManager.hh"
44 #include "G4Deuteron.hh"
45 #include "G4Triton.hh"
46 #include "G4He3.hh"
47 #include "G4Alpha.hh"
48 #include "G4GenericIon.hh"
49 #include "G4IonConstructor.hh"
50 
54 
55 #include "G4INCLXXInterface.hh"
56 #include "G4PreCompoundModel.hh"
57 #include "G4ExcitationHandler.hh"
58 #include "G4FTFBuilder.hh"
59 #include "G4HadronicInteraction.hh"
60 #include "G4BuilderType.hh"
61 
62 // factory
64 //
66 
67 G4ThreadLocal std::vector<G4HadronInelasticProcess*>* G4IonINCLXXPhysics::p_list = 0;
68 G4ThreadLocal std::vector<G4HadronicInteraction*>* G4IonINCLXXPhysics::model_list = 0;
69 G4ThreadLocal G4VCrossSectionDataSet* G4IonINCLXXPhysics::theNuclNuclData = 0;
70 G4ThreadLocal G4VComponentCrossSection* G4IonINCLXXPhysics::theGGNuclNuclXS = 0;
71 G4ThreadLocal G4INCLXXInterface* G4IonINCLXXPhysics::theINCLXXIons = 0;
72 G4ThreadLocal G4HadronicInteraction* G4IonINCLXXPhysics::theFTFP = 0;
73 G4ThreadLocal G4FTFBuilder* G4IonINCLXXPhysics::theBuilder = 0;
74 G4ThreadLocal G4bool G4IonINCLXXPhysics::wasActivated = false;
75 
77  G4VPhysicsConstructor("IonINCLXX"),
78  verbose(ver)
79 {
80  // INCLXX light ion maximum energy is 3.0 GeV/nucleon
81  emax_d = 2 * 3.0 * GeV;
82  emax_t = 3 * 3.0 * GeV;
83  emax_he3 = 3 * 3.0 * GeV;
84  emax_alpha = 4 * 3.0 * GeV;
85  emax = 16 * 3.0 * GeV;
86  emaxFTFP = 1.*TeV;
87  emin = 0.*MeV;
89  if(verbose > 1) G4cout << "### G4IonINCLXXPhysics" << G4endl;
90 }
91 
93  G4int ver)
94  : G4VPhysicsConstructor(name),
95  verbose(ver)
96 {
97  // INCLXX light ion maximum energy is 3.0 GeV/nucleon
98  emax_d = 2 * 3.0 * GeV;
99  emax_t = 3 * 3.0 * GeV;
100  emax_he3 = 3 * 3.0 * GeV;
101  emax_alpha = 4 * 3.0 * GeV;
102  emax = 16 * 3.0 * GeV;
103  emaxFTFP = 1.*TeV;
104  emin = 0.*MeV;
106  if(verbose > 1) G4cout << "### G4IonINCLXXPhysics" << G4endl;
107 }
108 
110 {
111  //For MT need to explicitly set back pointers to zero:
112  //variables are static and if new threads are created we can have problems
113  //since variable is still pointing old value
114  if(wasActivated) {
115  delete theBuilder; theBuilder=0;
116  delete theGGNuclNuclXS; theGGNuclNuclXS=0;
117  delete theNuclNuclData; theGGNuclNuclXS=0;
118  G4int i;
119  if ( p_list ) {
120  G4int n = p_list->size();
121  for(i=0; i<n; i++) {delete (*p_list)[i];}
122  delete p_list; p_list = 0;
123  }
124  if ( model_list) {
125  G4int n = model_list->size();
126  for(i=0; i<n; i++) { delete (*model_list)[i];}
127  delete model_list; model_list = 0;
128  }
129  }
130 }
131 
133 {
134  if(wasActivated) return;
135  wasActivated = true;
136 
137  theINCLXXIons= new G4INCLXXInterface();
138  if ( model_list == 0 ) model_list = new std::vector<G4HadronicInteraction*>;
139  model_list->push_back(theINCLXXIons);
140 
141  G4ExcitationHandler* handler = new G4ExcitationHandler();
142  G4PreCompoundModel* thePreCompound = new G4PreCompoundModel(handler);
143 
144  theBuilder = new G4FTFBuilder("FTFP",thePreCompound);
145  theFTFP = theBuilder->GetModel();
146  model_list->push_back(theFTFP);
147 
148  theNuclNuclData = new G4CrossSectionInelastic( theGGNuclNuclXS = new G4ComponentGGNuclNuclXsc() );
149 
150  AddProcess("dInelastic", G4Deuteron::Deuteron(), theINCLXXIons, theFTFP, emax_d);
151  AddProcess("tInelastic", G4Triton::Triton(), theINCLXXIons, theFTFP, emax_t);
152  AddProcess("He3Inelastic", G4He3::He3(), theINCLXXIons, theFTFP, emax_he3);
153  AddProcess("alphaInelastic", G4Alpha::Alpha(), theINCLXXIons, theFTFP, emax_alpha);
154  AddProcess("ionInelastic", G4GenericIon::GenericIon(), theINCLXXIons, theFTFP, emax);
155 }
156 
157 void G4IonINCLXXPhysics::AddProcess(const G4String& name,
159  G4HadronicInteraction* hmodel,
160  G4HadronicInteraction* lmodel,
161  const G4double inclxxEnergyUpperLimit = 3.0 * GeV)
162 {
164  if ( p_list == 0 ) p_list = new std::vector<G4HadronInelasticProcess*>;
165  p_list->push_back(hadi);
166  G4ProcessManager* pManager = p->GetProcessManager();
167  pManager->AddDiscreteProcess(hadi);
168  hadi->AddDataSet(theNuclNuclData);
169  hmodel->SetMinEnergy(emin);
170  hmodel->SetMaxEnergy(inclxxEnergyUpperLimit);
171  hadi->RegisterMe(hmodel);
172  if(lmodel) {
173  lmodel->SetMinEnergy(inclxxEnergyUpperLimit - MeV);
174  lmodel->SetMaxEnergy(emaxFTFP);
175  hadi->RegisterMe(lmodel);
176  }
177  if(verbose > 1) {
178  G4cout << "Register " << hadi->GetProcessName()
179  << " for " << p->GetParticleName()
180  << " INCLXX/G4DeexcitationHandler for E(MeV)= " << emin << " - " << inclxxEnergyUpperLimit;
181  if(lmodel) {
182  G4cout << " FTFP for E(MeV)= " << inclxxEnergyUpperLimit-MeV << " - " << emaxFTFP;
183  }
184  G4cout << G4endl;
185  }
186 }
187 
189 {
190  // Construct light ions
191  G4IonConstructor pConstructor;
192  pConstructor.ConstructParticle();
193 }
G4IonINCLXXPhysics(G4int ver=0)
const char * p
Definition: xmltok.h:285
G4int AddDiscreteProcess(G4VProcess *aProcess, G4int ord=ordDefault)
const XML_Char * name
Definition: expat.h:151
#define G4ThreadLocal
Definition: tls.hh:52
G4ProcessManager * GetProcessManager() const
int G4int
Definition: G4Types.hh:78
const G4String & GetParticleName() const
INCL++ intra-nuclear cascade.
G4HadronicInteraction * GetModel()
static void ConstructParticle()
void RegisterMe(G4HadronicInteraction *a)
void SetMinEnergy(G4double anEnergy)
Char_t n[5]
void AddDataSet(G4VCrossSectionDataSet *aDataSet)
G4GLOB_DLL std::ostream G4cout
bool G4bool
Definition: G4Types.hh:79
static G4Triton * Triton()
Definition: G4Triton.cc:95
const G4String & GetProcessName() const
Definition: G4VProcess.hh:408
static G4Deuteron * Deuteron()
Definition: G4Deuteron.cc:94
virtual void ConstructProcess()
static G4GenericIon * GenericIon()
Definition: G4GenericIon.cc:93
void SetMaxEnergy(const G4double anEnergy)
#define G4endl
Definition: G4ios.hh:61
static G4Alpha * Alpha()
Definition: G4Alpha.cc:89
double G4double
Definition: G4Types.hh:76
static G4He3 * He3()
Definition: G4He3.cc:94
virtual void ConstructParticle()
#define G4_DECLARE_PHYSCONSTR_FACTORY(physics_constructor)