Import Geant4 4.0.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-08 16:18:25 +02:00
parent 36c080dca6
commit 921d3b1cda
3990 changed files with 185376 additions and 82884 deletions
@@ -21,11 +21,12 @@
// ********************************************************************
//
//
// $Id: G4PAffineTransform.ddl,v 1.4.4.1 2001/06/28 19:11:27 gunter Exp $
// GEANT4 tag $Name: $
//
// $Id: G4PAffineTransform.ddl,v 1.6 2001/07/11 10:02:16 gunter Exp $
// GEANT4 tag $Name: geant4-04-00 $
// Class Description:
// persistenet class of G4AffineTransform
//
// History:
// 10.11.99 Y.Morita, initial creation
@@ -41,11 +42,13 @@ class G4AffineTransform;
class G4PAffineTransform
: public HepPersObj
{
public:
public: // With description
G4PAffineTransform( const G4AffineTransform aTrans );
~G4PAffineTransform();
// Constructor and Destructor
G4AffineTransform MakeTransientObject();
// Creates a transient G4AffineTransform object
private:
G4Pdouble rxx,rxy,rxz;
@@ -21,12 +21,13 @@
// ********************************************************************
//
//
// $Id: G4PVSolid.ddl,v 1.4.4.1 2001/06/28 19:11:27 gunter Exp $
// GEANT4 tag $Name: $
//
//
// class G4PVSolid
// $Id: G4PVSolid.ddl,v 1.6 2001/07/11 10:02:17 gunter Exp $
// GEANT4 tag $Name: geant4-04-00 $
//
// Class Description:
// Persistent version of the abstract base class for G4VSolid.
// History:
// 19.06.98 A.Kimura Converted from G4VSolid.hh
// 20.06.98 A.Kimura Clean up
@@ -45,23 +46,32 @@
class G4PVSolid;
class G4PVSolid : public HepPersObj {
public:
class G4PVSolid
: public HepPersObj
{
public: // With description
G4PVSolid();
G4PVSolid(const G4String& name);
virtual ~G4PVSolid();
// Constructor and Destructor
virtual G4VSolid* MakeTransientObject() const = 0;
// Creates a transient G4VSolid object. Must be implemented in
// user class which inherits which class.
G4bool operator==( const G4PVSolid& s) const
{
return (this==&s) ? true : false;
}
// Comparison operator.
G4String GetName() const;
void SetName(const G4String& name);
// Get and set the name of the solid.
virtual G4GeometryType GetEntityType() const = 0;
// Returns the geometry entity type of the solid. Must be
// implemented in user class which inherits which class.
private: