| 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 | //
|
|---|
| 36 | // -------------------------------------------------------------------
|
|---|
| 37 |
|
|---|
| 38 | //for the documentation of this class see also G4EMDataSet class
|
|---|
| 39 |
|
|---|
| 40 | #ifndef FluoDataSet_hh
|
|---|
| 41 | #define FluoDataSet_hh 1
|
|---|
| 42 |
|
|---|
| 43 | #include "globals.hh"
|
|---|
| 44 | #include "G4DataVector.hh"
|
|---|
| 45 | #include "G4VEMDataSet.hh"
|
|---|
| 46 |
|
|---|
| 47 | class G4VDataSetAlgorithm;
|
|---|
| 48 |
|
|---|
| 49 | class XrayFluoDataSet : public G4VEMDataSet {
|
|---|
| 50 |
|
|---|
| 51 | public:
|
|---|
| 52 |
|
|---|
| 53 | XrayFluoDataSet(G4int Z,
|
|---|
| 54 | G4DataVector* points,
|
|---|
| 55 | G4DataVector* values,
|
|---|
| 56 | const G4VDataSetAlgorithm* interpolation,
|
|---|
| 57 | G4double unitE = MeV, G4double unitData = barn);
|
|---|
| 58 |
|
|---|
| 59 | XrayFluoDataSet(G4int Z,
|
|---|
| 60 | const G4String& dataFile,
|
|---|
| 61 | const G4VDataSetAlgorithm* interpolation,
|
|---|
| 62 | G4double unitE = MeV, G4double unitData = barn);
|
|---|
| 63 |
|
|---|
| 64 | ~XrayFluoDataSet();
|
|---|
| 65 |
|
|---|
| 66 | //find the value corresponding to the energy e in the set
|
|---|
| 67 | //identified by id
|
|---|
| 68 | G4double FindValue(G4double e, G4int id = 0) const;
|
|---|
| 69 |
|
|---|
| 70 | void PrintData() const;
|
|---|
| 71 |
|
|---|
| 72 | const G4DataVector& GetEnergies(G4int i) const { return *energies; }
|
|---|
| 73 | const G4DataVector& GetData(G4int i) const { return *data; }
|
|---|
| 74 |
|
|---|
| 75 | private:
|
|---|
| 76 |
|
|---|
| 77 | void LoadData(const G4String& dataFile);
|
|---|
| 78 | G4int z;
|
|---|
| 79 | G4int FindBinLocation(G4double energy) const;
|
|---|
| 80 |
|
|---|
| 81 | G4DataVector* energies; // Owned pointer
|
|---|
| 82 | G4DataVector* data; // Owned pointer
|
|---|
| 83 |
|
|---|
| 84 | const G4VDataSetAlgorithm* algorithm; // Not owned pointer
|
|---|
| 85 |
|
|---|
| 86 | G4double unit1;
|
|---|
| 87 | G4double unit2;
|
|---|
| 88 |
|
|---|
| 89 | size_t numberOfBins;
|
|---|
| 90 |
|
|---|
| 91 | };
|
|---|
| 92 |
|
|---|
| 93 | #endif
|
|---|