Import Geant4 11.4.0 source tree
This commit is contained in:
+4
-4
@@ -280,15 +280,15 @@ bool c2d::fill(double aX,double aY,double aW){
|
||||
return m_histo->fill(aX,aY,aW);
|
||||
} else {
|
||||
if(m_xs.size()) {
|
||||
m_lower_x = mn<double>(aX,m_lower_x);
|
||||
m_upper_x = mx<double>(aX,m_upper_x);
|
||||
m_lower_x = min_of<double>(aX,m_lower_x);
|
||||
m_upper_x = max_of<double>(aX,m_upper_x);
|
||||
} else {
|
||||
m_lower_x = aX;
|
||||
m_upper_x = aX;
|
||||
}
|
||||
if(m_ys.size()) {
|
||||
m_lower_y = mn<double>(aY,m_lower_y);
|
||||
m_upper_y = mx<double>(aY,m_upper_y);
|
||||
m_lower_y = min_of<double>(aY,m_lower_y);
|
||||
m_upper_y = max_of<double>(aY,m_upper_y);
|
||||
} else {
|
||||
m_lower_y = aY;
|
||||
m_upper_y = aY;
|
||||
|
||||
Reference in New Issue
Block a user