Import Geant4 2.0.0 source tree
This commit is contained in:
@@ -1,28 +1,52 @@
|
||||
// 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: G4EdgeLoopCreator.hh,v 1.2 2000/01/21 13:45:19 gcosmo Exp $
|
||||
// GEANT4 tag $Name: geant4-02-00 $
|
||||
//
|
||||
// ----------------------------------------------------------------------
|
||||
// Class G4EdgeLoopCreator
|
||||
//
|
||||
// Class description:
|
||||
//
|
||||
//
|
||||
|
||||
// Authors: J.Sulkimo, P.Urban.
|
||||
// Revisions by: L.Broglia, G.Cosmo.
|
||||
//
|
||||
// History:
|
||||
// 18-Nov-1999: First step of re-engineering - G.Cosmo
|
||||
// ----------------------------------------------------------------------
|
||||
#ifndef G4EDGELOOPCREATOR_HH
|
||||
#define G4EDGELOOPCREATOR_HH
|
||||
|
||||
#include "G4GeometryCreator.hh"
|
||||
#include "G4GeometryTable.hh"
|
||||
|
||||
class G4EdgeLoopCreator: private G4GeometryCreator
|
||||
{
|
||||
public:
|
||||
//Constructor
|
||||
G4EdgeLoopCreator();
|
||||
~G4EdgeLoopCreator();
|
||||
public:
|
||||
|
||||
//Member functions
|
||||
// Constructor
|
||||
|
||||
void CreateG4Geometry(STEPentity&);
|
||||
G4EdgeLoopCreator();
|
||||
~G4EdgeLoopCreator();
|
||||
|
||||
void CreateSTEPGeometry(void* G4obj);
|
||||
// Member functions
|
||||
|
||||
G4String Name(){return "Edge_Loop";};
|
||||
void CreateG4Geometry(STEPentity&);
|
||||
void CreateSTEPGeometry(void* G4obj);
|
||||
G4String Name() { return "Edge_Loop"; }
|
||||
static G4EdgeLoopCreator GetInstance() { return csc; }
|
||||
|
||||
static G4EdgeLoopCreator GetInstance(){return csc;};
|
||||
// Members
|
||||
|
||||
//Members
|
||||
private:
|
||||
private:
|
||||
|
||||
static G4EdgeLoopCreator csc;
|
||||
static G4EdgeLoopCreator csc;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user