Geant4  9.6.p02
 All Classes 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
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 z;
112  G4int FindBinLocation(G4double energy) const;
113 
114  G4DataVector* energies; // Owned pointer
115  G4DataVector* data; // Owned pointer
116 
117  const G4VDataSetAlgorithm* algorithm; // Not owned pointer
118 
119  G4double unit1;
120  G4double unit2;
121 
122  size_t numberOfBins;
123 
124 };
125 
126 #endif