Back to home page

EIC code displayed by LXR

 
 

    


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

0001 #include "OPTICKS_LOG.hh"
0002 #include "SSys.hh"
0003 
0004 int main(int argc, char** argv)
0005 {
0006     OPTICKS_LOG(argc, argv); 
0007    
0008     const char* hostname = SSys::hostname() ; 
0009     const char* username = SSys::username() ; 
0010     LOG(info) 
0011        << " hostname " << hostname 
0012        << " username " << username 
0013        ;
0014 
0015     assert( hostname ); 
0016     assert( username ); 
0017 
0018     return 0 ; 
0019 }