Geant4  10.02
XrayFluoRunAction.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: XrayFluoRunAction.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 
39 #ifndef XrayFluoRunAction_h
40 #define XrayFluoRunAction_h 1
41 
42 #include "G4UserRunAction.hh"
43 #include "globals.hh"
44 #include <map>
45 
46 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
47 
48 class G4Run;
49 class XrayFluoDataSet;
50 class G4DataVector;
51 
53 {
54 
55 public:
57 
59  const XrayFluoDataSet* GetSet() const;
60  const XrayFluoDataSet* GetGammaSet() const;
61  const XrayFluoDataSet* GetAlphaSet() const;
62 
63  // const XrayFluoDataSet* GetEfficiencySet();
64  G4DataVector* GetEnergies() const;
65  G4DataVector* GetData() const;
66 
67 
68 public:
69  void BeginOfRunAction(const G4Run*);
70  void EndOfRunAction(const G4Run*);
71 
72  //returns the sum of the element of data
73  G4double GetDataSum() const;
74 
75  //calulates the maximum integer contained in energy
76  //choose from dataMap and energyMap the set of values
77  //corresponding to the calculated integer
78  //returns a value of energy chosen randomly from this set
79  // G4double GetInfData(G4double energy, G4double random, G4int posIndex);
80 
81  //calulates the minimum integer contained in energy
82  //choose from dataMap and energyMap the set of values
83  //corresponding to the calculated integer
84  //returns a value of energy chosen randomly from this set
85  // G4double GetSupData(G4double energy, G4double random, G4int posIndex);
86 
87 private:
88 
89  void Initialise();
91 
93 
94  //stores the data of the incident gamma spectrum
96 
97  //stores the data of the incident alpha spectrum
99 
100  //stores the energy data of the proton and alpha spectra
102 
103  //stores the data of the proton and alpha spectra
105 
106  //read the data for protons and alpha spectra
107  void ReadData(G4double,G4String);
108 
109  //read the data for the response function if the detector
110  //void ReadResponse(const G4String& fileName);
111 
112 
113 
114 };
115 
116 #endif
117 
const XrayFluoDataSet * GetSet() const
const XrayFluoDataSet * dataAlphaSet
void EndOfRunAction(const G4Run *)
void BeginOfRunAction(const G4Run *)
const XrayFluoDataSet * GetAlphaSet() const
G4DataVector * energies
G4DataVector * GetEnergies() const
bool G4bool
Definition: G4Types.hh:79
Definition: G4Run.hh:46
const XrayFluoDataSet * GetGammaSet() const
G4DataVector * GetData() const
G4double GetDataSum() const
void ReadData(G4double, G4String)
const XrayFluoDataSet * dataSet
double G4double
Definition: G4Types.hh:76
const XrayFluoDataSet * dataGammaSet