Class Reference for E1039 Core & Analysis Software
PHTFileServer.h
Go to the documentation of this file.
1 // $Id: PHTFileServer.h,v 1.5 2007/10/27 14:27:57 hpereira Exp $
2 
4 
12 
13 #ifndef __PHTFileServer_H__
14 #define __PHTFileServer_H__
15 
16 #include <iostream>
17 #include <map>
18 #include <sstream>
19 #include <string>
20 #include <TFile.h>
21 //#include "MUTOO.h"
22 //#include "PHException.h"
23 
31 {
32 
33  public:
34 
36  static PHTFileServer& get( void )
37  {
38  static PHTFileServer singleton;
39  return singleton;
40  }
41 
43  virtual ~PHTFileServer();
44 
49  void open( const std::string& filename, const std::string& type = "RECREATE" );
50 
52  bool flush( const std::string& filename );
53 
55  bool cd( const std::string& filename );
56 
61  bool write( const std::string& filename );
62 
64  void close( void );
65 
66  private:
67 
69  PHTFileServer( void )
70  { }
71 
73  class SafeTFile: public TFile
74  {
75 
76  public:
77 
79  SafeTFile( const std::string& filename, const std::string& type="RECREATE" ):
80  TFile( filename.c_str(), type.c_str() ),
81  _filename( filename ),
82  _counter( 1 )
83  {}
84 
86  virtual ~SafeTFile( void );
87 
89  int& counter()
90  { return _counter; }
91 
93  const int& counter() const
94  { return _counter; }
95 
97  typedef std::map< std::string, SafeTFile* > TFileMap;
98 
99  static TFileMap& file_map( void )
100  { return _map; }
101 
102  private:
103 
105  std::string _filename;
106 
108  int _counter;
109 
111  static TFileMap _map;
112 
113  };
114 
115 };
116 
117 #endif
TFile clean handling. It allow independant classes to access the same TFile and write ntuple to it....
Definition: PHTFileServer.h:31
bool write(const std::string &filename)
if TFile is found in map and counter is 0, close the TFile, decrement counter otherwise
static PHTFileServer & get(void)
return reference to class singleton
Definition: PHTFileServer.h:36
bool flush(const std::string &filename)
flush TFile matching filename
void close(void)
close all TFiles
void open(const std::string &filename, const std::string &type="RECREATE")
open a SafeTFile. If filename is not found in the map, create a new TFile and append to the map; incr...
bool cd(const std::string &filename)
change to directory of TFile matching filename
virtual ~PHTFileServer()
destructor. All non close TFiles are closed, with a warning.