source: HiSusy/trunk/Delphes-3.0.0/external/ExRootAnalysis/ExRootTreeBranch.h @ 1

Last change on this file since 1 was 1, checked in by zerwas, 11 years ago

first import of structure, PYTHIA8 and DELPHES

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.