Geant4 10.7.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4ToolsAnalysisReader.cc
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// Author: Ivana Hrivnacova, 20/07/2015 ([email protected])
28
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//_____________________________________________________________________________
39 : G4VAnalysisReader(type, isMaster),
40 fH1Manager(nullptr),
41 fH2Manager(nullptr),
42 fH3Manager(nullptr),
43 fP1Manager(nullptr),
44 fP2Manager(nullptr)
45{
46 // Create managers
52 // The managers will be deleted by the base class
53
54 // Set managers to base class which takes then their ownership
60}
61
62//_____________________________________________________________________________
64{}
65
66//
67// protected methods
68//
69
70//_____________________________________________________________________________
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}
bool G4bool
Definition: G4Types.hh:86
G4bool Reset()
G4H3ToolsManager * fH3Manager
G4P1ToolsManager * fP1Manager
G4P2ToolsManager * fP2Manager
G4ToolsAnalysisReader(const G4String &type, G4bool isMaster=true)
G4H1ToolsManager * fH1Manager
G4H2ToolsManager * fH2Manager
void SetP1Manager(G4VP1Manager *p1Manager)
void SetP2Manager(G4VP2Manager *p2Manager)
G4AnalysisManagerState fState
void SetH2Manager(G4VH2Manager *h2Manager)
void SetH1Manager(G4VH1Manager *h1Manager)
void SetH3Manager(G4VH3Manager *h3Manager)