Import Geant4 9.6.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-09 17:01:34 +02:00
parent b1eb5424d2
commit e2d2f9810a
10384 changed files with 698580 additions and 628834 deletions
@@ -24,8 +24,7 @@
// ********************************************************************
//
//
// $Id: G4SphericalSurface.icc,v 1.4 2006-06-29 18:40:39 gunter Exp $
// GEANT4 tag $Name: not supported by cvs2svn $
// $Id$
//
// --------------------------------------------------------------------
// GEANT 4 inline definitions file
@@ -36,16 +35,16 @@
// --------------------------------------------------------------------
inline
G4int G4SphericalSurface::operator==( const G4SphericalSurface& s )
G4int G4SphericalSurface::operator==( const G4SphericalSurface& surf )
{
return origin == s.origin &&
x_axis == s.x_axis &&
z_axis == s.z_axis &&
radius == s.radius &&
phi_1 == s.phi_1 &&
phi_2 == s.phi_2 &&
theta_1 == s.theta_1 &&
theta_2 == s.theta_2;
return origin == surf.origin &&
x_axis == surf.x_axis &&
z_axis == surf.z_axis &&
radius == surf.radius &&
phi_1 == surf.phi_1 &&
phi_2 == surf.phi_2 &&
theta_1 == surf.theta_1 &&
theta_2 == surf.theta_2;
}
inline