Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-04-09 07:48:53

0001 /**
0002 CSGSimtraceTest : CPU testing of CUDA capable csg intersection headers
0003 ========================================================================
0004 
0005 Used from script CSG/ct.sh
0006 
0007 **/
0008 #include "OPTICKS_LOG.hh"
0009 #include "SEventConfig.hh"
0010 #include "CSGSimtrace.hh"
0011 
0012 int main(int argc, char** argv)
0013 {
0014     OPTICKS_LOG(argc, argv);
0015 
0016     SEventConfig::SetRGModeSimtrace();
0017 
0018     CSGSimtrace t ;
0019     t.simtrace();
0020 
0021     return 0 ;
0022 }
0023