BOSS 7.0.4
BESIII Offline Software System
Loading...
Searching...
No Matches
ServerMain.cxx
Go to the documentation of this file.
1#include "DistBossServer/DistBossServer.h"
2#include <iostream>
3
4int main(int argc, char* argv[])
5{
6 if ( argc != 2 ) {
7 std::cout << "Usage: " << argv[0] << " jobOptions.txt" << std::endl;
8 exit(1);
9 }
10
11 DistBossServer server( argv[1] );
12
13 server.run();
14
15 return 0;
16}
int main()
Definition: test_IFile.cxx:11