All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
FitAxis.cxx
Go to the documentation of this file.
2 
3 namespace ana
4 {
5  // --------------------------------------------------------------------------
6  FitAxis::FitAxis(const IFitVar* var_,
7  int nbins_, double min_, double max_,
8  bool islog_)
9  : var(var_),
10  nbins(nbins_),
11  min(min_),
12  max(max_),
13  islog(islog_)
14  {
15  }
16 }
process_name opflashCryoW ana
FitAxis(const IFitVar *var, int nbins, double min, double max, bool islog=false)
Definition: FitAxis.cxx:6
Interface definition for fittable variables.
Definition: IFitVar.h:14