HARPO  5.1.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
hnoisemonitorgui.cxx
Go to the documentation of this file.
1 #include <TApplication.h>
2 #include <TGClient.h>
3 #include <TROOT.h>
4 #include <TStyle.h>
5 #include "HarpoNoiseMonitorGui.h"
6 
7 
8 int main(int argc, char **argv)
9 {
10  // Long_t processed = -1; // Processed events counter , negative on error
11 
12  //int argcR = argc;
13  //char **argvR = argv;
14 
15  // TApplication *theApp = new TApplication("App", &argcR, argvR);
16  TApplication *theApp = new TApplication("App", 0,0);
17  gROOT->SetStyle("Plain");
18  gStyle->SetPalette(1);
19  HarpoNoiseMonitorGui mainWin(gClient->GetRoot(),10,10,kMainFrame | kHorizontalFrame, argc, argv);
20 
21  theApp->Run();
22 
23  return 0;
24 }
int main(int argc, char **argv)