Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
extended/hadronic/Hadr00/include/HistoManager.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 /// \file hadronic/Hadr00/include/HistoManager.hh
27 /// \brief Definition of the HistoManager class
28 //
29 // $Id: HistoManager.hh 75840 2013-11-06 17:28:38Z gcosmo $
30 //
31 //---------------------------------------------------------------------------
32 //
33 // ClassName: HistoManager
34 //
35 // Description: Singleton class to hold parameters and build histograms.
36 // User cannot access to the constructor.
37 // The pointer of the only existing object can be got via
38 // HistoManager::GetPointer() static method.
39 // The first invokation of this static method makes
40 // the singleton object.
41 //
42 // Author: V.Ivanchenko 27/09/00
43 //
44 // Modified:
45 //
46 //----------------------------------------------------------------------------
47 //
48 
49 #ifndef HistoManager_h
50 #define HistoManager_h 1
51 
52 #include "globals.hh"
53 #include "G4Material.hh"
54 
55 #include "g4root.hh"
56 
57 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
58 
59 class Histo;
62 
63 class HistoManager
64 {
65 public:
66 
67  HistoManager();
68 
69  ~HistoManager();
70 
71  void BeginOfRun();
72  void EndOfRun();
73 
74  void SetVerbose(G4int val);
75 
76  inline void SetParticleName(const G4String&);
77  inline void SetElementName(const G4String&);
78 
79  inline void SetNumberOfBinsE(G4int val);
80  inline void SetNumberOfBinsP(G4int val);
81 
82  inline void SetMinKinEnergy(G4double val);
83  inline void SetMaxKinEnergy(G4double val);
84 
85  inline void SetMinMomentum(G4double val);
86  inline void SetMaxMomentum(G4double val);
87 
88  inline void SetHistoName(G4String& val);
89 
90 private:
91 
92  HistoManagerMessenger* fMessenger;
93  G4AnalysisManager* fAnalysisManager;
94 
95  const G4ParticleDefinition* fNeutron;
96 
97  G4String fParticleName;
98  G4String fElementName;
99 
100  G4double fMinKinEnergy;
101  G4double fMaxKinEnergy;
102  G4double fMinMomentum;
103  G4double fMaxMomentum;
104 
105  G4int fVerbose;
106  G4int fBinsE;
107  G4int fBinsP;
108 
109  G4String fHistoName;
110 };
111 
113 {
114  fParticleName = name;
115 }
116 
118 {
119  fElementName = name;
120 }
121 
123 {
124  if(val>0) { fBinsE = val; }
125 }
126 
128 {
129  if(val>0) { fBinsP = val; }
130 }
131 
133 {
134  if(val>0 && val<fMaxKinEnergy) { fMinKinEnergy = val; }
135 }
136 
138 {
139  if(val>fMinKinEnergy) { fMaxKinEnergy = val; }
140 }
141 
143 {
144  if(val>0 && val<fMaxMomentum) { fMinMomentum = val; }
145 }
146 
148 {
149  if(val>fMinMomentum) { fMaxMomentum = val; }
150 }
151 
153 {
154  fHistoName = val;
155 }
156 
157 #endif
const XML_Char * name
int G4int
Definition: G4Types.hh:78
double G4double
Definition: G4Types.hh:76