CFLAGS=-c -g -Wall -std=c++11 `root-config --cflags`
LDFLAGS=`root-config --glibs`
CLDFLAGS = -std=c++11 `root-config --cflags --glibs` -lboost_system -lboost_filesystem
-SOURCES= main.C unpack.C unpack.h help.h header.h
+SOURCES= main.C unpack.C unpack.h help.h
OBJECTS=$(subst .cc,.o,$(SOURCES))
EXECUTABLE=Mi26NM
+++ /dev/null
-#include <stdlib.h>
-#include <TClass.h>
-#include <fstream>
-#include <iostream>
-#include "Riostream.h"
-#include <string>
-#include "TString.h"
-#include "TMath.h"
-#include <TFile.h>
-#include <TNtuple.h>
-#include <TH1F.h>
-#include <TH2F.h>
-#include "TH1.h"
-#include "TF1.h"
-#include "TROOT.h"
-#include <TApplication.h>
-#include "TCanvas.h"
-#include "TObject.h"
-#include "TStyle.h"
-#include "TEnv.h"
-#include "TGraph.h"
-#include "TGaxis.h"
-#include "TStyle.h"
-#include "TFrame.h"
-#include "TVector.h"
-#include "TVectorD.h"
-#include "Foption.h"
-#include "TRandom.h"
-#include "TRandom3.h"
-#include "TSpline.h"
-#include "TPaveStats.h"
-#include "TVirtualFitter.h"
-#include "TVirtualPad.h"
-//#include "TVirtualGraphPainter.h"
-#include "TBrowser.h"
-#include "TSystem.h"
-#include "TPluginManager.h"
-#include "TPad.h"
-#include <TQObject.h>
-#include <TMultiGraph.h>
-#include <vector>
-#include "TControlBar.h"
-#include <string>
-#include <stdio.h>
-#include <stdlib.h>
-#include "TGraphErrors.h"
-#include "TMinuit.h"
-#include <iomanip>
-#include <sys/time.h>
-#include <TLegend.h>
-using namespace std;
\ No newline at end of file
#define MAXSTATES 1140
#endif
-#include <iostream>
-#include <cstdlib>
-#include <unistd.h>
-#include <stdlib.h>
-#include <stddef.h>
-#include <stdio.h>
-#include <unistd.h>
-#include "TStopwatch.h"
-
-//####################################################################
-
-// Int_t print_progress(Float_t ProgressInPercent) {
-//
-// Int_t nCharacter = printf("\r [");
-// Int_t iBlock;
-//
-// for( iBlock=0; iBlock<ProgressInPercent/2; ++iBlock )
-// {
-// putchar( '=' );
-// nCharacter++;
-// }
-//
-// for( ; iBlock<100/2; ++iBlock )
-// {
-// putchar( ' ' );
-// nCharacter++;
-// }
-//
-// // Int_t sec = TimeInSec%60;
-// // Int_t min = TimeInSec/60;
-// // Int_t hours = TimeInSec/3600;
-//
-// nCharacter += printf( "] %4.0f%%", ProgressInPercent);
-// fflush( stdout );
-//
-// if((Int_t)ProgressInPercent==100)
-// {
-// printf("\r");
-// for(Int_t i=0; i<nCharacter; i++)
-// {
-// putchar( ' ' );
-// }
-// printf("\r ... done! \n");
-// }
-//
-// return nCharacter;
-// }
-
-//####################################################################
-
-// Int_t print_progress(Float_t ProgressInPercent, Int_t TimeInSec) {
-//
-// Int_t nCharacter = printf("\r [");
-// Int_t iBlock;
-//
-// for( iBlock=0; iBlock<ProgressInPercent/2; ++iBlock )
-// {
-// putchar( '=' );
-// nCharacter++;
-// }
-//
-// for( ; iBlock<100/2; ++iBlock )
-// {
-// putchar( ' ' );
-// nCharacter++;
-// }
-//
-// Int_t sec = TimeInSec%60;
-// Int_t min = TimeInSec/60;
-// Int_t hours = TimeInSec/3600;
-//
-// nCharacter += printf( "] %6.2f%% \t %3i:%02i:%02i ", ProgressInPercent, hours, min, sec );
-// fflush( stdout );
-//
-// if(ProgressInPercent==100)
-// {
-// printf("\r");
-// for(Int_t i=0; i<nCharacter; i++)
-// {
-// putchar( ' ' );
-// }
-// printf("\r ...done! \t ( %i:%02i:%02i ) \n", hours, min, sec );
-// }
-//
-// return nCharacter;
-// }
+#include "TROOT.h"
//####################################################################