Import Geant4 2.0.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-08 15:42:07 +02:00
parent 103bda00c8
commit e7d7193284
3106 changed files with 171117 additions and 90550 deletions
@@ -6,7 +6,7 @@
// and all its terms.
//
// $Id: G4DatabaseTypes.hh,v 1.3 1999/11/28 21:54:19 morita Exp $
// GEANT4 tag $Name: geant4-01-01 $
// GEANT4 tag $Name: geant4-02-00 $
//
// file description:
@@ -6,7 +6,7 @@
// and all its terms.
//
// $Id: G4PersistentSchema.hh,v 1.5 1999/12/05 22:32:26 morita Exp $
// GEANT4 tag $Name: geant4-01-01 $
// GEANT4 tag $Name: geant4-02-00 $
//
// Persistent-capable schema definitions required for ooddlx processor
//
@@ -6,7 +6,7 @@
// and all its terms.
//
// $Id: G4PersistentTypes.hh,v 1.2 1999/12/15 14:51:26 gunter Exp $
// GEANT4 tag $Name: geant4-01-01 $
// GEANT4 tag $Name: geant4-02-00 $
//
//
// Persistent-capable typedefs for Geant4/Persistency category
@@ -0,0 +1,50 @@
// 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: G4VMaterialMap.hh,v 1.1 2000/06/09 12:53:25 morita Exp $
// GEANT4 tag $Name: geant4-02-00 $
//
#ifndef G4VMaterialMap_hh
#define G4VMaterialMap_hh 1
// class description:
//
// This is an abstract base class for bookkeeping the material name
// for retrieving persistent geometry.
// User must provide the appropriate class for constructing material
// objects from material name when retrieving a stored persistent
// geometry.
// The virtual method LookUp() will be invoked from G4PersistentGeomMan.
//
#include "globals.hh"
#include "G4Material.hh"
class G4VMaterialMap
{
public:
static G4VMaterialMap* GetMaterialMap();
// Static method to return the pointer to the singleton object.
// Note that this method does NOT create the singleton object.
protected:
G4VMaterialMap();
public:
virtual ~G4VMaterialMap();
private:
static G4VMaterialMap * fMaterialMap;
public: // with description
virtual G4Material* LookUp(const G4String aName)=0;
// Returns a pointer to the material
};
#endif
@@ -6,7 +6,7 @@
// and all its terms.
//
// $Id: G4VPersistentSubDbMan.hh,v 1.3 1999/11/28 21:54:19 morita Exp $
// GEANT4 tag $Name: geant4-01-01 $
// GEANT4 tag $Name: geant4-02-00 $
//
// class G4VPersistentSubDbMan
//
@@ -6,7 +6,7 @@
// and all its terms.
//
// $Id: G4VPersistentSubMan.hh,v 1.2 1999/11/25 11:33:07 morita Exp $
// GEANT4 tag $Name: geant4-01-01 $
// GEANT4 tag $Name: geant4-02-00 $
//
// class G4VPersistentSubMan
//