Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
elogtest.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file elogtest.cc
1 
2 #include <iostream>
3 #include <eloghandler.h>
4 
5 int main()
6 {
7 
8  ElogHandler *x = new ElogHandler("localhost", 666, "RCDAQLog");
9 
10  x->BegrunLog(104,"mmm", "run_xxx");
11  x->EndrunLog(104,"mmm", 24567);
12 
13  delete x;
14 }