Import Geant4 11.2.0.beta source tree
This commit is contained in:
@@ -59,58 +59,58 @@
|
||||
|
||||
class G4EllipticalTube : public G4VSolid
|
||||
{
|
||||
public: // with description
|
||||
public:
|
||||
|
||||
G4EllipticalTube( const G4String& name,
|
||||
G4double Dx,
|
||||
G4double Dy,
|
||||
G4double Dz );
|
||||
|
||||
virtual ~G4EllipticalTube();
|
||||
~G4EllipticalTube() override;
|
||||
|
||||
// Standard methods
|
||||
//
|
||||
void BoundingLimits( G4ThreeVector& pMin, G4ThreeVector& pMax ) const;
|
||||
void BoundingLimits(G4ThreeVector& pMin, G4ThreeVector& pMax) const override;
|
||||
|
||||
G4bool CalculateExtent( const EAxis pAxis,
|
||||
const G4VoxelLimits& pVoxelLimit,
|
||||
const G4AffineTransform& pTransform,
|
||||
G4double& pmin, G4double& pmax ) const;
|
||||
G4bool CalculateExtent(const EAxis pAxis,
|
||||
const G4VoxelLimits& pVoxelLimit,
|
||||
const G4AffineTransform& pTransform,
|
||||
G4double& pmin, G4double& pmax) const override;
|
||||
|
||||
EInside Inside( const G4ThreeVector& p ) const;
|
||||
EInside Inside( const G4ThreeVector& p ) const override;
|
||||
|
||||
G4ThreeVector SurfaceNormal( const G4ThreeVector& p ) const;
|
||||
G4ThreeVector SurfaceNormal( const G4ThreeVector& p ) const override;
|
||||
|
||||
G4double DistanceToIn( const G4ThreeVector& p,
|
||||
const G4ThreeVector& v ) const;
|
||||
const G4ThreeVector& v ) const override;
|
||||
|
||||
G4double DistanceToIn( const G4ThreeVector& p ) const;
|
||||
G4double DistanceToIn( const G4ThreeVector& p ) const override;
|
||||
|
||||
G4double DistanceToOut( const G4ThreeVector& p,
|
||||
const G4ThreeVector& v,
|
||||
const G4bool calcNorm = false,
|
||||
G4bool* validNorm = nullptr,
|
||||
G4ThreeVector* n = nullptr ) const;
|
||||
G4ThreeVector* n = nullptr ) const override;
|
||||
|
||||
G4double DistanceToOut( const G4ThreeVector& p ) const;
|
||||
G4double DistanceToOut( const G4ThreeVector& p ) const override;
|
||||
|
||||
G4GeometryType GetEntityType() const;
|
||||
G4GeometryType GetEntityType() const override;
|
||||
|
||||
G4VSolid* Clone() const;
|
||||
G4VSolid* Clone() const override;
|
||||
|
||||
std::ostream& StreamInfo(std::ostream& os) const;
|
||||
std::ostream& StreamInfo(std::ostream& os) const override;
|
||||
|
||||
G4double GetCubicVolume();
|
||||
G4double GetSurfaceArea();
|
||||
G4double GetCubicVolume() override;
|
||||
G4double GetSurfaceArea() override;
|
||||
|
||||
G4ThreeVector GetPointOnSurface() const;
|
||||
G4ThreeVector GetPointOnSurface() const override;
|
||||
|
||||
// Visualisation methods
|
||||
//
|
||||
G4Polyhedron* CreatePolyhedron() const;
|
||||
G4Polyhedron* GetPolyhedron () const;
|
||||
void DescribeYourselfTo( G4VGraphicsScene& scene ) const;
|
||||
G4VisExtent GetExtent() const;
|
||||
G4Polyhedron* CreatePolyhedron() const override;
|
||||
G4Polyhedron* GetPolyhedron () const override;
|
||||
void DescribeYourselfTo( G4VGraphicsScene& scene ) const override;
|
||||
G4VisExtent GetExtent() const override;
|
||||
|
||||
// Accessors
|
||||
//
|
||||
@@ -122,8 +122,6 @@ class G4EllipticalTube : public G4VSolid
|
||||
inline void SetDy( G4double Dy );
|
||||
inline void SetDz( G4double Dz );
|
||||
|
||||
public: // without description
|
||||
|
||||
G4EllipticalTube(__void__&);
|
||||
// Fake default constructor for usage restricted to direct object
|
||||
// persistency for clients requiring preallocation of memory for
|
||||
|
||||
Reference in New Issue
Block a user