source: JEM-EUSO/equalization_gain/trunk/src/PlotScurvesAllMain.cc @ 203

Last change on this file since 203 was 203, checked in by dagoret, 11 years ago

Now the class Analysis is operationnal

File size: 831 bytes
Line 
1#include <TRint.h>
2
3#include "TSystem.h"
4#include "TROOT.h"
5#include <TRint.h>
6#include <TString.h>
7
8
9
10#include "PlotScurvesAllMain.h"
11#include "PlotScurvesAll-diffFit.h"
12
13
14 
15extern void InitGui();//initializer for GUI needed for interactive interface
16
17int main(int argc,char** argv)
18{
19   
20   TRint *theApp=new TRint("ROOT-PlotScurvesAll",&argc,argv);
21   
22   
23   // SDC (27/09/2013) :: Old fashion of calling the function directly
24   //PlotScurve();
25
26   // SDC (27/09/2013) :: class analysis working now
27   Analysis* ana = new Analysis;
28
29   ana->Help();
30   ana->Menu();
31   ana->PlotScurve();
32
33    theApp->Run();
34}
35
36//-------------------------------------------------------------------------------------------------
37// Configure (x)emacs for this file ...
38// Local Variables:
39// mode: c++
40// compile-command: "(make;) "
41// End:
Note: See TracBrowser for help on using the repository browser.