4 #ifndef tools_histo_p1d
5 #define tools_histo_p1d
12 class p1d :
public p1<double,unsigned int,unsigned int,double,double,double> {
16 static const std::string s_v(
"tools::histo::p1d");
23 p1d(
const std::string& a_title,
unsigned int aXnumber,
double aXmin,
double aXmax)
24 :
parent(a_title,aXnumber,aXmin,aXmax)
27 p1d(
const std::string& a_title,
unsigned int aXnumber,
double aXmin,
double aXmax,
double aVmin,
double aVmax)
28 :
parent(a_title,aXnumber,aXmin,aXmax,aVmin,aVmax)
31 p1d(
const std::string& a_title,
const std::vector<double>& a_edges)
35 p1d(
const std::string& a_title,
const std::vector<double>& a_edges,
double aVmin,
double aVmax)
36 :
parent(a_title,a_edges,aVmin,aVmax)
47 private:
static void check_instantiation() {
p1d p(
"",10,0,1);p.gather_bins(5);}