Back to home page

EIC code displayed by LXR

 
 

    


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

0001 #include "OPTICKS_LOG.hh"
0002 #include "SOpticksKey.hh"
0003 
0004 int main(int argc, char** argv)
0005 {
0006     OPTICKS_LOG(argc, argv); 
0007 
0008     SOpticksKey::SetKey(nullptr); 
0009     SOpticksKey* key = SOpticksKey::GetKey(); 
0010 
0011     if( key == nullptr ) 
0012     {
0013         LOG(error) << " key NULL " ; 
0014     }
0015     else 
0016     {
0017         LOG(info) << key->desc() ;      
0018     }
0019 
0020     return 0 ; 
0021 }
0022