Files
geant4/source/g3tog4/src/g4geom.cc.main
T
2018-12-07 15:15:39 +01:00

26 lines
609 B
Plaintext

// 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.
//
//
// g4geom
//
// Use the geometry code built by G3->G4 conversion to create the
// Geant4 geometry
//
// T. Wenaus LLNL 6/95
//
#include "G3toG4.hh"
#include "G4GeometryManager.hh"
void G3toG4code();
void G3G4init();
int main(int argc, char* argv[])
{
G3toG4code();
G4GeometryManager::GetInstance()->CloseGeometry();
return 0;
}