Last change
on this file since 21eab4f was cab38f6, checked in by Pavel Demin <pavel.demin@…>, 10 years ago |
remove svn tags and fix formatting
|
-
Property mode
set to
100644
|
File size:
550 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 |
|
---|
15 | class TTree;
|
---|
16 | class TClonesArray;
|
---|
17 |
|
---|
18 | class ExRootTreeBranch
|
---|
19 | {
|
---|
20 | public:
|
---|
21 |
|
---|
22 | ExRootTreeBranch(const char *name, TClass *cl, TTree *tree = 0);
|
---|
23 | ~ExRootTreeBranch();
|
---|
24 |
|
---|
25 | TObject *NewEntry();
|
---|
26 | void Clear();
|
---|
27 |
|
---|
28 | private:
|
---|
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.