StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
readTextFile.h
1 #ifndef READTEXTFILE_H
2 #define READTEXTFILE_H
3 
4 #include <iostream.h>
5 #include <getopt.h>
6 #include <math.h>
7 #include <fstream.h>
8 #include <stdlib.h>
9 
10 #include <TColor.h>
11 #include <TStyle.h>
12 #include <TString.h>
13 #include <TFile.h>
14 #include <TH2.h>
15 #include <TH3.h>
16 #include <TApplication.h>
17 #include <TROOT.h>
18 #include <TCanvas.h>
19 #include <TIterator.h>
20 #include <TKey.h>
21 
22 extern void InitGui();
23 VoidFuncPtr_t initfuncs[] = { InitGui, 0 };
24 TROOT root("slice", "Residual Histogram projection", initfuncs);
25 
26 void parse(TString& a, char* b);
27 TString split(TString&);
28 void removeLead(TString &a);
29 void removeTrail(TString &a);
30 #endif