Geant4-11
G4Hdf5HnRFileManager.icc
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, 26/08/2021 (ivana@ipno.in2p3.fr)
28
29#include "G4AnalysisUtilities.hh"
30
31#include "tools/hdf5/header"
32#include "tools/hdf5/h2file"
33#include "tools/histo/h1d"
34#include "tools/histo/h2d"
35#include "tools/histo/h3d"
36#include "tools/histo/p1d"
37#include "tools/histo/p2d"
38
39#include "tools/hdf5/h2file"
40
41//_____________________________________________________________________________
42template <typename HT>
43inline
44G4bool G4Hdf5HnRFileManager<HT>::ReadT(
45 hid_t directory, const G4String& htName, HT*& ht)
46{
47 return tools::hdf5::read_histo(G4cout, directory, htName, ht);
48}
49
50//_____________________________________________________________________________
51template <>
52inline
53G4bool G4Hdf5HnRFileManager<tools::histo::p1d>::ReadT(
54 hid_t directory, const G4String& htName, tools::histo::p1d*& ht)
55{
56 return tools::hdf5::read_profile(G4cout, directory, htName, ht);
57}
58
59//_____________________________________________________________________________
60template <>
61inline
62G4bool G4Hdf5HnRFileManager<tools::histo::p2d>::ReadT(
63 hid_t directory, const G4String& htName, tools::histo::p2d*& ht)
64{
65 return tools::hdf5::read_profile(G4cout, directory, htName, ht);
66}
67
68//_____________________________________________________________________________
69template <typename HT>
70inline
71HT* G4Hdf5HnRFileManager<HT>::Read(
72 const G4String& htName, const G4String& fileName, const G4String& dirName,
73 G4bool /*isUserFileName*/)
74{
75 // Get directory
76 auto directory = fRFileManager->GetHistoRDirectory(fileName, dirName, false);
77 if ( directory < 0 ) return nullptr;
78
79 // Read hn
80 HT* ht = nullptr;
81 if ( ! ReadT(directory, htName, ht) ) {
82 G4Analysis::Warn(
83 "Streaming " + htName + " from file " + fileName + " failed.",
84 fkClass, "ReadTImpl");
85 return nullptr;
86 }
87
88 return ht;
89}