Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer 3 // * License and Disclaimer * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th 5 // * The Geant4 software is copyright of the Copyright Holders of * 6 // * the Geant4 Collaboration. It is provided 6 // * the Geant4 Collaboration. It is provided under the terms and * 7 // * conditions of the Geant4 Software License 7 // * conditions of the Geant4 Software License, included in the file * 8 // * LICENSE and available at http://cern.ch/ 8 // * LICENSE and available at http://cern.ch/geant4/license . These * 9 // * include a list of copyright holders. 9 // * include a list of copyright holders. * 10 // * 10 // * * 11 // * Neither the authors of this software syst 11 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 12 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 13 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 14 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file 15 // * use. Please see the license in the file LICENSE and URL above * 16 // * for the full disclaimer and the limitatio 16 // * for the full disclaimer and the limitation of liability. * 17 // * 17 // * * 18 // * This code implementation is the result 18 // * This code implementation is the result of the scientific and * 19 // * technical work of the GEANT4 collaboratio 19 // * technical work of the GEANT4 collaboration. * 20 // * By using, copying, modifying or distri 20 // * By using, copying, modifying or distributing the software (or * 21 // * any work based on the software) you ag 21 // * any work based on the software) you agree to acknowledge its * 22 // * use in resulting scientific publicati 22 // * use in resulting scientific publications, and indicate your * 23 // * acceptance of all terms of the Geant4 Sof 23 // * acceptance of all terms of the Geant4 Software license. * 24 // ******************************************* 24 // ******************************************************************** 25 // 25 // 26 // 26 // >> 27 // $Id: XrayFluoDataSet.hh >> 28 // GEANT4 tag $Name: xray_fluo-V03-02-00 27 // 29 // 28 // Author: Elena Guardincerri (Elena.Guardince 30 // Author: Elena Guardincerri (Elena.Guardincerri@ge.infn.it) 29 // 31 // 30 // History: 32 // History: 31 // ----------- 33 // ----------- 32 // 28 Nov 2001 Elena Guardincerri Created 34 // 28 Nov 2001 Elena Guardincerri Created 33 // 2001 - 2009 Alfonso Mantero Mantaine 35 // 2001 - 2009 Alfonso Mantero Mantained 34 // ------------------------------------------- 36 // ------------------------------------------------------------------- 35 37 36 //for the documentation of this class see also 38 //for the documentation of this class see also G4EMDataSet class 37 39 38 #ifndef FluoDataSet_hh 40 #ifndef FluoDataSet_hh 39 #define FluoDataSet_hh 1 41 #define FluoDataSet_hh 1 40 42 41 #include <CLHEP/Units/SystemOfUnits.h> 43 #include <CLHEP/Units/SystemOfUnits.h> 42 44 43 #include "globals.hh" 45 #include "globals.hh" 44 #include "G4DataVector.hh" 46 #include "G4DataVector.hh" 45 #include "G4VEMDataSet.hh" 47 #include "G4VEMDataSet.hh" 46 48 47 class G4VDataSetAlgorithm; 49 class G4VDataSetAlgorithm; 48 50 49 class XrayFluoDataSet : public G4VEMDataSet { 51 class XrayFluoDataSet : public G4VEMDataSet { 50 52 51 public: 53 public: 52 54 53 XrayFluoDataSet(G4int Z, 55 XrayFluoDataSet(G4int Z, 54 G4DataVector* points, 56 G4DataVector* points, 55 G4DataVector* values, 57 G4DataVector* values, 56 const G4VDataSetAlgorithm* interpolati 58 const G4VDataSetAlgorithm* interpolation, 57 G4double unitE = CLHEP::MeV, G4double 59 G4double unitE = CLHEP::MeV, G4double unitData = CLHEP::barn); 58 60 59 XrayFluoDataSet(G4int Z, 61 XrayFluoDataSet(G4int Z, 60 const G4String& dataFile, 62 const G4String& dataFile, 61 const G4VDataSetAlgorithm* interpolati 63 const G4VDataSetAlgorithm* interpolation, 62 G4double unitE = CLHEP::MeV, G4double 64 G4double unitE = CLHEP::MeV, G4double unitData = CLHEP::barn); 63 65 64 ~XrayFluoDataSet(); 66 ~XrayFluoDataSet(); 65 67 66 //find the value corresponding to the energy 68 //find the value corresponding to the energy e in the set 67 //identified by id 69 //identified by id 68 G4double FindValue(G4double e, G4int) const; 70 G4double FindValue(G4double e, G4int) const; 69 71 70 virtual const G4VEMDataSet* GetComponent(G4i 72 virtual const G4VEMDataSet* GetComponent(G4int) const { return 0;} 71 73 72 virtual void AddComponent(G4VEMDataSet*) { } 74 virtual void AddComponent(G4VEMDataSet*) { } 73 75 74 virtual size_t NumberOfComponents() const { 76 virtual size_t NumberOfComponents() const { return 0; } 75 77 76 virtual void SetEnergiesData(G4DataVector*, 78 virtual void SetEnergiesData(G4DataVector*, G4DataVector*, int 77 = 0) {} 79 = 0) {} 78 80 79 virtual G4bool SaveData(const G4String&) con 81 virtual G4bool SaveData(const G4String&) const {return true;} 80 82 81 virtual G4double RandomSelect(int = 0) const 83 virtual G4double RandomSelect(int = 0) const {return 0;} 82 84 83 void PrintData() const; 85 void PrintData() const; 84 86 85 const G4DataVector& GetEnergies(G4int) const 87 const G4DataVector& GetEnergies(G4int) const { return *energies; } 86 const G4DataVector& GetData(G4int) const { r 88 const G4DataVector& GetData(G4int) const { return *data; } 87 89 88 virtual const G4DataVector& GetLogEnergies(G 90 virtual const G4DataVector& GetLogEnergies(G4int ) const { return *energies; } 89 virtual const G4DataVector& GetLogData(G4int 91 virtual const G4DataVector& GetLogData(G4int ) const { return *data; } 90 // void SetEnergiesData(G4DataVector* x, G4 92 // void SetEnergiesData(G4DataVector* x, G4DataVector* data, G4int component=0) {;} 91 93 92 virtual void SetLogEnergiesData(G4DataVector 94 virtual void SetLogEnergiesData(G4DataVector* , 93 G4DataVector 95 G4DataVector* , 94 G4DataVector 96 G4DataVector* , 95 G4DataVector 97 G4DataVector* , 96 G4int ) {;} 98 G4int ) {;} 97 99 98 virtual G4bool LoadNonLogData(const G4String 100 virtual G4bool LoadNonLogData(const G4String& ) {return false;} 99 101 100 // G4bool SaveData(const G4String& fileName) 102 // G4bool SaveData(const G4String& fileName) const {return 0;} 101 103 102 104 103 105 104 private: 106 private: 105 107 106 108 107 G4bool LoadData(const G4String& dataFile); 109 G4bool LoadData(const G4String& dataFile); 108 110 >> 111 G4int z; 109 G4int FindBinLocation(G4double energy) const 112 G4int FindBinLocation(G4double energy) const; 110 113 111 G4DataVector* energies; // Owned pointer 114 G4DataVector* energies; // Owned pointer 112 G4DataVector* data; // Owned pointer 115 G4DataVector* data; // Owned pointer 113 116 114 const G4VDataSetAlgorithm* algorithm; // Not 117 const G4VDataSetAlgorithm* algorithm; // Not owned pointer 115 118 116 G4double unit1; 119 G4double unit1; 117 G4double unit2; 120 G4double unit2; 118 121 119 size_t numberOfBins; 122 size_t numberOfBins; 120 123 121 }; 124 }; 122 125 123 #endif 126 #endif 124 127