Import Geant4 11.4.0 source tree

This commit is contained in:
Gabriele Cosmo
2025-12-05 08:54:02 +01:00
parent a499fb82e9
commit b4a16de652
6484 changed files with 232674 additions and 221097 deletions
+4 -4
View File
@@ -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;