Imperial Analysis
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
MultiDraw.hh
Go to the documentation of this file.
1 // MultiDraw.cxx:
2 // Draws many histograms in one loop over a tree.
3 // A little bit like a TTree::Draw which can make many histograms
4 
5 // Based on implementation here:
6 // https://github.com/pwaller/minty/blob/master/minty/junk/MultiDraw.cxx
7 #include "Rtypes.h"
8 
9 class TTree;
10 class TTreeFormula;
11 class TObjArray;
12 
13 void MultiDraw(TTree *inTree,
14  TObjArray *Formulae, TObjArray *Weights, TObjArray *Hists,
15  UInt_t ListLen);
void MultiDraw(TTree *inTree, TObjArray *Formulae, TObjArray *Weights, TObjArray *Hists, UInt_t ListLen)
Definition: MultiDraw.cc:10