Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
ExG4HbookFileManager.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 // $Id$
27 //
28 /// \file common/analysis/include/ExG4HbookFileManager.hh
29 /// \brief Definition of the ExG4HbookFileManager class
30 
31 // Author: Ivana Hrivnacova, 15/06/2011 (ivana@ipno.in2p3.fr)
32 
33 #ifdef G4_USE_HBOOK
34 
35 #ifndef ExG4HbookFileManager_h
36 #define ExG4HbookFileManager_h 1
37 
38 #include "G4VFileManager.hh"
39 #include "globals.hh"
40 
41 #include <tools/hbook/wfile>
42 
43 /// The manager for HBook file operations.
44 ///
45 /// The class implements the G4VFileManager manager for HBook.
46 /// It is provided separately from geant4/source/analysis in order
47 /// to avoid a need of linking Geant4 kernel libraries with cerblib.
48 
49 class ExG4HbookFileManager : public G4VFileManager
50 {
51  public:
52  ExG4HbookFileManager(const G4AnalysisManagerState& state);
53  virtual ~ExG4HbookFileManager();
54 
55  // Methods to manipulate files
57  virtual G4bool OpenFile(const G4String& fileName);
58  virtual G4bool WriteFile();
59  virtual G4bool CloseFile();
60 
61  // Specific methods for files per objects
62  void CreateNtupleDirectory();
63 
64  // Get method
65  G4bool IsFile() const;
66 
67  private:
68  static const G4String fgkDefaultNtupleDirectoryName;
69 
70  // data members
71  tools::hbook::wfile* fFile;
72 };
73 
74 // inline functions
75 
76 inline G4bool ExG4HbookFileManager::IsFile() const
77 { return fFile; }
78 
79 #endif
80 
81 #endif
virtual G4bool CloseFile()=0
bool G4bool
Definition: G4Types.hh:79
virtual G4bool OpenFile(const G4String &fileName)=0
virtual G4bool WriteFile()=0