Geant4-11
G4ParticleHPContEnergyAngular.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// particle_hp -- source file
27// J.P. Wellisch, Nov-1996
28// A prototype of the low energy neutron transport model.
29//
30// 080721 To be "ClearHistories" effective, the selection scheme of angular distribution is modified by T. Koi
31//
32// P. Arce, Dec-2014 Conversion neutron_hp to particle_hp
33//
35
38 G4double /*mass*/)
39{
40 G4ReactionProduct* result;
41 G4int i(0);
42 G4int it(0);
43 for (i = 0; i < nEnergy; i++) {
44 it = i;
45#ifdef PHP_AS_HP
46 if(theAngular[i].GetEnergy() > anEnergy) break;
47#else
48 if(theAngular[i].GetEnergy() >= anEnergy) break;
49#endif
50 }
51
52 if (std::getenv("G4PHPTEST") )
53 G4cout << i << " G4ParticleHPContEnergyAngular dataE "
54 << theAngular[i].GetEnergy()
55 << " > " << anEnergy << " it_theAngular " << it << " interpolation "
56 << theInterpolation << G4endl; //GDEB
57
58 G4double targetMass = GetTarget()->GetMass();
59 if (it == 0) {
63 result = theAngular[0].Sample(anEnergy, massCode, targetMass,
66
67 } else {
68 // interpolation through alternating sampling. This needs improvement @@@
69 // This is the cause of the He3 problem !!!!!!!!
70 // See to it, if you can improve this.
71 //G4double random = G4UniformRand();
72 //G4double deltaE = theAngular[it].GetEnergy()-theAngular[it-1].GetEnergy();
73 //G4double offset = theAngular[it].GetEnergy()-anEnergy;
74 //if(random<offset/deltaE) it--;
75 //--- create new
76 // if (theManager.GetScheme(0) != LINLIN) {
77 // // asserted in G4ParticleHPContEnergyAngular::init there is only one range
78#ifdef PHP_AS_HP
82 result = theAngular[it].Sample(anEnergy, massCode, targetMass,
85#else
86 if (std::getenv("G4PHPTEST") )
87 G4cout << i << " G4ParticleHPContEnergyAngular To BUILDBYINTERPOLATION "
88 << it << " : " << theAngular[it].GetEnergy()<< " , "
89 << theAngular[it].GetNEnergies() << " " << it-1 << " : "
90 << theAngular[it-1].GetEnergy()<< " : "
91 << theAngular[it-1].GetNEnergies() << G4endl; //GDEB
92
93 if (fCacheAngular.Get() == NULL) {
95 fCacheAngular.Put(angpar);
96 }
99 (theAngular[it-1]), (theAngular[it]) );
103
104 result = fCacheAngular.Get()->Sample(anEnergy, massCode, targetMass,
107#endif
108 } // end (it != 0) branch
109
110 return result;
111}
112
113
115{
116 G4double result(0);
117 if (currentMeanEnergy.Get() < -1) {
118 throw G4HadronicException(__FILE__, __LINE__,
119 "G4ParticleHPContEnergyAngular: Logical error in Product class");
120 } else {
121 result = currentMeanEnergy.Get();
122 }
124 return result;
125}
126
127
129{
130 if (theAngular!= NULL) {
131 for (G4int i = 0; i < nEnergy; i++) theAngular[i].ClearHistories();
132 }
133
134 // Added fCacheAngular ClearHistories() - this is the one actually used!
135 // Maybe theAngular does not even need ClearHistories()?
137}
138
double G4double
Definition: G4Types.hh:83
int G4int
Definition: G4Types.hh:85
#define G4endl
Definition: G4ios.hh:57
G4GLOB_DLL std::ostream G4cout
value_type & Get() const
Definition: G4Cache.hh:315
void Put(const value_type &val) const
Definition: G4Cache.hh:321
G4InterpolationScheme GetScheme(G4int index) const
G4ReactionProduct * Sample(G4double anEnergy, G4double massCode, G4double mass, G4int angularRep, G4int interpol)
void SetPrimary(G4ReactionProduct *aPrimary)
void SetTarget(G4ReactionProduct *aTarget)
void SetInterpolation(G4int theInterpolation)
void SetTargetCode(G4double aTargetCode)
void BuildByInterpolation(G4double anEnergy, G4InterpolationScheme aScheme, G4ParticleHPContAngularPar &store1, G4ParticleHPContAngularPar &store2)
G4Cache< G4ParticleHPContAngularPar * > fCacheAngular
G4ReactionProduct * Sample(G4double anEnergy, G4double massCode, G4double mass)
G4double GetMass() const