Import Geant4 10.6.0 source tree

This commit is contained in:
Gabriele Cosmo
2019-12-06 15:12:28 +01:00
parent b2a62ae692
commit 5baee230e9
2997 changed files with 141580 additions and 98673 deletions
@@ -23,6 +23,7 @@
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
// class G4AuxiliaryNavServices implementation
//
// --------------------------------------------------------------------
@@ -37,13 +38,16 @@
void G4AuxiliaryNavServices::ReportTolerances()
{
G4int oldPrec= G4cout.precision(16);
G4int oldPrec = G4cout.precision(16);
G4cout << " Cartesian Tolerance (kCarTolerance): " << G4GeometryTolerance::GetInstance()->GetSurfaceTolerance()
G4cout << " Cartesian Tolerance (kCarTolerance): "
<< G4GeometryTolerance::GetInstance()->GetSurfaceTolerance()
<< " (global) " << G4endl;
G4cout << " Radial Tolerance (kRadTolerance): " << G4GeometryTolerance::GetInstance()->GetRadialTolerance()
G4cout << " Radial Tolerance (kRadTolerance): "
<< G4GeometryTolerance::GetInstance()->GetRadialTolerance()
<< " (global) " << G4endl;
G4cout << " Angular Tolerance (kAngTolerance): " << G4GeometryTolerance::GetInstance()->GetAngularTolerance()
G4cout << " Angular Tolerance (kAngTolerance): "
<< G4GeometryTolerance::GetInstance()->GetAngularTolerance()
<< " (global) " << G4endl;
G4cout.precision(oldPrec);
}