54 lines
1.3 KiB
Plaintext
54 lines
1.3 KiB
Plaintext
// Copyright (C) 2010, Guy Barrand. All rights reserved.
|
|
// See the file tools.license for terms.
|
|
|
|
#ifndef tools_histo_h3d
|
|
#define tools_histo_h3d
|
|
|
|
#include "h3"
|
|
|
|
namespace tools {
|
|
namespace histo {
|
|
|
|
class h3d : public h3<double,unsigned int,double,double> {
|
|
typedef h3<double,unsigned int,double,double> parent;
|
|
public:
|
|
static const std::string& s_class() {
|
|
static const std::string s_v("tools::histo::h3d");
|
|
return s_v;
|
|
}
|
|
public:
|
|
h3d(const std::string& a_title,
|
|
bn_t aXnumber,double aXmin,double aXmax,
|
|
bn_t aYnumber,double aYmin,double aYmax,
|
|
bn_t aZnumber,double aZmin,double aZmax)
|
|
: parent(a_title,aXnumber,aXmin,aXmax,
|
|
aYnumber,aYmin,aYmax,
|
|
aZnumber,aZmin,aZmax)
|
|
{}
|
|
|
|
h3d(const std::string& a_title,
|
|
const std::vector<double>& aEdgesX,
|
|
const std::vector<double>& aEdgesY,
|
|
const std::vector<double>& aEdgesZ)
|
|
: parent(a_title,aEdgesX,aEdgesY,aEdgesZ)
|
|
{}
|
|
|
|
virtual ~h3d(){}
|
|
public:
|
|
h3d(const h3d& a_from): parent(a_from){}
|
|
h3d& operator=(const h3d& a_from){
|
|
parent::operator=(a_from);
|
|
return *this;
|
|
}
|
|
};
|
|
|
|
inline void h3d_check_instantiation() {h3d dummy("",10,0,1,10,0,1,10,0,1);}
|
|
|
|
}}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|