// This code implementation is the intellectual property of // the RD44 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 2.1 1998/11/02 12:11:50 japost Exp $ // GEANT4 tag $Name: geant4-00 $ // // // class G4NormalNavigation: Utility for navigation in volumes // containing only G4PVPlacement daughter volumes. 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: 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