Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-04-10 07:50:28

0001 #include "OPTICKS_LOG.hh"
0002 
0003 #include "U4GDML.h"
0004 #include "U4Traverse.h"
0005 
0006 int main(int argc, char** argv)
0007 {
0008     OPTICKS_LOG(argc, argv);
0009 
0010     const G4VPhysicalVolume* world = U4GDML::Read() ;
0011 
0012     LOG_IF(fatal, world == nullptr)
0013        << " U4GDML::Read FAILED to provide world "
0014        ;
0015 
0016     if(world == nullptr) return 0;
0017 
0018     U4Traverse::Traverse(world);
0019 
0020 
0021     return 0 ;
0022 }