Geant4-11
G4ToolsAnalysisManager.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// The common implementation of analysis manager classes.
28
29// Author: Ivana Hrivnacova, 18/06/2013 (ivana@ipno.in2p3.fr)
30
31#ifndef G4ToolsAnalysisManager_h
32#define G4ToolsAnalysisManager_h 1
33
34#include "G4VAnalysisManager.hh"
36#include "globals.hh"
37
38#include "tools/histo/h1d"
39#include "tools/histo/h2d"
40#include "tools/histo/h3d"
41#include "tools/histo/p1d"
42#include "tools/histo/p2d"
43
44#include <string_view>
45
51
52namespace tools {
53namespace histo {
54class hmpi;
55}
56}
57
59{
61
62 public:
64
65 // Static methods
67 static G4bool IsInstance();
68
69 // Access methods
70 tools::histo::h1d* GetH1(G4int id, G4bool warn = true,
71 G4bool onlyIfActive = true) const;
72 tools::histo::h2d* GetH2(G4int id, G4bool warn = true,
73 G4bool onlyIfActive = true) const;
74 tools::histo::h3d* GetH3(G4int id, G4bool warn = true,
75 G4bool onlyIfActive = true) const;
76 tools::histo::p1d* GetP1(G4int id, G4bool warn = true,
77 G4bool onlyIfActive = true) const;
78 tools::histo::p2d* GetP2(G4int id, G4bool warn = true,
79 G4bool onlyIfActive = true) const;
80
81 // Iterators
82 std::vector<tools::histo::h1d*>::iterator BeginH1();
83 std::vector<tools::histo::h1d*>::iterator EndH1();
84 std::vector<tools::histo::h1d*>::const_iterator BeginConstH1() const;
85 std::vector<tools::histo::h1d*>::const_iterator EndConstH1() const;
86
87 std::vector<tools::histo::h2d*>::iterator BeginH2();
88 std::vector<tools::histo::h2d*>::iterator EndH2();
89 std::vector<tools::histo::h2d*>::const_iterator BeginConstH2() const;
90 std::vector<tools::histo::h2d*>::const_iterator EndConstH2() const;
91
92 std::vector<tools::histo::h3d*>::iterator BeginH3();
93 std::vector<tools::histo::h3d*>::iterator EndH3();
94 std::vector<tools::histo::h3d*>::const_iterator BeginConstH3() const;
95 std::vector<tools::histo::h3d*>::const_iterator EndConstH3() const;
96
97 std::vector<tools::histo::p1d*>::iterator BeginP1();
98 std::vector<tools::histo::p1d*>::iterator EndP1();
99 std::vector<tools::histo::p1d*>::const_iterator BeginConstP1() const;
100 std::vector<tools::histo::p1d*>::const_iterator EndConstP1() const;
101
102 std::vector<tools::histo::p2d*>::iterator BeginP2();
103 std::vector<tools::histo::p2d*>::iterator EndP2();
104 std::vector<tools::histo::p2d*>::const_iterator BeginConstP2() const;
105 std::vector<tools::histo::p2d*>::const_iterator EndConstP2() const;
106
107 protected:
108 explicit G4ToolsAnalysisManager(const G4String& type);
109
110 // Virtual methods from base class
111 virtual G4bool PlotImpl() final;
112 virtual G4bool MergeImpl(tools::histo::hmpi* hmpi) final;
113 virtual G4bool WriteImpl() override;
114 virtual G4bool ResetImpl() override;
115 virtual void ClearImpl() override;
116
117 // Methods
118 G4bool Merge();
119 G4bool IsEmpty();
120
121 // Static data members
124 static constexpr std::string_view fkClass { "G4ToolsAnalysisManager" };
125
126 // Data members
132
133 private:
134 // // Static data members
135 // Static G4ThreadLocal G4ToolsAnalysisManager* fgToolsInstance;
136 // Methods
137 template <typename HT>
138 G4bool WriteT(const std::vector<HT*>& htVector,
139 const std::vector<G4HnInformation*>& hnVector);
140
141 // Data members
142 std::unique_ptr<G4ToolsAnalysisMessenger> fMessenger;
143 };
144
146
147#endif
bool G4bool
Definition: G4Types.hh:86
int G4int
Definition: G4Types.hh:85
std::vector< tools::histo::p2d * >::const_iterator EndConstP2() const
tools::histo::h3d * GetH3(G4int id, G4bool warn=true, G4bool onlyIfActive=true) const
std::vector< tools::histo::p1d * >::iterator BeginP1()
std::vector< tools::histo::p2d * >::iterator EndP2()
virtual G4bool ResetImpl() override
std::vector< tools::histo::h3d * >::const_iterator EndConstH3() const
std::vector< tools::histo::h1d * >::iterator EndH1()
std::vector< tools::histo::h2d * >::iterator EndH2()
std::vector< tools::histo::p2d * >::const_iterator BeginConstP2() const
std::vector< tools::histo::h2d * >::const_iterator BeginConstH2() const
std::vector< tools::histo::h2d * >::const_iterator EndConstH2() const
tools::histo::p1d * GetP1(G4int id, G4bool warn=true, G4bool onlyIfActive=true) const
virtual G4bool PlotImpl() final
std::unique_ptr< G4ToolsAnalysisMessenger > fMessenger
static G4ToolsAnalysisManager * Instance()
std::vector< tools::histo::p1d * >::const_iterator BeginConstP1() const
tools::histo::p2d * GetP2(G4int id, G4bool warn=true, G4bool onlyIfActive=true) const
static G4ThreadLocal G4ToolsAnalysisManager * fgToolsInstance
std::vector< tools::histo::p1d * >::iterator EndP1()
virtual G4bool WriteImpl() override
std::vector< tools::histo::h1d * >::const_iterator BeginConstH1() const
std::vector< tools::histo::h3d * >::iterator BeginH3()
static constexpr std::string_view fkClass
std::vector< tools::histo::h3d * >::const_iterator BeginConstH3() const
G4ToolsAnalysisManager(const G4String &type)
std::vector< tools::histo::h2d * >::iterator BeginH2()
virtual G4bool MergeImpl(tools::histo::hmpi *hmpi) final
G4bool WriteT(const std::vector< HT * > &htVector, const std::vector< G4HnInformation * > &hnVector)
tools::histo::h2d * GetH2(G4int id, G4bool warn=true, G4bool onlyIfActive=true) const
std::vector< tools::histo::p1d * >::const_iterator EndConstP1() const
static G4ToolsAnalysisManager * fgMasterToolsInstance
std::vector< tools::histo::h3d * >::iterator EndH3()
std::vector< tools::histo::h1d * >::iterator BeginH1()
std::vector< tools::histo::p2d * >::iterator BeginP2()
std::vector< tools::histo::h1d * >::const_iterator EndConstH1() const
virtual void ClearImpl() override
tools::histo::h1d * GetH1(G4int id, G4bool warn=true, G4bool onlyIfActive=true) const
#define inline
Definition: internal.h:71
#define G4ThreadLocal
Definition: tls.hh:77