4 #ifndef tools_histo_h2d
5 #define tools_histo_h2d
12 class h2d :
public h2<double,unsigned int,unsigned int,double,double> {
16 static const std::string s_v(
"tools::histo::h2d");
23 h2d(
const std::string& a_title,
24 unsigned int aXnumber,
double aXmin,
double aXmax,
25 unsigned int aYnumber,
double aYmin,
double aYmax)
26 :
parent(a_title,aXnumber,aXmin,aXmax,aYnumber,aYmin,aYmax)
28 h2d(
const std::string& a_title,
29 const std::vector<double>& a_edges_x,
30 const std::vector<double>& a_edges_y)
31 :
parent(a_title,a_edges_x,a_edges_y)
42 private:
static void check_instantiation() {
h2d dummy(
"",10,0,1,10,0,1);}