Import Geant4 10.1.0 source tree
This commit is contained in:
@@ -9,19 +9,20 @@
|
||||
namespace tools {
|
||||
namespace histo {
|
||||
|
||||
class h3d : public h3<double,unsigned int,double,double> {
|
||||
typedef h3<double,unsigned int,double,double> parent;
|
||||
class h3d : public h3<double,unsigned int,unsigned int,double,double> {
|
||||
typedef h3<double,unsigned int,unsigned int,double,double> parent;
|
||||
public:
|
||||
static const std::string& s_class() {
|
||||
static const std::string s_v("tools::histo::h3d");
|
||||
return s_v;
|
||||
}
|
||||
const std::string& s_cls() const {return s_class();}
|
||||
public:
|
||||
h3d(const std::string& a_title,
|
||||
unsigned int aXnumber,double aXmin,double aXmax,
|
||||
unsigned int aYnumber,double aYmin,double aYmax,
|
||||
unsigned int aZnumber,double aZmin,double aZmax)
|
||||
: parent(a_title,aXnumber,aXmin,aXmax,
|
||||
:parent(a_title,aXnumber,aXmin,aXmax,
|
||||
aYnumber,aYmin,aYmax,
|
||||
aZnumber,aZmin,aZmax)
|
||||
{}
|
||||
@@ -30,7 +31,7 @@ public:
|
||||
const std::vector<double>& aEdgesX,
|
||||
const std::vector<double>& aEdgesY,
|
||||
const std::vector<double>& aEdgesZ)
|
||||
: parent(a_title,aEdgesX,aEdgesY,aEdgesZ)
|
||||
:parent(a_title,aEdgesX,aEdgesY,aEdgesZ)
|
||||
{}
|
||||
|
||||
virtual ~h3d(){}
|
||||
@@ -41,13 +42,6 @@ public:
|
||||
return *this;
|
||||
}
|
||||
|
||||
#ifdef __CINT__
|
||||
bool fill(double aX,double aY,double aZ,double aW = 1) {
|
||||
return parent::fill(aX,aY,aZ,aW);
|
||||
}
|
||||
void hprint(std::ostream& a_out) {parent::hprint(a_out);}
|
||||
#endif
|
||||
|
||||
private:static void check_instantiation() {h3d dummy("",10,0,1,10,0,1,10,0,1);}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user