Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-04-09 07:49:16

0001 #include "OPTICKS_LOG.hh"
0002 
0003 #include "scuda.h"
0004 #include "squad.h"
0005 #include "SCenterExtentGenstep.hh"
0006 
0007 int main(int argc, char** argv)
0008 {
0009     OPTICKS_LOG(argc, argv); 
0010 
0011     float4 ce ; 
0012     qvals(ce, "CE" , "1000,0,0,100" ); 
0013     LOG(info) << " CE " << ce ; 
0014 
0015     SCenterExtentGenstep* cegs = new SCenterExtentGenstep(&ce) ; 
0016 
0017     LOG(info) << " cegs " << cegs->desc();   
0018 
0019 
0020     cegs->save(); 
0021 
0022     return 0 ; 
0023 }