Geant4 11.1.1
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4RootMainNtupleManager.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// Class for Root main ntuple management.
28//
29// Author: Ivana Hrivnacova, 04/10/2016 ([email protected])
30
31#ifndef G4RootMainNtupleManager_h
32#define G4RootMainNtupleManager_h 1
33
36#include "G4RootFileDef.hh"
39#include "globals.hh"
40
41#include <string_view>
42#include <utility>
43#include <vector>
44
48
49namespace tools {
50namespace wroot {
51class ntuple;
52}
53}
54
55// Types alias
57using RootMainNtupleDescription = std::pair<RootNtupleDescription*, std::shared_ptr<G4RootFile>>;
58
60{
62 friend class G4RootNtupleManager;
63
64 public:
66 G4RootNtupleManager* ntupleBuilder,
67 std::shared_ptr<G4NtupleBookingManager> bookingManager,
68 G4bool rowWise, G4int fileNumber,
69 const G4AnalysisManagerState& state);
71 ~G4RootMainNtupleManager() override = default;
72
74
75 protected:
76 // Methods to manipulate ntuples
77 void CreateNtuple(RootNtupleDescription* ntupleDescription, G4bool warn = true);
78 G4bool Merge();
79 G4bool Reset();
80 void ClearData();
81
82 // Set/get methods
83 void SetFileManager(std::shared_ptr<G4RootFileManager> fileManager);
84 void SetRowWise(G4bool rowWise);
85 std::shared_ptr<G4RootFile> GetNtupleFile(RootNtupleDescription* ntupleDescription) const;
86
87 // New cycle option
88 void SetNewCycle(G4bool value);
89 G4bool GetNewCycle() const;
90
91 // Access functions
92 const std::vector<tools::wroot::ntuple*>& GetNtupleVector()
93 { return fNtupleVector; }
94 unsigned int GetBasketEntries() const;
95
96 private:
97 // Static data members
98 static constexpr std::string_view fkClass { "G4RootMainNtupleManager" };
99
100 // Data members
101 G4RootNtupleManager* fNtupleBuilder { nullptr };
102 std::shared_ptr<G4NtupleBookingManager> fBookingManager { nullptr };
103 std::shared_ptr<G4RootFileManager> fFileManager { nullptr };
104 G4bool fRowWise;
105 G4int fFileNumber;
106 std::vector<tools::wroot::ntuple*> fNtupleVector;
107 std::vector<RootMainNtupleDescription> fNtupleDescriptionVector;
108 G4bool fNewCycle { false };
109};
110
112 std::shared_ptr<G4RootFileManager> fileManager)
113{
114 fFileManager = std::move(fileManager);
115}
116
118{ fRowWise = rowWise; }
119
121{ return fNtupleBuilder->GetBasketEntries(); }
122
124{ fNewCycle = value; }
125
127{ return fNewCycle; }
128
129#endif
std::pair< RootNtupleDescription *, std::shared_ptr< G4RootFile > > RootMainNtupleDescription
bool G4bool
Definition: G4Types.hh:86
int G4int
Definition: G4Types.hh:85
void SetFileManager(std::shared_ptr< G4RootFileManager > fileManager)
~G4RootMainNtupleManager() override=default
const std::vector< tools::wroot::ntuple * > & GetNtupleVector()
std::shared_ptr< G4RootFile > GetNtupleFile(RootNtupleDescription *ntupleDescription) const
G4RootMainNtupleManager()=delete
unsigned int GetBasketEntries() const
void CreateNtuple(RootNtupleDescription *ntupleDescription, G4bool warn=true)