source: trunk/source/processes/electromagnetic/lowenergy/test/fluoTest/include/XrayFluoRunAction.hh

Last change on this file was 1350, checked in by garnier, 13 years ago

update to last version 4.9.4

File size: 4.1 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: 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
48class G4Run;
49class XrayFluoDataSet;
50class G4DataVector;
51
52class XrayFluoRunAction : public G4UserRunAction
53{
54  public:
55   
56
57 XrayFluoRunAction();
58
59 ~XrayFluoRunAction();
60  const XrayFluoDataSet* GetSet();
61  const XrayFluoDataSet* GetGammaSet();
62  const XrayFluoDataSet* GetAlphaSet();
63  const XrayFluoDataSet* GetEfficiencySet();
64  G4DataVector* GetEnergies();
65  G4DataVector* GetData();
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();
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);
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);
86
87private:
88
89  const XrayFluoDataSet* dataSet;
90
91  //stores the data of the incident gamma spectrum
92  const XrayFluoDataSet* dataGammaSet;
93
94  //stores the data of the incident alpha spectrum
95  const XrayFluoDataSet* dataAlphaSet;
96
97  //stores the data of the efficience of the detector
98  const XrayFluoDataSet* efficiencySet;
99
100  //stores the energy data of the proton and alpha spectra
101  G4DataVector* energies;
102
103//stores the data of the proton and alpha spectra
104   G4DataVector* data;
105
106  //stores the energy data (first column of the file) of the
107  //response function
108  std::map<G4int,G4DataVector*,std::less<G4int> > energyMap;
109 
110  //stores the values (second column of the file) of the
111  //response function
112std::map<G4int,G4DataVector*,std::less<G4int> > dataMap;
113 
114  //read the data for protons and alpha spectra
115 void ReadData(G4double,G4String);
116
117  //read the data for the response function if the detector
118 void ReadResponse(const G4String& fileName);
119 
120 
121
122};
123
124#endif
125
Note: See TracBrowser for help on using the repository browser.