// // ******************************************************************** // * DISCLAIMER * // * * // * The following disclaimer summarizes all the specific disclaimers * // * of contributors to this software. The specific disclaimers,which * // * govern, are listed with their locations in: * // * http://cern.ch/geant4/license * // * * // * Neither the authors of this software system, nor their employing * // * institutes,nor the agencies providing financial support for this * // * work make any representation or warranty, express or implied, * // * regarding this software system or assume any liability for its * // * use. * // * * // * 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: G4AuxiliaryNavServices.hh,v 1.3.4.1 2001/06/28 19:09:37 gunter Exp $ // GEANT4 tag $Name: $ // // // class G4NormalNavigation // // Class description: // // Utility for navigation in volumes containing only G4PVPlacement // daughter volumes. // History: // - Created: Paul Kent, Aug 96 #ifndef G4AuxiliaryNavServices_hh #define G4AuxiliaryNavServices_hh #include "geomdefs.hh" #include "G4ThreeVector.hh" #include "G4VSolid.hh" #include "G4AffineTransform.hh" class G4AuxiliaryNavServices { public: // with description static G4bool CheckPointOnSurface( const G4VSolid* sampleSolid, const G4ThreeVector& localPoint, const G4ThreeVector* globalDirection, const G4AffineTransform& sampleTransform, const G4bool locatedOnEdge); // // Is the track (Point, direction) inside the solid sampleSolid ? // Returns true if we are going to enter the volume, which is the case if: // - The point is inside // - The point is on the surface and the direction points inside // or along it. // Else returns false private: G4bool testOne(); }; #include "G4AuxiliaryNavServices.icc" #endif