Fork me on GitHub

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

ImprovedOutputFile Timing dual_readout llp
Last change on this file since a190d94 was d7d2da3, checked in by pavel <pavel@…>, 11 years ago

move branches/ModularDelphes to trunk

  • Property mode set to 100644
File size: 610 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 * $Date: 2008-06-04 13:57:27 $
10 * $Revision: 1.1 $
11 *
12 *
13 * \author P. Demin - UCL, Louvain-la-Neuve
14 *
15 */
16
17#include "Rtypes.h"
18
19class TTree;
20class TClonesArray;
21
22class ExRootTreeBranch
23{
24public:
25
26 ExRootTreeBranch(const char *name, TClass *cl, TTree *tree = 0);
27 ~ExRootTreeBranch();
28
29 TObject *NewEntry();
30 void Clear();
31
32private:
33
34 Int_t fSize, fCapacity; //!
35 TClonesArray *fData; //!
36};
37
38#endif /* ExRootTreeBranch */
39
Note: See TracBrowser for help on using the repository browser.