Import Geant4 10.4.0 source tree

This commit is contained in:
Gabriele Cosmo
2017-12-08 12:52:30 +01:00
parent 98e455a940
commit fc6af9e721
2166 changed files with 276760 additions and 100873 deletions
@@ -20,6 +20,8 @@ public:
}
const std::string& s_cls() const {return s_class();}
public:
h1d():parent("",10,0,1){} //for I/O when reading.
h1d(const std::string& a_title,unsigned int aXnumber,double aXmin,double aXmax)
:parent(a_title,aXnumber,aXmin,aXmax){}
@@ -30,6 +32,7 @@ public:
public:
h1d(const h1d& a_from):parent(a_from){}
h1d& operator=(const h1d& a_from){
if(&a_from==this) return *this;
parent::operator=(a_from);
return *this;
}