Import Geant4 10.3.0 source tree
This commit is contained in:
@@ -279,8 +279,8 @@ public:
|
||||
m_bin_Sv2w.resize(parent::m_bin_number,0);
|
||||
}
|
||||
|
||||
p1(const std::string& a_title,const std::vector<TC>& aEdges)
|
||||
:parent(a_title,aEdges)
|
||||
p1(const std::string& a_title,const std::vector<TC>& a_edges)
|
||||
:parent(a_title,a_edges)
|
||||
,m_cut_v(false)
|
||||
,m_min_v(0)
|
||||
,m_max_v(0)
|
||||
@@ -289,8 +289,8 @@ public:
|
||||
m_bin_Sv2w.resize(parent::m_bin_number,0);
|
||||
}
|
||||
|
||||
p1(const std::string& a_title,const std::vector<TC>& aEdges,TV aVmin,TV aVmax)
|
||||
:parent(a_title,aEdges)
|
||||
p1(const std::string& a_title,const std::vector<TC>& a_edges,TV aVmin,TV aVmax)
|
||||
:parent(a_title,a_edges)
|
||||
,m_cut_v(true)
|
||||
,m_min_v(aVmin)
|
||||
,m_max_v(aVmax)
|
||||
@@ -330,8 +330,8 @@ public:
|
||||
m_max_v = 0;
|
||||
return true;
|
||||
}
|
||||
bool configure(const std::vector<TC>& aEdges) {
|
||||
if(!parent::configure(aEdges)) return false;
|
||||
bool configure(const std::vector<TC>& a_edges) {
|
||||
if(!parent::configure(a_edges)) return false;
|
||||
m_bin_Svw.clear();
|
||||
m_bin_Sv2w.clear();
|
||||
m_bin_Svw.resize(parent::m_bin_number,0);
|
||||
@@ -352,8 +352,8 @@ public:
|
||||
m_max_v = aVmax;
|
||||
return true;
|
||||
}
|
||||
bool configure(const std::vector<TC>& aEdges,TV aVmin,TV aVmax) {
|
||||
if(!parent::configure(aEdges)) return false;
|
||||
bool configure(const std::vector<TC>& a_edges,TV aVmin,TV aVmax) {
|
||||
if(!parent::configure(a_edges)) return false;
|
||||
m_bin_Svw.clear();
|
||||
m_bin_Sv2w.clear();
|
||||
m_bin_Svw.resize(parent::m_bin_number,0);
|
||||
|
||||
Reference in New Issue
Block a user