Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4NeutronHPArbitaryTab.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 //
28 #ifndef G4NeutronHPArbitaryTab_h
29 #define G4NeutronHPArbitaryTab_h 1
30 
31 #include <fstream>
33 
34 #include "globals.hh"
35 #include "G4ios.hh"
36 #include "Randomize.hh"
37 #include "G4NeutronHPVector.hh"
38 #include "G4VNeutronHPEDis.hh"
40 
41 // we will need a List of these .... one per term.
42 
44 {
45  public:
47  {
48  theDistFunc = 0;
49  }
51  {
52  if(theDistFunc!=0) delete [] theDistFunc;
53  }
54 
55  inline void Init(std::istream & theData)
56  {
57  G4int i;
58  theFractionalProb.Init(theData, CLHEP::eV);
59  theData >> nDistFunc; // = number of incoming n energy points
60  theDistFunc = new G4NeutronHPVector [nDistFunc];
61  theManager.Init(theData);
62  G4double currentEnergy;
63  for(i=0; i<nDistFunc; i++)
64  {
65  theData >> currentEnergy;
66  theDistFunc[i].SetLabel(currentEnergy*CLHEP::eV);
67  theDistFunc[i].Init(theData, CLHEP::eV);
68  //************************************************************************
69  //EMendoza:
70  //ThinOut() assumes that the data is linear-linear, what is false:
71  //theDistFunc[i].ThinOut(0.02); // @@@ optimization to be finished.
72  //************************************************************************
73  }
74 
75  //************************************************************************
76  //EMendoza:
77  //Here we calculate the thresholds for the 2D sampling:
78  for(i=0; i<nDistFunc; i++){
79  G4int np=theDistFunc[i].GetVectorLength();
80  theLowThreshold[i]=theDistFunc[i].GetEnergy(0);
81  theHighThreshold[i]=theDistFunc[i].GetEnergy(np-1);
82  for(G4int j=0;j<np-1;j++){
83  if(theDistFunc[i].GetXsec(j+1)>1.e-20){
84  theLowThreshold[i]=theDistFunc[i].GetEnergy(j);
85  break;
86  }
87  }
88  for(G4int j=1;j<np;j++){
89  if(theDistFunc[i].GetXsec(j-1)>1.e-20){
90  theHighThreshold[i]=theDistFunc[i].GetEnergy(j);
91  }
92  }
93  }
94  //************************************************************************
95  }
96 
98  {
99  return theFractionalProb.GetY(anEnergy);
100  }
101 
102  G4double Sample(G4double anEnergy) ;
103 
104  private:
105 
106  G4NeutronHPVector theFractionalProb;
107  G4int nDistFunc;
108  G4InterpolationManager theManager; // knows the interpolation between stores
109  G4NeutronHPVector * theDistFunc; // one per incoming energy
110  G4NeutronHPVector theBuffer;
111  //************************************************************************
112  //EMendoza:
113  G4double theLowThreshold[1000];
114  G4double theHighThreshold[1000];
115  //************************************************************************
116 
117 };
118 
119 #endif
G4double GetEnergy(G4int i) const
void SetLabel(G4double aLabel)
G4double GetY(G4double x)
G4int GetVectorLength() const
void Init(std::istream &theData)
void Init(G4int aScheme, G4int aRange)
void Init(std::istream &aDataFile, G4int total, G4double ux=1., G4double uy=1.)
int G4int
Definition: G4Types.hh:78
double G4double
Definition: G4Types.hh:76
G4double Sample(G4double anEnergy)
G4double GetFractionalProbability(G4double anEnergy)