/[PAMELA software]/PamVMC_update/include/PamRootManager.h
ViewVC logotype

Contents of /PamVMC_update/include/PamRootManager.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.1.1.1 - (show annotations) (download) (vendor branch)
Tue Oct 15 15:52:31 2013 UTC (11 years, 1 month ago) by formato
Branch: MAIN, rel
CVS Tags: reltag, HEAD
Changes since 1.1: +0 -0 lines
File MIME type: text/plain
PamVMC update

1 #ifndef PAM_ROOT_MANAGER_H
2 #define PAM_ROOT_MANAGER_H
3
4 #include <TObject.h>
5 #include <TTree.h>
6 #include <TFile.h>
7 #include <TDirectoryFile.h>
8
9 class TParticle;
10
11 enum FileMode { kRead, kWrite};
12
13 class PamRootManager : public TObject
14 {
15 public:
16 PamRootManager(const char* projectName, FileMode fileMode);
17 PamRootManager();
18 virtual ~PamRootManager();
19
20 // static access method
21 static PamRootManager* Instance();
22
23 // methods
24 void Register(const char* name, const char* className, void* objAddress);
25 void Fill();
26 void WriteAll();
27 void ReadEvent(Int_t i);
28
29 private:
30 // data members
31 static PamRootManager* fgInstance; //Singleton instance
32
33 // data members
34 TDirectory * fDirectory; // directory to store root-file
35 TFile* fFile;
36 TTree* fTree;
37
38 ClassDef(PamRootManager,0) // Root IO manager
39 };
40
41 #endif //PAM_ROOT_MANAGER_H
42
43

  ViewVC Help
Powered by ViewVC 1.1.23