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
@@ -23,16 +23,28 @@
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
// $Id: G4AuxiliaryNavServices.cc 66356 2012-12-18 09:02:32Z gcosmo $
// $Id: G4AuxiliaryNavServices.cc 90009 2015-05-08 07:42:39Z gcosmo $
//
// --------------------------------------------------------------------
#include "G4AuxiliaryNavServices.hh"
#include "G4GeometryTolerance.hh"
// This method currently exists only to allow compilers to find
// the inline method (which are the core of this class)
//
G4bool G4AuxiliaryNavServices::testOne()
// The existence a method here allows compilers to find the inline method
// (which are the core of this class)
// [ Compilers store the inline method in the module with the first
// non-inline method.]
// If this method did not exist, there would be none.
void G4AuxiliaryNavServices::ReportTolerances()
{
return true;
G4int oldPrec= G4cout.precision(16);
G4cout << " Cartesian Tolerance (kCarTolerance): " << G4GeometryTolerance::GetInstance()->GetSurfaceTolerance()
<< " (global) " << G4endl;
G4cout << " Radial Tolerance (kRadTolerance): " << G4GeometryTolerance::GetInstance()->GetRadialTolerance()
<< " (global) " << G4endl;
G4cout << " Angular Tolerance (kAngTolerance): " << G4GeometryTolerance::GetInstance()->GetAngularTolerance()
<< " (global) " << G4endl;
G4cout.precision(oldPrec);
}