Back to home page

EIC code displayed by LXR

 
 

    


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

0001 /**
0002 U4TreeCreateSSimLoadTest.cc
0003 ==============================
0004 
0005 
0006 1. SSim::Load from $BASE (the directory BASE should contain the "SSim" sub-dir) 
0007 2. emit SSim::brief 
0008 
0009 
0010 **/
0011 
0012 #include "OPTICKS_LOG.hh"
0013 #include "SSim.hh"
0014 
0015 int main(int argc, char** argv)
0016 {
0017     OPTICKS_LOG(argc, argv); 
0018     SSim* sim = SSim::Load("$FOLD") ;
0019     assert(sim && "FOLD directory in filesystem should contain \"SSim\" subfold"); 
0020     LOG(info) << "SSim::Load(\"$FOLD\") " << ( sim ? sim->brief() : "-" ) ;  
0021     return 0 ;  
0022 }