4 #ifndef tools_histo_h1d
5 #define tools_histo_h1d
14 class h1d :
public h1<double,unsigned int,unsigned int,double,double> {
18 static const std::string s_v(
"tools::histo::h1d");
25 h1d(
const std::string& a_title,
unsigned int aXnumber,
double aXmin,
double aXmax)
26 :
parent(a_title,aXnumber,aXmin,aXmax){}
28 h1d(
const std::string& a_title,
const std::vector<double>& a_edges)
35 if(&a_from==
this)
return *
this;
40 private:
static void check_instantiation() {
h1d h(
"",10,0,1);h.gather_bins(5);}