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

Last change on this file since 1321 was 1230, checked in by garnier, 14 years ago

update to geant4.9.3

File size: 4.2 KB
Line 
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
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  virtual void SetEnergiesData(G4DataVector*, G4DataVector*, int
77    = 0) {}
78
79  virtual G4bool SaveData(const G4String&) const {return true;}
80
81  virtual G4double RandomSelect(int = 0) const {return 0;}
82
83  void PrintData() const;
84
85  const G4DataVector& GetEnergies(G4int) const { return *energies; }
86  const G4DataVector& GetData(G4int) const { return *data; }
87 
88  virtual const G4DataVector& GetLogEnergies(G4int ) const { return *energies; }
89  virtual const G4DataVector& GetLogData(G4int ) const { return *data; }
90  //  void SetEnergiesData(G4DataVector* x, G4DataVector* data, G4int component=0) {;}
91 
92  virtual void SetLogEnergiesData(G4DataVector* ,
93                                  G4DataVector* ,
94                                  G4DataVector* ,
95                                  G4DataVector* ,
96                                  G4int ) {;}
97
98  virtual G4bool LoadNonLogData(const G4String& ) {return false;}
99
100//  G4bool SaveData(const G4String& fileName) const {return 0;}
101
102
103
104private:
105
106  G4bool LoadData(const G4String& dataFile);
107
108  G4int z;
109  G4int FindBinLocation(G4double energy) const;
110
111  G4DataVector* energies; // Owned pointer
112  G4DataVector* data;     // Owned pointer
113
114  const G4VDataSetAlgorithm* algorithm; // Not owned pointer
115 
116  G4double unit1;
117  G4double unit2;
118
119  size_t numberOfBins;
120
121};
122
123
124 
125#endif
Note: See TracBrowser for help on using the repository browser.