#ifndef MARS_MWriteRootFile #define MARS_MWriteRootFile #ifndef MARS_MWriteFile #include "MWriteFile.h" #endif #ifndef ROOT_TObjArray #include #endif #ifndef ROOT_TArrayL #include #endif class TFile; class TTree; class TBranch; class MRootFileBranch : public TNamed { private: TTree *fTree; //! TBranch *fBranch; //! MParContainer *fContainer; Bool_t fMust; void Init(const char *name, Bool_t must) { SetName(name?name:""); fMust = must; } public: MRootFileBranch() : fTree(NULL), fBranch(NULL), fContainer(NULL), fMust(0) { Init(NULL, kFALSE); fTitle = ""; } MRootFileBranch(const char *cname, const char *tname=NULL, Bool_t must=kFALSE) : fTree(NULL), fBranch(NULL), fContainer(NULL), fMust(0) { Init(tname, must); fTitle = cname; } MRootFileBranch(MParContainer *cont, const char *tname=NULL, Bool_t must=kFALSE) : fTree(NULL), fBranch(NULL), fMust(0) { Init(tname, must); fTitle = ""; fContainer = cont; } TTree *GetTree() const { return fTree; } MParContainer *GetContainer() const { return fContainer; } void *GetAddress() { return &fContainer; } TBranch *GetBranch() const { return fBranch; } const char *GetContName() const { return fTitle; } Bool_t MustHave() const { return fMust; } void SetContainer(MParContainer *cont) { fContainer = cont; } void SetTree(TTree *tree) { fTree = tree; } void SetBranch(TBranch *branch) { fBranch = branch; } ClassDef(MRootFileBranch, 1) // Storage container for MWriteRootFile to store TBranch informations }; class MWriteRootFile : public MWriteFile { private: static const TString gsDefName; static const TString gsDefTitle; TFile *fOut; // Current file TObjArray fBranches; // List of Branch setup (MRootFileBranch) TObjArray fTrees; //! List of trees TString fSplitRule; // file splitting allowed if rule existing (done in ReInit) enum { kFillTree = BIT(14), // Be carefull these bits are already in use! // TBranch::kAutoDelete = BIT(15) // TBranchElement::kDeleteObject = BIT(16) kIsNewTree = BIT(17) }; // File handling void Close(); TString GetNewFileName(const char *fname) const; Bool_t ChangeFile(const char *fname); // MWrite Bool_t CheckAndWrite(); Bool_t IsFileOpen() const; Bool_t GetContainer(MParList *pList); const char *GetFileName() const; // MTask Bool_t ReInit(MParList *pList); void StreamPrimitive(ofstream &out) const; // Constructor void Init(const char *name=0, const char *title=0); public: MWriteRootFile(); MWriteRootFile(const Int_t comp, const char *rule, const Bool_t overwrite=kTRUE, const char *ftitle="Untitled", const char *name=NULL, const char *title=NULL); MWriteRootFile(const char *fname, const Option_t *opt="RECREATE", const char *ftitle="Untitled", const Int_t comp=2, const char *name=NULL, const char *title=NULL); ~MWriteRootFile(); void AddContainer(const char *cname, const char *tname=NULL, Bool_t must=kTRUE); void AddContainer(MParContainer *cont, const char *tname=NULL, Bool_t must=kTRUE); void Print(Option_t *t=NULL) const; Bool_t cd(const char *path=0); ClassDef(MWriteRootFile, 1) // Task to write data into a root file }; #endif