Back to home page

EIC code displayed by LXR

 
 

    


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

0001 #include <cassert>
0002 #include "OPTICKS_LOG.hh"
0003 #include "SEvt.hh"
0004 
0005 
0006 int main(int argc, char** argv)
0007 {
0008     OPTICKS_LOG(argc, argv); 
0009 
0010     SEvt::Create(0); 
0011 
0012     bool ip = SEvt::HasInputPhoton(0) ; 
0013 
0014     LOG(info) << "SEvt::HasInputPhoton " << ip ; 
0015     LOG(info) << SEvt::DescInputPhoton(0) ;  
0016  
0017     return 0 ; 
0018 }