source: trunk/source/processes/hadronic/models/neutron_hp/include/G4NeutronHPLegendreStore.hh@ 1199

Last change on this file since 1199 was 1196, checked in by garnier, 16 years ago

update CVS release candidate geant4.9.3.01

File size: 3.7 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: G4NeutronHPLegendreStore.hh,v 1.12 2008/06/13 00:29:26 tkoi Exp $
28// GEANT4 tag $Name: geant4-09-03-cand-01 $
29//
30#ifndef G4NeutronHPLegendreStore_h
31#define G4NeutronHPLegendreStore_h 1
32
33#include "G4NeutronHPLegendreTable.hh"
34#include "G4InterpolationManager.hh"
35#include "G4ios.hh"
36#include <fstream>
37
38class G4NeutronHPLegendreStore
39{
40 public:
41
42 G4NeutronHPLegendreStore(G4int n)
43 {
44 theCoeff = new G4NeutronHPLegendreTable[n];
45 nEnergy = n;
46 }
47
48 ~G4NeutronHPLegendreStore()
49 {
50 delete [] theCoeff;
51 }
52
53 inline void Init(G4int i, G4double e, G4int n)
54 {
55 theCoeff[i].Init(e, n);
56 }
57 inline void SetNPoints(G4int n) { nEnergy = n; }
58 inline void SetEnergy(G4int i, G4double energy) { theCoeff[i].SetEnergy(energy); }
59 inline void SetTemperature(G4int i, G4double temp) { theCoeff[i].SetTemperature(temp); }
60 inline void SetCoeff(G4int i, G4int l, G4double coeff) {theCoeff[i].SetCoeff(l, coeff); }
61 inline void SetCoeff(G4int i, G4NeutronHPLegendreTable * theTable)
62 {
63 if(i>nEnergy) throw G4HadronicException(__FILE__, __LINE__, "LegendreTableIndex out of range");
64 theCoeff[i] = *theTable;
65// not here -- see G4NeutronHPPhotonDist.cc line 275
66// delete theTable;
67 }
68
69 inline G4double GetCoeff(G4int i, G4int l) {return theCoeff[i].GetCoeff(l);}
70 inline G4double GetEnergy(G4int i){return theCoeff[i].GetEnergy();}
71 inline G4double GetTemperature(G4int i){return theCoeff[i].GetTemperature();}
72 inline G4int GetNumberOfPoly(G4int i) {return theCoeff[i].GetNumberOfPoly();}
73
74 G4double SampleDiscreteTwoBody (G4double anEnergy);
75 G4double SampleElastic (G4double anEnergy);
76 G4double Sample (G4double energy);
77 G4double SampleMax (G4double energy);
78 G4double Integrate(G4int k, G4double costh);
79
80 void InitInterpolation(std::ifstream & aDataFile)
81 {
82 theManager.Init(aDataFile);
83 }
84
85 void SetManager(G4InterpolationManager & aManager)
86 {
87 theManager = aManager;
88 }
89
90 private:
91
92 G4int nEnergy;
93 G4NeutronHPLegendreTable * theCoeff;
94 G4InterpolationManager theManager; // interpolate between different Tables
95};
96#endif
Note: See TracBrowser for help on using the repository browser.