Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-02 08:21:01

0001 
0002 #include <iostream>
0003 #include <eloghandler.h>
0004 
0005 int main()
0006 {
0007 
0008   ElogHandler *x = new ElogHandler("localhost", 666, "RCDAQLog");
0009 
0010   x->BegrunLog(104,"mmm", "run_xxx");
0011   x->EndrunLog(104,"mmm", 24567);
0012 
0013   delete x;
0014 }