ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4Hdf5FileManager.hh
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file G4Hdf5FileManager.hh
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 // The manager for Hdf5 file output operations.
28 
29 // Author: Ivana Hrivnacova, 20/07/2017 (ivana@ipno.in2p3.fr)
30 
31 #ifndef G4Hdf5FileManager_h
32 #define G4Hdf5FileManager_h 1
33 
34 #include "G4VFileManager.hh"
35 #include "G4TNtupleDescription.hh"
36 #include "globals.hh"
37 
38 #include "tools/hdf5/ntuple"
39 
40 #include <fstream>
41 #include <memory>
42 
44 
46 {
47  public:
48  explicit G4Hdf5FileManager(const G4AnalysisManagerState& state);
50 
51  // Type aliases
54 
55  // Methods to manipulate output files
56  virtual G4bool OpenFile(const G4String& fileName) final;
57  virtual G4bool WriteFile() final;
58  virtual G4bool CloseFile() final;
59 
62  void CloseAfterHnWrite();
63 
64  // Set methods
65  void SetBasketSize(unsigned int basketSize);
66 
67  // Get methods
68  hid_t GetFile() const;
69  hid_t GetHistoDirectory() const;
70  hid_t GetNtupleDirectory() const;
71  unsigned int GetBasketSize() const;
72 
73  private:
74  G4bool CreateDirectory(const G4String& directoryType,
75  const G4String& directoryName, hid_t& directory);
76  G4bool WriteDirectory(const G4String& directoryType,
77  const G4String& directoryName, hid_t& directory);
78 
79  // constants
81 
82  // data members
83  hid_t fFile;
86  unsigned int fBasketSize;
87 };
88 
89 // inline functions
90 
91 inline void G4Hdf5FileManager::SetBasketSize(unsigned int basketSize)
92 { fBasketSize = basketSize; }
93 
94 inline hid_t G4Hdf5FileManager::GetFile() const
95 { return fFile; }
96 
98 { return fHistoDirectory; }
99 
101 { return fNtupleDirectory; }
102 
103 inline unsigned int G4Hdf5FileManager::GetBasketSize() const
104 { return fBasketSize; }
105 
106 #endif