Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-04-10 07:49:32

0001 /**
0002 CSGOptiXMainTest
0003 ==================
0004 
0005 This "proceed" approach means that a single executable 
0006 does very different things depending on the RGMode envvar. 
0007 That is not convenient as default bookkeeping is based on 
0008 executable names so instead use three separate executables 
0009 that each use the corresponding SimulateMain, RenderMain, SimtraceMain 
0010 static method. 
0011 
0012 **/
0013 
0014 #include "OPTICKS_LOG.hh"
0015 #include "CSGOptiX.h"
0016 
0017 int main(int argc, char** argv)
0018 {
0019     OPTICKS_LOG(argc, argv); 
0020     CSGOptiX::Main(); 
0021     return 0 ;
0022 }
0023 
0024 
0025