Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4HadronElasticPhysicsHP.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: G4HadronElasticPhysicsHP.cc 71037 2013-06-10 09:20:54Z gcosmo $
27 //
28 //---------------------------------------------------------------------------
29 //
30 // ClassName: G4HadronElasticPhysicsHP
31 //
32 // Author: 3 June 2010 V. Ivanchenko
33 //
34 // Modified:
35 // 03.06.2011 V.Ivanchenko change design - now first default constructor
36 // is called, HP model and cross section are added on top
37 //
38 //----------------------------------------------------------------------------
39 //
40 // HP model for n with E < 20 MeV
41 
43 #include "G4SystemOfUnits.hh"
45 #include "G4Neutron.hh"
46 #include "G4HadronicProcess.hh"
47 #include "G4HadronElastic.hh"
48 #include "G4NeutronHPElastic.hh"
50 
51 // factory
53 //
55 
56 G4ThreadLocal G4bool G4HadronElasticPhysicsHP::wasActivated = false;
57 G4ThreadLocal G4HadronElasticPhysics* G4HadronElasticPhysicsHP::mainElasticBuilder = 0;
58 
60  : G4VPhysicsConstructor("hElasticWEL_CHIPS_HP"), verbose(ver)
61 {
62  if(verbose > 1) {
63  G4cout << "### G4HadronElasticPhysicsHP: " << GetPhysicsName()
64  << G4endl;
65  }
66  mainElasticBuilder = new G4HadronElasticPhysics(verbose);
67 }
68 
70 {
71  delete mainElasticBuilder;
72 }
73 
75 {
76  // G4cout << "G4HadronElasticPhysics::ConstructParticle" << G4endl;
77  mainElasticBuilder->ConstructParticle();
78 }
79 
81 {
82  if(wasActivated) { return; }
83  wasActivated = true;
84  //Needed because this is a TLS object and this method is called by all threads
85  if ( ! mainElasticBuilder ) mainElasticBuilder = new G4HadronElasticPhysics(verbose);
86  mainElasticBuilder->ConstructProcess();
87 
88  mainElasticBuilder->GetNeutronModel()->SetMinEnergy(19.5*MeV);
89 
90  G4HadronicProcess* hel = mainElasticBuilder->GetNeutronProcess();
92  hel->RegisterMe(hp);
94 
95  if(verbose > 1) {
96  G4cout << "### HadronElasticPhysicsHP is constructed "
97  << G4endl;
98  }
99 }
100 
101 
G4HadronElastic * GetNeutronModel()
G4HadronicProcess * GetNeutronProcess()
#define G4ThreadLocal
Definition: tls.hh:52
int G4int
Definition: G4Types.hh:78
void RegisterMe(G4HadronicInteraction *a)
void SetMinEnergy(G4double anEnergy)
void AddDataSet(G4VCrossSectionDataSet *aDataSet)
G4GLOB_DLL std::ostream G4cout
bool G4bool
Definition: G4Types.hh:79
G4_DECLARE_PHYSCONSTR_FACTORY(G4HadronElasticPhysicsHP)
const G4String & GetPhysicsName() const
#define G4endl
Definition: G4ios.hh:61