ECCE @ EIC Software
Reference for
ECCE @ EIC
simulation and reconstruction software on GitHub
Home page
Related Pages
Modules
Namespaces
Classes
Files
External Links
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
G4ToolsAnalysisReader.cc
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file G4ToolsAnalysisReader.cc
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
// Author: Ivana Hrivnacova, 20/07/2015 (ivana@ipno.in2p3.fr)
28
29
#include "
G4ToolsAnalysisReader.hh
"
30
#include "
G4H1ToolsManager.hh
"
31
#include "
G4H2ToolsManager.hh
"
32
#include "
G4H3ToolsManager.hh
"
33
#include "
G4P1ToolsManager.hh
"
34
#include "
G4P2ToolsManager.hh
"
35
#include "
G4MPIToolsManager.hh
"
36
37
//_____________________________________________________________________________
38
G4ToolsAnalysisReader::G4ToolsAnalysisReader
(
const
G4String
& type,
G4bool
isMaster)
39
:
G4VAnalysisReader
(type, isMaster),
40
fH1Manager(nullptr),
41
fH2Manager(nullptr),
42
fH3Manager(nullptr),
43
fP1Manager(nullptr),
44
fP2Manager(nullptr)
45
{
46
// Create managers
47
fH1Manager
=
new
G4H1ToolsManager
(
fState
);
48
fH2Manager
=
new
G4H2ToolsManager
(
fState
);
49
fH3Manager
=
new
G4H3ToolsManager
(
fState
);
50
fP1Manager
=
new
G4P1ToolsManager
(
fState
);
51
fP2Manager
=
new
G4P2ToolsManager
(
fState
);
52
// The managers will be deleted by the base class
53
54
// Set managers to base class which takes then their ownership
55
SetH1Manager
(
fH1Manager
);
56
SetH2Manager
(
fH2Manager
);
57
SetH3Manager
(
fH3Manager
);
58
SetP1Manager
(
fP1Manager
);
59
SetP2Manager
(
fP2Manager
);
60
}
61
62
//_____________________________________________________________________________
63
G4ToolsAnalysisReader::~G4ToolsAnalysisReader
()
64
{}
65
66
//
67
// protected methods
68
//
69
70
//_____________________________________________________________________________
71
G4bool
G4ToolsAnalysisReader::Reset
()
72
{
73
// Reset histograms and profiles
74
75
auto
finalResult =
true
;
76
77
auto
result =
fH1Manager
->
Reset
();
78
finalResult = finalResult && result;
79
80
result =
fH2Manager
->
Reset
();
81
finalResult = finalResult && result;
82
83
result =
fH3Manager
->
Reset
();
84
finalResult = finalResult && result;
85
86
result =
fP1Manager
->
Reset
();
87
finalResult = finalResult && result;
88
89
result =
fP2Manager
->
Reset
();
90
finalResult = finalResult && result;
91
92
return
finalResult;
93
}
geant4
tree
geant4-10.6-release
source
analysis
hntools
src
G4ToolsAnalysisReader.cc
Built by
Jin Huang
. updated:
Wed Jun 29 2022 17:25:11
using
1.8.2 with
ECCE GitHub integration