File indexing completed on 2026-04-09 07:49:17
0001
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 NP* a = SEvt::UU_BURN ;
0011 std::cout << ( a ? a->sstr() : "-" ) << std::endl ;
0012 if(a == nullptr) return 0 ;
0013
0014 std::cout << a->repr<int>() << std::endl ;
0015
0016 int u_idx = 0 ;
0017 int ret = a->ifind2D<int>(u_idx, 0, 1 ) ;
0018
0019 std::cout << " ret " << ret << std::endl;
0020
0021
0022
0023 return 0 ;
0024 }