GSI Object Oriented Online Offline (Go4) GO4-6.4.0
Loading...
Searching...
No Matches
MainGo4TaskHandlerServer.cxx
Go to the documentation of this file.
1// $Id$
2//-----------------------------------------------------------------------
3// The GSI Online Offline Object Oriented (Go4) Project
4// Experiment Data Processing at EE department, GSI
5//-----------------------------------------------------------------------
6// Copyright (C) 2000- GSI Helmholtzzentrum fuer Schwerionenforschung GmbH
7// Planckstr. 1, 64291 Darmstadt, Germany
8// Contact: http://go4.gsi.de
9//-----------------------------------------------------------------------
10// This software can be used under the license agreements as stated
11// in Go4License.txt file which is part of the distribution.
12//-----------------------------------------------------------------------
13
14#include <iostream>
15
16#include "TApplication.h"
17
18#include "TGo4Log.h"
19#include "TGo4ExampleServer.h"
20
21int main(int argc, char **argv)
22{
23 TApplication theApp("App", &argc, argv);
24 TGo4Log::Instance(); // init logger object
25 TGo4Log::SetIgnoreLevel(0); // set this to 1 to suppress detailed debug output
26 // set this to 2 to get warnings and errors only
27 // set this to 3 to get errors only
28 TGo4Log::LogfileEnable(kFALSE); // will enable or disable logging all messages to file
29
30 TGo4ExampleServer* myserver = new TGo4ExampleServer("MyExampleServer", 0, kFALSE);
31 // second parameter is negotiation portnumber
32 std::cout << "Created Example Server Instance:"<<myserver->GetName()<<std::endl; // dummy action for warnings
33 theApp.Run();
34 return 0;
35}
int main(int argc, char **argv)
example class for a server task that fits to the example application
static TGo4Log * Instance()
Definition TGo4Log.cxx:85
static void SetIgnoreLevel(Int_t level)
Define threshold for output.
Definition TGo4Log.cxx:332
static void LogfileEnable(Bool_t on=kTRUE)
switch writing to logfile on or off
Definition TGo4Log.cxx:363