source: trunk/source/processes/hadronic/models/neutron_hp/include/G4NeutronHPPartial.hh @ 1340

Last change on this file since 1340 was 1340, checked in by garnier, 14 years ago

update ti head

File size: 4.2 KB
Line 
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: G4NeutronHPPartial.hh,v 1.13 2007/06/18 20:56:05 tkoi Exp $
28// GEANT4 tag $Name: geant4-09-03-ref-09 $
29//
30// 070618 Comment out unused private member leaking by T. Koi
31//
32#ifndef G4NeutronHPPartial_h
33#define G4NeutronHPPartial_h 1
34
35#include "globals.hh"
36#include "G4NeutronHPVector.hh"
37#include "G4InterpolationManager.hh"
38#include "G4NeutronHPInterpolator.hh"
39
40class G4NeutronHPPartial
41{
42  public:
43 
44  G4NeutronHPPartial(G4int n)
45  { 
46    X = new G4double[n];
47    data = new G4NeutronHPVector[n];
48    nData = n;
49    T=0;
50  }
51 
52  G4NeutronHPPartial(G4int n1, G4int n2)
53  {
54    T = new G4double[n2];
55    X = new G4double[n1];
56    data = new G4NeutronHPVector[n1];
57    nData = std::max(n1,n2);
58  } 
59 
60  void InitInterpolation(G4int i, std::ifstream & aDataFile)
61  {
62    data[i].InitInterpolation(aDataFile);
63  }
64 
65  void InitInterpolation(std::ifstream & aDataFile)
66  {
67    theManager.Init(aDataFile);
68  }
69 
70  void Init(std::ifstream & aDataFile)
71  {
72    G4int i;
73    G4double e;
74    for( i=0; i<nData; i++)
75    {
76      aDataFile >> e;
77      e *= eV;
78      SetX(i,e);
79      InitData(i, aDataFile, eV); // energy and probability for gammas
80    } 
81  }
82 
83  void InitData(G4int i, std::ifstream & aDataFile, G4double unit=1.)
84  {
85    G4int ii;
86    G4double eg, pg;
87    G4int neg;
88    aDataFile >> neg;
89    data[i].InitInterpolation(aDataFile);
90    for (ii=0; ii<neg; ii++)
91    { 
92      aDataFile >> eg >> pg;
93      eg *= unit;
94      SetX(i,ii,eg);
95      SetY(i,ii,pg);
96    }         
97  }
98 
99  ~G4NeutronHPPartial()
100  {
101    delete [] X;
102    if(T!=0) delete [] T;
103    delete [] data;
104  }
105  inline G4int GetNumberOfEnergies() {return nData;}
106 
107  inline void SetX(G4int i, G4double x) {X[i]=x;}
108  inline void SetT(G4int i, G4double x) {T[i]=x;}
109  inline void SetX(G4int i, G4int j, G4double x) {data[i].SetX(j,x);}
110  inline void SetY(G4int i, G4int j, G4double y) {data[i].SetY(j,y);}
111 
112  inline G4double GetX(G4int i) {return X[i];}
113  inline G4double GetT(G4int i) {return T[i];}
114  inline G4double GetX(G4int i, G4int j) {return data[i].GetX(j);}
115  inline G4double GetY(G4int i, G4int j) {return data[i].GetY(j);}
116  inline G4double GetY(G4int i, G4double e) {return data[i].GetY(e);}
117  inline G4int GetNEntries(G4int i) {return data[i].GetVectorLength();}
118  G4NeutronHPVector * GetY(G4double e1);
119  G4double Sample(G4double x);
120 
121  private:
122 
123  G4double * X;
124  G4double * T;
125  G4NeutronHPVector * data;
126  // TKDB
127  //G4NeutronHPVector * theBuffer;
128  G4int nData;
129  G4InterpolationManager theManager; // interpolate between different data[i]
130  G4NeutronHPInterpolator theInt;
131};
132
133#endif
Note: See TracBrowser for help on using the repository browser.