Class Reference for E1039 Core & Analysis Software
PHNodeIOManager.h
Go to the documentation of this file.
1 #ifndef PHNODEIOMANAGER_H__
2 #define PHNODEIOMANAGER_H__
3 
4 // Declaration of class PHNodeIOManager
5 // Purpose: manages file IO for PHIODataNodes
6 // Author: Matthias Messer
7 
8 #include "PHIOManager.h"
9 #include <string>
10 #include <map>
11 
12 
13 class TObject;
14 class TFile;
15 class TTree;
16 class TBranch;
17 
18 class PHNodeIOManager : public PHIOManager {
19 public:
21  PHNodeIOManager(const std::string&, const PHAccessType = PHReadOnly);
22  PHNodeIOManager(const std::string&, const std::string&, const PHAccessType = PHReadOnly);
23  PHNodeIOManager(const std::string&, const PHAccessType , const PHTreeType);
24  virtual ~PHNodeIOManager();
25 
26 public:
27  virtual void closeFile() ;
28  virtual PHBoolean write(PHCompositeNode *) ;
29  virtual void print() const ;
30 
31  PHBoolean setFile(const std::string&, const std::string&, const PHAccessType = PHReadOnly) ;
32  PHCompositeNode * read(PHCompositeNode * = 0, size_t = 0);
33  PHBoolean read(size_t requestedEvent) ;
34  int readSpecific(size_t requestedEvent, const char* objectName) ;
35  void selectObjectToRead(const char* objectName, PHBoolean readit) ;
36  PHBoolean isSelected(const char* objectName) ;
37  int isFunctional() const {return isFunctionalFlag;}
38  PHBoolean SetCompressionLevel(const int level);
39  double GetBytesWritten();
40  std::map<std::string,TBranch*> *GetBranchMap();
41  void SetRealTimeSave(const bool onoff) { realTimeSave = onoff; }
42 
43 public:
44  PHBoolean write(TObject**, const std::string&);
45 private:
46  int FillBranchMap();
47  PHCompositeNode * reconstructNodeTree(PHCompositeNode *);
48  PHBoolean readEventFromFile(size_t requestedEvent);
49  std::string getBranchClassName(TBranch*) ;
50 
51  TFile *file;
52  TTree *tree;
53  std::string TreeName;
54  int bufSize;
55  int split;
56  int accessMode;
57  int CompressionLevel;
58  bool realTimeSave;
59  std::map<std::string,TBranch*> fBranches ;
60  std::map<std::string,PHBoolean> objectToRead ;
61 
62  int isFunctionalFlag; // flag to tell if that object initialized properly
63 
64 };
65 
66 #endif /* __PHNODEIOMANAGER_H__ */
void SetRealTimeSave(const bool onoff)
virtual void print() const
PHBoolean SetCompressionLevel(const int level)
virtual PHBoolean write(PHCompositeNode *)
int readSpecific(size_t requestedEvent, const char *objectName)
PHBoolean setFile(const std::string &, const std::string &, const PHAccessType=PHReadOnly)
virtual void closeFile()
virtual ~PHNodeIOManager()
void selectObjectToRead(const char *objectName, PHBoolean readit)
int isFunctional() const
PHCompositeNode * read(PHCompositeNode *=0, size_t=0)
PHBoolean isSelected(const char *objectName)
double GetBytesWritten()
std::map< std::string, TBranch * > * GetBranchMap()
PHTreeType
Definition: phool.h:16
int PHBoolean
Definition: phool.h:13
PHAccessType
Definition: phool.h:15
@ PHReadOnly
Definition: phool.h:15