Back to home page

EIC code displayed by LXR

 
 

    


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

0001 /**
0002 CSGGeometryTest
0003 =======================
0004 
0005 **/
0006 
0007 #include "OPTICKS_LOG.hh"
0008 #include "CSGGeometry.h"
0009 
0010 int main(int argc, char** argv)
0011 {
0012     OPTICKS_LOG(argc, argv); 
0013 
0014     CSGGeometry geom ;
0015     geom.dump(); 
0016     std::cout << geom.desc() << std::endl ; 
0017 
0018     return 0 ; 
0019 
0020 }
0021 
0022 
0023 
0024