diff --git a/MagneticField/VolumeGeometry/interface/BoundVolume.h b/MagneticField/VolumeGeometry/interface/BoundVolume.h deleted file mode 100644 index 17739d51e55dd..0000000000000 --- a/MagneticField/VolumeGeometry/interface/BoundVolume.h +++ /dev/null @@ -1,27 +0,0 @@ -#ifndef BoundVolume_H -#define BoundVolume_H - -#include "DataFormats/GeometrySurface/interface/GloballyPositioned.h" - -class VolumeBoundary; -class PropagationDirection; - -class BoundVolume : public GloballyPositioned { -public: - - BoundVolume( const PositionType& pos, const RotationType& rot) : - GloballyPositioned( pos, rot) {} - - // virtual vector bounds() const = 0; - - virtual const VolumeBoundary* - closestBoundary( const LocalPoint& pos, const LocalVector& momentum, - PropagationDirection dir) const = 0; - - virtual const VolumeBoundary* - nextBoundary( const LocalPoint& pos, const LocalVector& momentum, - PropagationDirection dir) const = 0; - -}; - -#endif