Ignore:
Timestamp:
05/16/14 11:52:02 (10 years ago)
Author:
tbretz
Message:
Added the possibility to limit the number of events written per branch per file.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Mars/mfileio/MWriteRootFile.h

    r14447 r17867  
    2525
    2626    Bool_t         fMust;
     27    Long64_t       fMaxEntries;
    2728
    2829    void Init(const char *name, Bool_t must)
     
    3334
    3435public:
    35     MRootFileBranch() : fTree(NULL), fBranch(NULL), fContainer(NULL), fMust(0)
     36    MRootFileBranch() : fTree(NULL), fBranch(NULL), fContainer(NULL), fMust(0), fMaxEntries(0)
    3637    {
    3738        Init(NULL, kFALSE);
     
    3940    }
    4041
    41     MRootFileBranch(const char *cname, const char *tname=NULL, Bool_t must=kFALSE)
    42         : fTree(NULL), fBranch(NULL), fContainer(NULL), fMust(0)
     42    MRootFileBranch(const char *cname, const char *tname=NULL, Bool_t must=kFALSE, Long64_t max=-1)
     43        : fTree(NULL), fBranch(NULL), fContainer(NULL), fMust(0), fMaxEntries(max)
    4344    {
    4445        Init(tname, must);
     
    4647    }
    4748
    48     MRootFileBranch(MParContainer *cont, const char *tname=NULL, Bool_t must=kFALSE)
    49         : fTree(NULL), fBranch(NULL), fMust(0)
     49    MRootFileBranch(MParContainer *cont, const char *tname=NULL, Bool_t must=kFALSE, Long64_t max=-1)
     50        : fTree(NULL), fBranch(NULL), fMust(0), fMaxEntries(max)
    5051    {
    5152        Init(tname, must);
     
    5455    }
    5556
    56     TTree         *GetTree() const      { return fTree; }
    57     MParContainer *GetContainer() const { return fContainer; }
    58     void          *GetAddress()         { return &fContainer; }
    59     TBranch       *GetBranch() const    { return fBranch; }
    60     const char    *GetContName() const  { return fTitle; }
    61     Bool_t         MustHave() const     { return fMust; }
     57    TTree         *GetTree() const       { return fTree; }
     58    MParContainer *GetContainer() const  { return fContainer; }
     59    void          *GetAddress()          { return &fContainer; }
     60    TBranch       *GetBranch() const     { return fBranch; }
     61    const char    *GetContName() const   { return fTitle; }
     62    Bool_t         MustHave() const      { return fMust; }
     63    Long64_t         GetMaxEntries() const { return fMaxEntries; }
    6264
    6365    void SetContainer(MParContainer *cont) { fContainer = cont; }
     
    129131    ~MWriteRootFile();
    130132
    131     void AddContainer(const char *cname,   const char *tname=NULL, Bool_t must=kTRUE);
    132     void AddContainer(MParContainer *cont, const char *tname=NULL, Bool_t must=kTRUE);
     133    void AddContainer(const char *cname,   const char *tname=NULL, Bool_t must=kTRUE, Long64_t max=-1);
     134    void AddContainer(MParContainer *cont, const char *tname=NULL, Bool_t must=kTRUE, Long64_t max=-1);
    133135    void AddCopySource(const char *tname, const char *bname=NULL, Bool_t force=kTRUE);
    134136    void AddCopySource(const char *tname, Bool_t force)
Note: See TracChangeset for help on using the changeset viewer.