source: trunk/examples/advanced/xray_fluorescence/include/XrayFluoDataSet.hh@ 1218

Last change on this file since 1218 was 807, checked in by garnier, 17 years ago

update

File size: 3.3 KB
RevLine 
[807]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
47class G4VDataSetAlgorithm;
48
49class XrayFluoDataSet : public G4VEMDataSet {
50
51public:
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) const;
69
70 virtual const G4VEMDataSet* GetComponent(G4int) const { return 0;}
71
72 virtual void AddComponent(G4VEMDataSet*) { }
73
74 virtual size_t NumberOfComponents() const { return 0; }
75
76
77 void PrintData() const;
78
79 const G4DataVector& GetEnergies(G4int) const { return *energies; }
80 const G4DataVector& GetData(G4int) const { return *data; }
81
82private:
83
84 void LoadData(const G4String& dataFile);
85 G4int z;
86 G4int FindBinLocation(G4double energy) const;
87
88 G4DataVector* energies; // Owned pointer
89 G4DataVector* data; // Owned pointer
90
91 const G4VDataSetAlgorithm* algorithm; // Not owned pointer
92
93 G4double unit1;
94 G4double unit2;
95
96 size_t numberOfBins;
97
98};
99
100#endif
Note: See TracBrowser for help on using the repository browser.