2 // ********************************************************************
3 // * License and Disclaimer *
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. *
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. *
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 // ********************************************************************
26 // $Id: Shielding.icc 83413 2014-08-21 15:21:43Z gcosmo $
28 //---------------------------------------------------------------------------
32 // Author: 2010 Tatsumi Koi, Gunter Folger
34 // created from FTFP_BERT
37 // 05.08.2014 K.L.Genser: added provision for Hadronic Physics Variant M
38 // 16.08.2010 H.Kurashige: Remove inclusion of G4ParticleWithCuts
39 // 26.04.2011 T.Koi: Add G4RadioactiveDecayPhysics
40 // 16.10.2012 A.Ribon: Use new default stopping
41 // 07.11.2013 T.Koi: Add IonElasticPhysics, Set proton cut to 0 to generate
42 // low energy recoils and activate production of fission
45 //----------------------------------------------------------------------------
52 #include "G4ProcessManager.hh"
53 #include "G4ProcessVector.hh"
54 #include "G4ParticleTypes.hh"
55 #include "G4ParticleTable.hh"
57 #include "G4Material.hh"
58 #include "G4MaterialTable.hh"
60 #include "G4DecayPhysics.hh"
61 #include "G4RadioactiveDecayPhysics.hh"
62 #include "G4EmProcessOptions.hh"
63 #include "G4EmStandardPhysics.hh"
64 #include "G4EmExtraPhysics.hh"
65 #include "G4IonQMDPhysics.hh"
66 #include "G4IonElasticPhysics.hh"
67 #include "G4StoppingPhysics.hh"
68 #include "G4HadronElasticPhysicsHP.hh"
69 #include "G4HadronElasticPhysicsLEND.hh"
71 #include "G4DataQuestionaire.hh"
72 #include "G4HadronPhysicsShielding.hh"
74 //template<class T> TShielding<T>::TShielding(G4int ver): T()
75 template<class T> TShielding<T>::TShielding( G4int verbose, G4String LEN_model,
76 G4String HadrPhysVariant ): T()
78 // default cut value (1.0mm)
79 // defaultCutValue = 1.0*CLHEP::mm;
80 G4DataQuestionaire it(photon, neutron, radioactive);
81 G4cout << "<<< Geant4 Physics List simulation engine: Shielding"
82 << HadrPhysVariant<< " 2.1"<<G4endl;
84 this->defaultCutValue = 0.7*CLHEP::mm;
85 this->SetVerboseLevel(verbose);
88 this->RegisterPhysics( new G4EmStandardPhysics(verbose));
89 //G4EmProcessOptions emOptions;
90 //emOptions.SetFluo(true); // To activate deexcitation processes and fluorescence
91 //emOptions.SetAuger(true); // To activate Auger effect if deexcitation is activated
92 //emOptions.SetPIXE(true); // To activate Particle Induced X-Ray Emission (PIXE)
94 // Synchroton Radiation & GN Physics
95 this->RegisterPhysics( new G4EmExtraPhysics(verbose) );
98 this->RegisterPhysics( new G4DecayPhysics(verbose) );
99 //if ( rad == true ) this->RegisterPhysics( new G4RadioactiveDecayPhysics(verbose) );
100 this->RegisterPhysics( new G4RadioactiveDecayPhysics(verbose) );
102 size_t find = LEN_model.find("LEND__");
104 if ( find != G4String::npos )
106 evaluation=LEN_model;
107 evaluation.erase(0,find+6);
111 // Hadron Elastic scattering
112 if ( LEN_model == "HP" )
114 this->RegisterPhysics( new G4HadronElasticPhysicsHP(verbose) );
116 else if ( LEN_model == "LEND" )
118 this->RegisterPhysics( new G4HadronElasticPhysicsLEND(verbose,evaluation) );
119 G4DataQuestionaire itt(lend);
123 G4cout << "Shielding Physics List: Warning!" <<G4endl;
124 G4cout << "\"" << LEN_model << "\" is not valid for the low energy neutorn model." <<G4endl;
125 G4cout << "Neutron HP package will be used." <<G4endl;
126 this->RegisterPhysics( new G4HadronElasticPhysicsHP(verbose) );
129 G4HadronPhysicsShielding* hps;
131 if (HadrPhysVariant == "M") {
132 hps = new G4HadronPhysicsShielding("hInelastic Shielding", verbose, 9.5*GeV, 9.9*GeV);
134 hps = new G4HadronPhysicsShielding("hInelastic Shielding", verbose, 4.0*GeV, 5.0*GeV);
136 if ( LEN_model == "HP" )
140 else if ( LEN_model == "LEND" )
142 hps->UseLEND(evaluation);
146 //G4cout << "Shielding Physics List: Warning." <<G4endl;
147 //G4cout << "Name of Low Energy Neutron model " << LEN_model << " is invalid." <<G4endl;
148 //G4cout << "Will use neutron HP package." <<G4endl;
150 this->RegisterPhysics( hps );
151 //this->RegisterPhysics( new G4HadronPhysicsShielding(verbose,lend));
153 if ( LEN_model == "HP" ) {
154 //Activate prodcuton of fission fragments in neutronHP
155 char env_ff[]="G4NEUTRONHP_PRODUCE_FISSION_FRAGMENTS=1";
160 this->RegisterPhysics( new G4StoppingPhysics(verbose) );
163 this->RegisterPhysics( new G4IonQMDPhysics(verbose));
165 this->RegisterPhysics( new G4IonElasticPhysics(verbose));
167 // Neutron tracking cut --> not by default
168 // this->RegisterPhysics( new G4NeutronTrackingCut(verbose));
172 template<class T> TShielding<T>::~TShielding()
176 template<class T> void TShielding<T>::SetCuts()
178 if (this->verboseLevel >1){
179 G4cout << "Shielding::SetCuts:";
181 // " G4VUserPhysicsList::SetCutsWithDefault" method sets
182 // the default cut value for all particle types
184 this->SetCutsWithDefault();
186 //Set proton cut value to 0 for producing low energy recoil nucleus
187 this->SetCutValue(0, "proton");
189 // if (this->verboseLevel > 0)
190 // G4VUserPhysicsList::DumpCutValuesTable();