Import Geant4 5.0.0 source tree
This commit is contained in:
@@ -21,8 +21,8 @@
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4Box.hh,v 1.7 2001/07/11 09:59:54 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-04-01 $
|
||||
// $Id: G4Box.hh,v 1.8 2002/10/28 11:43:03 gcosmo Exp $
|
||||
// GEANT4 tag $Name: geant4-05-00 $
|
||||
//
|
||||
// --------------------------------------------------------------------
|
||||
// GEANT 4 class header file
|
||||
@@ -34,42 +34,15 @@
|
||||
//
|
||||
// A Box is a cuboid of given half lengths dx,dy,dz. The Box is
|
||||
// centred on the origin with sides parallel to the x/y/z axes.
|
||||
//
|
||||
// Member functions:
|
||||
//
|
||||
// As inherited from G4CSGSolid +
|
||||
//
|
||||
// G4Box(const G4String& pName,
|
||||
// G4double pX, G4double pY, G4double pZ)
|
||||
//
|
||||
// - Construct a box with name, and half lengths pX,pY,pZ
|
||||
//
|
||||
// G4double GetXHalfLength() const
|
||||
// G4double GetYHalfLength() const
|
||||
// G4double GetZHalfLength() const
|
||||
//
|
||||
// - Return the respective parameter
|
||||
//
|
||||
// Protected:
|
||||
//
|
||||
// G4ThreeVectorList*
|
||||
// CreateRotatedVertices(const G4AffineTransform& pTransform) const
|
||||
//
|
||||
// - Create the List of transformed vertices in the format required
|
||||
// for G4VSolid:: ClipCrossSection and ClipBetweenSections.
|
||||
//
|
||||
// Member Data: (private)
|
||||
//
|
||||
// fDx,fDy,fDz - The box's half-widths
|
||||
|
||||
// History:
|
||||
// 30.06.95 P.Kent Converted from source code developed end 94
|
||||
// 27.03.96 J.Allison Added virtual functions DescribeYourselfTo and
|
||||
// SendWireframeTo (G4VGraphicsModel&).
|
||||
// 22.07.96 J.Allison Changed G4VGraphicsModel to G4VGraphicsScene.
|
||||
// and SendPolyhedronTo to CreatePolyhedron.
|
||||
// 27.03.98 J.Apostolakis Inherit from G4CSGSolid (not G4VSolid).
|
||||
// 18.11.99 J.Apostolakis, V.Grichine: kUndefined was added to ESide
|
||||
// 30.06.95 P.Kent: Converted from source code developed end 94
|
||||
// 27.03.96 J.Allison: Added virtual functions DescribeYourselfTo() and
|
||||
// SendWireframeTo(G4VGraphicsModel&)
|
||||
// 22.07.96 J.Allison: Changed G4VGraphicsModel to G4VGraphicsScene
|
||||
// and SendPolyhedronTo() to CreatePolyhedron()
|
||||
// 27.03.98 J.Apostolakis: Inherit from G4CSGSolid (not G4VSolid)
|
||||
// 18.11.99 J.Apostolakis, V.Grichine: kUndefined was added to ESide
|
||||
// --------------------------------------------------------------------
|
||||
|
||||
#ifndef G4BOX_HH
|
||||
@@ -79,9 +52,10 @@
|
||||
|
||||
class G4Box : public G4CSGSolid
|
||||
{
|
||||
public:
|
||||
public: // with description
|
||||
|
||||
G4Box(const G4String& pName, G4double pX, G4double pY, G4double pZ);
|
||||
// Construct a box with name, and half lengths pX,pY,pZ
|
||||
|
||||
virtual ~G4Box();
|
||||
|
||||
@@ -92,21 +66,24 @@ class G4Box : public G4CSGSolid
|
||||
G4bool CalculateExtent(const EAxis pAxis,
|
||||
const G4VoxelLimits& pVoxelLimit,
|
||||
const G4AffineTransform& pTransform,
|
||||
G4double& pmin, G4double& pmax) const;
|
||||
// Access functions
|
||||
G4double& pmin, G4double& pmax) const;
|
||||
|
||||
G4double GetXHalfLength() const { return fDx; }
|
||||
// Accessors and modifiers
|
||||
|
||||
inline G4double GetXHalfLength() const;
|
||||
|
||||
G4double GetYHalfLength() const { return fDy; }
|
||||
inline G4double GetYHalfLength() const;
|
||||
|
||||
G4double GetZHalfLength() const { return fDz; }
|
||||
inline G4double GetZHalfLength() const;
|
||||
|
||||
void SetXHalfLength(G4double dx) ;
|
||||
|
||||
void SetYHalfLength(G4double dy) ;
|
||||
|
||||
void SetZHalfLength(G4double dz) ;
|
||||
|
||||
|
||||
// Methods for solid
|
||||
|
||||
EInside Inside(const G4ThreeVector& p) const;
|
||||
|
||||
G4ThreeVector SurfaceNormal( const G4ThreeVector& p) const;
|
||||
@@ -117,29 +94,38 @@ class G4Box : public G4CSGSolid
|
||||
|
||||
G4double DistanceToOut(const G4ThreeVector& p, const G4ThreeVector& v,
|
||||
const G4bool calcNorm=false,
|
||||
G4bool *validNorm=0,G4ThreeVector *n=0) const;
|
||||
G4bool *validNorm=0, G4ThreeVector *n=0) const;
|
||||
|
||||
G4double DistanceToOut(const G4ThreeVector& p) const;
|
||||
|
||||
G4GeometryType GetEntityType() const { return G4String("G4Box"); }
|
||||
G4GeometryType GetEntityType() const;
|
||||
|
||||
G4std::ostream& StreamInfo(G4std::ostream& os) const;
|
||||
|
||||
// Functions for visualization
|
||||
|
||||
void DescribeYourselfTo (G4VGraphicsScene& scene) const;
|
||||
G4VisExtent GetExtent () const;
|
||||
G4Polyhedron* CreatePolyhedron () const;
|
||||
G4NURBS* CreateNURBS () const;
|
||||
|
||||
protected:
|
||||
protected: // with description
|
||||
|
||||
G4ThreeVectorList*
|
||||
CreateRotatedVertices(const G4AffineTransform& pTransform) const;
|
||||
|
||||
// Codes for faces (kPX=plus x face,kMY= minus y face etc)
|
||||
// Create the List of transformed vertices in the format required
|
||||
// for G4VSolid:: ClipCrossSection and ClipBetweenSections.
|
||||
|
||||
protected: // without description
|
||||
|
||||
enum ESide {kUndefined,kPX,kMX,kPY,kMY,kPZ,kMZ};
|
||||
// Codes for faces (kPX=plus x face,kMY= minus y face etc)
|
||||
|
||||
private:
|
||||
|
||||
G4double fDx,fDy,fDz;
|
||||
};
|
||||
|
||||
#include "G4Box.icc"
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user