Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
XrayFluoDataSet.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: XrayFluoDataSet.hh
28 // GEANT4 tag $Name: xray_fluo-V03-02-00
29 //
30 // Author: Elena Guardincerri (Elena.Guardincerri@ge.infn.it)
31 //
32 // History:
33 // -----------
34 // 28 Nov 2001 Elena Guardincerri Created
35 // 2001 - 2009 Alfonso Mantero Mantained
36 // -------------------------------------------------------------------
37 
38 //for the documentation of this class see also G4EMDataSet class
39 
40 #ifndef FluoDataSet_hh
41 #define FluoDataSet_hh 1
42 
44 
45 #include "globals.hh"
46 #include "G4DataVector.hh"
47 #include "G4VEMDataSet.hh"
48 
50 
51 class XrayFluoDataSet : public G4VEMDataSet {
52 
53 public:
54 
56  G4DataVector* points,
57  G4DataVector* values,
58  const G4VDataSetAlgorithm* interpolation,
59  G4double unitE = CLHEP::MeV, G4double unitData = CLHEP::barn);
60 
62  const G4String& dataFile,
63  const G4VDataSetAlgorithm* interpolation,
64  G4double unitE = CLHEP::MeV, G4double unitData = CLHEP::barn);
65 
67 
68  //find the value corresponding to the energy e in the set
69  //identified by id
70  G4double FindValue(G4double e, G4int) const;
71 
72  virtual const G4VEMDataSet* GetComponent(G4int) const { return 0;}
73 
74  virtual void AddComponent(G4VEMDataSet*) { }
75 
76  virtual size_t NumberOfComponents() const { return 0; }
77 
79  = 0) {}
80 
81  virtual G4bool SaveData(const G4String&) const {return true;}
82 
83  virtual G4double RandomSelect(int = 0) const {return 0;}
84 
85  void PrintData() const;
86 
87  const G4DataVector& GetEnergies(G4int) const { return *energies; }
88  const G4DataVector& GetData(G4int) const { return *data; }
89 
90  virtual const G4DataVector& GetLogEnergies(G4int ) const { return *energies; }
91  virtual const G4DataVector& GetLogData(G4int ) const { return *data; }
92  // void SetEnergiesData(G4DataVector* x, G4DataVector* data, G4int component=0) {;}
93 
95  G4DataVector* ,
96  G4DataVector* ,
97  G4DataVector* ,
98  G4int ) {;}
99 
100  virtual G4bool LoadNonLogData(const G4String& ) {return false;}
101 
102 // G4bool SaveData(const G4String& fileName) const {return 0;}
103 
104 
105 
106 private:
107 
108 
109  G4bool LoadData(const G4String& dataFile);
110 
111  G4int FindBinLocation(G4double energy) const;
112 
113  G4DataVector* energies; // Owned pointer
114  G4DataVector* data; // Owned pointer
115 
116  const G4VDataSetAlgorithm* algorithm; // Not owned pointer
117 
118  G4double unit1;
119  G4double unit2;
120 
121  size_t numberOfBins;
122 
123 };
124 
125 #endif
const G4DataVector & GetEnergies(G4int) const
XrayFluoDataSet(G4int Z, G4DataVector *points, G4DataVector *values, const G4VDataSetAlgorithm *interpolation, G4double unitE=CLHEP::MeV, G4double unitData=CLHEP::barn)
virtual const G4VEMDataSet * GetComponent(G4int) const
virtual size_t NumberOfComponents() const
int G4int
Definition: G4Types.hh:78
virtual void AddComponent(G4VEMDataSet *)
double precision function energy(A, Z)
Definition: dpm25nuc6.f:4106
void PrintData() const
virtual void SetLogEnergiesData(G4DataVector *, G4DataVector *, G4DataVector *, G4DataVector *, G4int)
bool G4bool
Definition: G4Types.hh:79
virtual G4bool LoadNonLogData(const G4String &)
virtual G4bool SaveData(const G4String &) const
virtual G4double RandomSelect(int=0) const
G4double FindValue(G4double e, G4int) const
virtual const G4DataVector & GetLogEnergies(G4int) const
virtual const G4DataVector & GetLogData(G4int) const
double G4double
Definition: G4Types.hh:76
virtual void SetEnergiesData(G4DataVector *, G4DataVector *, int=0)
const XML_Char const XML_Char * data
const G4DataVector & GetData(G4int) const