Import Geant4 10.2.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-10 14:11:04 +02:00
parent c9b32a6c0a
commit d4af681f38
4886 changed files with 420149 additions and 1023309 deletions
@@ -102,7 +102,7 @@ G4double G4StatDouble::mean(G4double ext_sum_w) const
G4double G4StatDouble::rms(G4double ssum_wx, G4double ssum_wx2,
G4double ssum_w, G4int nn)
{
G4double vrms;
G4double vrms = 0.0;
if (nn > 1)
{
G4double vmean = ssum_wx / ssum_w;
@@ -134,10 +134,6 @@ G4double G4StatDouble::rms(G4double ssum_wx, G4double ssum_wx2,
// << ((m_sum_wx2 / m_sum_w) - (mean * mean))
// << G4endl;
}
else
{
vrms = -1.;
}
return vrms * m_scale;
}