4 #ifndef tools_histo_h2df
5 #define tools_histo_h2df
15 class h2df :
public h2<double,unsigned int,unsigned int,float,float> {
19 static const std::string s_v(
"tools::histo::h2df");
26 h2df(
const std::string& a_title,
27 unsigned int aXnumber,
float aXmin,
float aXmax,
28 unsigned int aYnumber,
float aYmin,
float aYmax)
29 :
parent(a_title,aXnumber,aXmin,aXmax,aYnumber,aYmin,aYmax)
31 h2df(
const std::string& a_title,
32 const std::vector<double>& a_edges_x,
33 const std::vector<double>& a_edges_y)
34 :
parent(a_title,a_edges_x,a_edges_y)
45 private:
static void check_instantiation() {
h2df dummy(
"",10,0,1,10,0,1);}