4 #ifndef tools_histo_h3df
5 #define tools_histo_h3df
15 class h3df :
public h3<double,unsigned int,unsigned int,float,float> {
19 static const std::string s_v(
"tools::histo::h3df");
26 h3df(
const std::string& a_title,
27 unsigned int aXnumber,
float aXmin,
float aXmax,
28 unsigned int aYnumber,
float aYmin,
float aYmax,
29 unsigned int aZnumber,
float aZmin,
float aZmax)
30 :
parent(a_title,aXnumber,aXmin,aXmax,
35 h3df(
const std::string& a_title,
36 const std::vector<double>& a_edges_x,
37 const std::vector<double>& a_edges_y,
38 const std::vector<double>& a_edges_z)
39 :
parent(a_title,a_edges_x,a_edges_y,a_edges_z)
50 private:
static void check_instantiation() {
h3df dummy(
"",10,0,1,10,0,1,10,0,1);}