// // ******************************************************************** // * License and Disclaimer * // * * // * The Geant4 software is copyright of the Copyright Holders of * // * the Geant4 Collaboration. It is provided under the terms and * // * conditions of the Geant4 Software License, included in the file * // * LICENSE and available at http://cern.ch/geant4/license . These * // * include a list of copyright holders. * // * * // * Neither the authors of this software system, nor their employing * // * institutes,nor the agencies providing financial support for this * // * work make any representation or warranty, express or implied, * // * regarding this software system or assume any liability for its * // * use. Please see the license in the file LICENSE and URL above * // * for the full disclaimer and the limitation of liability. * // * * // * This code implementation is the result of the scientific and * // * technical work of the GEANT4 collaboration. * // * By using, copying, modifying or distributing the software (or * // * any work based on the software) you agree to acknowledge its * // * use in resulting scientific publications, and indicate your * // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // // Class template for read ntuple managers for all output types. // // Author: Ivana Hrivnacova, 20/07/2017 (ivana@ipno.in2p3.fr) #ifndef G4TRNtupleManager_h #define G4TRNtupleManager_h 1 #include "G4BaseRNtupleManager.hh" #include "G4TRNtupleDescription.hh" #include "globals.hh" #include #include template class G4TRNtupleManager : public G4BaseRNtupleManager { public: G4TRNtupleManager() = delete; protected: explicit G4TRNtupleManager(const G4AnalysisManagerState& state); ~G4TRNtupleManager() override; // Methods to manipulate ntuples G4bool IsEmpty() const; G4bool Reset(); // Access methods NT* GetNtuple() const; NT* GetNtuple(G4int ntupleId) const; // Functions independent from the output type // // Methods to read ntuple from a file G4int SetNtuple(G4TRNtupleDescription* rntupleDescription); // Methods to bind ntuple (from base class) using G4BaseRNtupleManager::SetNtupleIColumn; using G4BaseRNtupleManager::SetNtupleFColumn; using G4BaseRNtupleManager::SetNtupleDColumn; using G4BaseRNtupleManager::SetNtupleSColumn; // Methods to bind ntuple G4bool SetNtupleIColumn(G4int ntupleId, const G4String& columnName, G4int& value) final; G4bool SetNtupleFColumn(G4int ntupleId, const G4String& columnName, G4float& value) final; G4bool SetNtupleDColumn(G4int ntupleId, const G4String& columnName, G4double& value) final; G4bool SetNtupleSColumn(G4int ntupleId, const G4String& columnName, G4String& value) final; // Bind the ntuple columns of vector type G4bool SetNtupleIColumn( G4int ntupleId, const G4String& columnName, std::vector& vector) override; G4bool SetNtupleFColumn( G4int ntupleId, const G4String& columnName, std::vector& vector) override; G4bool SetNtupleDColumn( G4int ntupleId, const G4String& columnName, std::vector& vector) override; G4bool SetNtupleSColumn( G4int ntupleId, const G4String& columnName, std::vector& vector) override; using G4BaseRNtupleManager::GetNtupleRow; G4bool GetNtupleRow(G4int ntupleId) final; // Access methods G4int GetNofNtuples() const final; // Utility method G4TRNtupleDescription* GetNtupleDescriptionInFunction(G4int id, std::string_view function, G4bool warn = true) const; private: // Fuctions which are specific to output type // virtual G4bool GetTNtupleRow(G4TRNtupleDescription* rntupleDescription) = 0; // Common implementation // template G4bool SetNtupleTColumn(G4int ntupleId, const G4String& name, T& value); template G4bool SetNtupleTColumn(G4int ntupleId, const G4String& name, std::vector& vector); // Static data members static constexpr std::string_view fkClass { "G4TRNtupleManager" }; // Data members std::vector*> fNtupleDescriptionVector; }; #include "G4TRNtupleManager.icc" #endif