Geant4  9.6.p02
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4NeutronHPAngularP.hh
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 //
27 // $Id$
28 //
29 #ifndef G4NeutronHPAngularP_h
30 #define G4NeutronHPAngularP_h 1
31 
33 
34 #include "globals.hh"
36 
38 {
39  public:
40 
42  {
43  theCosTh = 0;
44  theProb = 0;
45  }
47  {
48  if(theCosTh!=0) delete [] theCosTh;
49  if(theProb!=0) delete [] theProb;
50  }
51 
52  inline void Init(std::ifstream & aDataFile)
53  {
54  G4double eNeu, cosTheta, probDist;
55  G4int nProb;
56  aDataFile >> eNeu >> nProb;
57  theManager.Init(aDataFile);
58  eNeu *= CLHEP::eV;
59  Init(eNeu, nProb);
60  for (G4int iii=0; iii<nProb; iii++)
61  {
62  aDataFile >> cosTheta >> probDist;
63  SetCosTh(iii, cosTheta);
64  SetProb(iii,probDist);
65  }
66  }
67 
68  inline void Init(G4double e, G4int n)
69  {
70  theCosTh = new G4double[n];
71  theProb = new G4double[n];
72  theEnergy = e;
73  nCoeff = n;
74  }
75 
76  inline void SetEnergy(G4double energy){ theEnergy = energy; }
77  inline void SetCosTh(G4int l, G4double coeff) {theCosTh[l]=coeff;}
78  inline void SetProb(G4int l, G4double coeff) {theProb[l]=coeff;}
79 
80  inline G4double GetCosTh(G4int l) {return theCosTh[l];}
81  inline G4double GetProb(G4int l) {return theProb[l];}
82  inline G4double GetEnergy(){return theEnergy;}
83  inline G4int GetNumberOfPoints(){ return nCoeff; }
84  inline G4double GetCosTh()
85  {
86  G4int i;
87  G4double rand = G4UniformRand();
88  G4double run=0, runo=0;
89  for (i=0; i<GetNumberOfPoints(); i++)
90  {
91  runo=run;
92  run += GetProb(i);
93  if(run>rand) break;
94  }
95  if(i == GetNumberOfPoints()) i--;
96  G4double costh = theInt.Interpolate(theManager.GetScheme(i), rand,
97  runo, run, GetCosTh(i-1), GetCosTh(i));
98  return costh;
99  }
100 
101  private:
102 
103  G4double theEnergy; // neutron energy
104  G4NeutronHPInterpolator theInt; // knows tointerpolate
105  G4int nCoeff;
106  G4InterpolationManager theManager; // knows the interpolation between stores
107  G4double * theCosTh;
108  G4double * theProb; // probability distribution as fcn of theta
109  // integral normalised to 1.
110 };
111 #endif