Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4HadronElasticPhysicsLEND.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: G4HadronElasticPhysicsLEND.cc 71037 2013-06-10 09:20:54Z gcosmo $
27 //
28 //---------------------------------------------------------------------------
29 //
30 // ClassName: G4HadronElasticPhysicsLEND
31 //
32 // Author: 02 June 2011 Tatsumi Koi
33 //
34 // Modified:
35 // 03.06.2011 V.Ivanchenko change design - now first default constructor
36 // is called, LEND model and cross section are added on top
37 //
38 //----------------------------------------------------------------------------
39 //
40 // LEND model for n with E < 20 MeV
41 // LEND cross sections for n n with E < 20 MeV
42 
44 #include "G4SystemOfUnits.hh"
46 #include "G4Neutron.hh"
47 #include "G4HadronicProcess.hh"
48 #include "G4HadronElastic.hh"
49 
50 #include "G4LENDElastic.hh"
52 
53 // factory
55 //
57 
58 G4ThreadLocal G4bool G4HadronElasticPhysicsLEND::wasActivated = false;
59 G4ThreadLocal G4HadronElasticPhysics* G4HadronElasticPhysicsLEND::mainElasticBuilder = 0;
60 
62  : G4VPhysicsConstructor("hElasticWEL_CHIPS_LEND"), verbose(ver),
63  evaluation(eva)
64 {
65  if(verbose > 1) {
66  G4cout << "### G4HadronElasticPhysicsLEND: " << GetPhysicsName()
67  << G4endl;
68  }
69  mainElasticBuilder = new G4HadronElasticPhysics(verbose);
70 }
71 
73 {
74  delete mainElasticBuilder;
75 }
76 
78 {
79  // G4cout << "G4HadronElasticPhysics::ConstructParticle" << G4endl;
80  mainElasticBuilder->ConstructParticle();
81 }
82 
84 {
85  if(wasActivated) return;
86  wasActivated = true;
87  //Needed because this is a TLS object and this method is called by all threads
88  if ( ! mainElasticBuilder ) mainElasticBuilder = new G4HadronElasticPhysics(verbose);
89  mainElasticBuilder->ConstructProcess();
90 
91  mainElasticBuilder->GetNeutronModel()->SetMinEnergy(19.5*MeV);
92 
93  G4HadronicProcess* hel = mainElasticBuilder->GetNeutronProcess();
94 
96  if ( evaluation.size() > 0 ) lend->ChangeDefaultEvaluation( evaluation );
97  //lend->AllowNaturalAbundanceTarget();
99  hel->RegisterMe(lend);
101  if ( evaluation.size() > 0 ) lend_XS->ChangeDefaultEvaluation( evaluation );
102  //lend_XS->AllowNaturalAbundanceTarget();
103  lend_XS->AllowAnyCandidateTarget();
104  hel->AddDataSet( lend_XS );
105 
106  if(verbose > 1) {
107  G4cout << "### HadronElasticPhysicsLEND is constructed"
108  << G4endl;
109  }
110 }
111 
112 
G4HadronElastic * GetNeutronModel()
void AllowAnyCandidateTarget()
Definition: G4LENDModel.hh:62
G4HadronicProcess * GetNeutronProcess()
#define G4ThreadLocal
Definition: tls.hh:52
int G4int
Definition: G4Types.hh:78
void RegisterMe(G4HadronicInteraction *a)
G4_DECLARE_PHYSCONSTR_FACTORY(G4HadronElasticPhysicsLEND)
void SetMinEnergy(G4double anEnergy)
void AddDataSet(G4VCrossSectionDataSet *aDataSet)
G4GLOB_DLL std::ostream G4cout
void ChangeDefaultEvaluation(G4String name)
Definition: G4LENDModel.hh:60
bool G4bool
Definition: G4Types.hh:79
const G4String & GetPhysicsName() const
static G4Neutron * Neutron()
Definition: G4Neutron.cc:104
#define G4endl
Definition: G4ios.hh:61
G4HadronElasticPhysicsLEND(G4int ver=1, G4String evaluation="")
void ChangeDefaultEvaluation(G4String name_tmp)