Fork me on GitHub

source: git/external/ExRootAnalysis/ExRootTreeBranch.h@ bdf9e2e

Last change on this file since bdf9e2e was e5ea42e, checked in by Joschka Lingemann <joschka.lingemann@…>, 8 years ago

Fix override warnings.

  • Property mode set to 100644
File size: 577 bytes
Line 
1#ifndef ExRootTreeBranch_h
2#define ExRootTreeBranch_h
3
4/** \class ExRootTreeBranch
5 *
6 * Class handling object creation.
7 * It is also used for output ROOT tree branches
8 *
9 * \author P. Demin - UCL, Louvain-la-Neuve
10 *
11 */
12
13#include "Rtypes.h"
14
15class TTree;
16class TClonesArray;
17
18class ExRootTreeBranch
19{
20public:
21
22 ExRootTreeBranch(const char *name, TClass *cl, TTree *tree = 0);
23 ~ExRootTreeBranch();
24
25 TObject *NewEntry();
26 virtual void Clear(Option_t *option="");
27
28private:
29
30 Int_t fSize, fCapacity; //!
31 TClonesArray *fData; //!
32};
33
34#endif /* ExRootTreeBranch */
35
Note: See TracBrowser for help on using the repository browser.