Import Geant4 1.0.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-08 15:28:20 +02:00
parent aaa409b6ee
commit ca1c8cb059
2995 changed files with 106830 additions and 299600 deletions
@@ -0,0 +1,38 @@
// Persistent class for description of intersection of two CSG solids
//
// History:
// 10.11.99 Y.Morita, Initial creation
#ifndef G4PINTERSECTIONSOLID_DDL
#define G4PINTERSECTIONSOLID_DDL
#include "G4PersistentSchema.hh"
#include "G4PBooleanSolid.hh"
class G4VSolid;
class G4PIntersectionSolid: public G4PBooleanSolid
{
public:
G4PIntersectionSolid( const G4String& pName,
HepRef(G4PVSolid) persSolidA,
HepRef(G4PVSolid) persSolidB );
virtual ~G4PIntersectionSolid() ;
G4VSolid* MakeTransientObject() const;
G4VSolid* MakeTransientBooleanSolid(
G4VSolid* aSolidA,
G4VSolid* aSolidB ) const;
virtual G4GeometryType GetEntityType() const
{ return G4String("G4IntersectionSolid"); }
protected:
private:
};
#endif