Files
geant4/source/geometry/solids/BREPS/include/G4FCylindricalSurface.icc
T
2016-06-08 15:55:53 +02:00

51 lines
1.2 KiB
Plaintext

// This code implementation is the intellectual property of
// the GEANT4 collaboration.
//
// By copying, distributing or modifying the Program (or any work
// based on the Program) you indicate your acceptance of this statement,
// and all its terms.
//
// $Id: G4FCylindricalSurface.icc,v 1.2 2000/08/28 15:00:33 gcosmo Exp $
// GEANT4 tag $Name: geant4-03-00 $
//
// --------------------------------------------------------------------
// GEANT 4 inline definitions file
//
// G4FCylindricalSurface.icc
//
// Implementation of inline methods of G4FCylindricalSurface
// --------------------------------------------------------------------
inline
G4int G4FCylindricalSurface::operator==( const G4FCylindricalSurface& c ) const
{
return ( origin == c.origin &&
Position == c.Position &&
radius == c.radius &&
length == c.length );
}
inline
G4String G4FCylindricalSurface::GetEntityType() const
{
return G4String("Cylindrical_Surface");
}
inline
G4double G4FCylindricalSurface::GetLength() const
{
return length;
}
inline
G4Vector3D G4FCylindricalSurface::GetAxis() const
{
return Position.GetAxis();
}
inline
G4double G4FCylindricalSurface::GetRadius() const
{
return radius;
}