]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/PHOS/OnlineDisplay/main.cxx
Debug msg
[u/mrichter/AliRoot.git] / HLT / PHOS / OnlineDisplay / main.cxx
CommitLineData
ad4d700a 1/**************************************************************************
2 * This file is property of and copyright by the Experimental Nuclear *
3 * Physics Group, Dep. of Physics *
4 * University of Oslo, Norway, 2007 *
5 * *
6 * Author: Per Thomas Hille perthi@fys.uio.no for the ALICE HLT Project. *
7 * Contributors are mentioned in the code where appropriate. *
8 * Please report bugs to perthi@fys.uio.no *
9 * *
10 * Permission to use, copy, modify and distribute this software and its *
11 * documentation strictly for non-commercial purposes is hereby granted *
12 * without fee, provided that the above copyright notice appears in all *
13 * copies and that both the copyright notice and this permission notice *
14 * appear in the supporting documentation. The authors make no claims *
15 * about the suitability of this software for any purpose. It is *
16 * provided "as is" without express or implied warranty. *
17 **************************************************************************/
18
ad4d700a 19#include "AliHLTPHOSOnlineDisplay.h"
20#ifndef __CINT__
21# include <stdexcept>
22# include <TSystem.h>
23# include <TApplication.h>
d6238486 24# include "Rtypes.h"
25#include <TString.h>
ad4d700a 26#endif
27
18af2efc 28//#include <TEveManager.h>
997330b5 29
59b4cd9a 30#include <iostream>
31
32using namespace std;
ad4d700a 33
ad4d700a 34int
35main(int argc, char** argv)
36{
59b4cd9a 37 try
38 {
39 TApplication app("app", 0, 0);
18af2efc 40 //TEveManager::Create();
59b4cd9a 41 AliHLTPHOSOnlineDisplay::Instance(argc, argv);
42 app.Run();
43 }
134dc672 44
59b4cd9a 45 catch (std::exception& e)
46 {
47 // std::cerr << e.what() << std::endl;
48 return 1;
49 }
d6238486 50
59b4cd9a 51 return 0;
52}
d6238486 53