1 #ifndef _TIMBER_HISTLOADER 2 #define _TIMBER_HISTLOADER 26 void checkDim(
int x,
int y,
int z);
39 HistLoader(std::string filename, std::string histname);
48 std::vector<float>
eval_bybin(
int binx,
int biny = 0,
int binz = 0);
57 std::vector<float>
eval(
float xval,
float yval = 0.,
float zval = 0.);
TH1 * hist
Histogram object.
Definition: HistLoader.h:28
std::vector< float > eval(float xval, float yval=0., float zval=0.)
Evaluate by axis value.
Definition: HistLoader.cc:52
HistLoader()
Empty constructor.
Definition: HistLoader.h:32
std::vector< float > eval_bybin(int binx, int biny=0, int binz=0)
Evaluate by bin numbers.
Definition: HistLoader.cc:28
C++ class. Generic histogram loader with methods to return bin values.
Definition: HistLoader.h:13