3.4.3pre11
Last change
on this file since 3b3071a was 341014c, checked in by Pavel Demin <pavel-demin@…>, 6 years ago |
apply .clang-format to all .h, .cc and .cpp files
|
-
Property mode
set to
100644
|
File size:
547 bytes
|
Rev | Line | |
---|
[d7d2da3] | 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 | ExRootTreeBranch(const char *name, TClass *cl, TTree *tree = 0);
|
---|
| 22 | ~ExRootTreeBranch();
|
---|
| 23 |
|
---|
| 24 | TObject *NewEntry();
|
---|
| 25 | void Clear();
|
---|
| 26 |
|
---|
| 27 | private:
|
---|
| 28 | Int_t fSize, fCapacity; //!
|
---|
| 29 | TClonesArray *fData; //!
|
---|
| 30 | };
|
---|
| 31 |
|
---|
| 32 | #endif /* ExRootTreeBranch */
|
---|
Note:
See
TracBrowser
for help on using the repository browser.