Files
geant4/source/geometry/volumes/include/G4AuxiliaryNavServices.hh
T
2016-06-08 16:57:27 +02:00

76 lines
2.8 KiB
C++

//
// ********************************************************************
// * 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.5 2002/07/23 08:50:33 gcosmo Exp $
// GEANT4 tag $Name: geant4-05-00 $
//
//
// 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