Fork me on GitHub

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

ImprovedOutputFile Timing llp
Last change on this file since 6455202 was 341014c, checked in by Pavel Demin <pavel-demin@…>, 5 years ago

apply .clang-format to all .h, .cc and .cpp files

  • Property mode set to 100644
File size: 547 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 ExRootTreeBranch(const char *name, TClass *cl, TTree *tree = 0);
22 ~ExRootTreeBranch();
23
24 TObject *NewEntry();
25 void Clear();
26
27private:
28 Int_t fSize, fCapacity; //!
29 TClonesArray *fData; //!
30};
31
32#endif /* ExRootTreeBranch */
Note: See TracBrowser for help on using the repository browser.