// // ******************************************************************** // * 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. * // ******************************************************************** // // $Id: G4CsvNtupleManager.hh 70604 2013-06-03 11:27:06Z ihrivnac $ // Manager class for CSV ntuples. // // Author: Ivana Hrivnacova, 18/06/2013 (ivana@ipno.in2p3.fr) #ifndef G4CsvNtupleManager_h #define G4CsvNtupleManager_h 1 #include "G4TNtupleManager.hh" #include "globals.hh" #include "tools/wcsv_ntuple" #include class G4CsvFileManager; class G4CsvNtupleManager : public G4TNtupleManager { friend class G4CsvAnalysisManager; public: explicit G4CsvNtupleManager(const G4AnalysisManagerState& state); ~G4CsvNtupleManager(); private: // Types alias using NtupleType = tools::wcsv::ntuple; using NtupleDescriptionType = G4TNtupleDescription; // Functions specific to the output type // Set methods void SetFileManager(std::shared_ptr fileManager); // Access to ntuple vector (needed for Write()) const std::vector& GetNtupleDescriptionVector() const; void SetIsCommentedHeader(G4bool isCommentedHeader); void SetIsHippoHeader(G4bool isHippoHeader); // Methods from the templated base class // virtual void CreateTNtuple( NtupleDescriptionType* ntupleDescription, const G4String& name, const G4String& title) final; virtual void CreateTNtupleFromBooking( NtupleDescriptionType* ntupleDescription) final; virtual void FinishTNtuple( NtupleDescriptionType* ntupleDescription) final; G4bool WriteHeader(NtupleType* ntuple) const; // data members std::shared_ptr fFileManager; G4bool fIsCommentedHeader; G4bool fIsHippoHeader; }; // inline functions inline void G4CsvNtupleManager::SetFileManager(std::shared_ptr fileManager) { fFileManager = fileManager; } inline const std::vector*>& G4CsvNtupleManager::GetNtupleDescriptionVector() const { return fNtupleDescriptionVector; } inline void G4CsvNtupleManager::SetIsCommentedHeader(G4bool isCommentedHeader) { fIsCommentedHeader = isCommentedHeader; } inline void G4CsvNtupleManager::SetIsHippoHeader(G4bool isHippoHeader) { fIsHippoHeader = isHippoHeader; } #endif