StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StFgtPointPlotter.h
1 #ifndef _ST_FGT_POINT_PLOTTER_
2 #define _ST_FGT_POINT_PLOTTER_
3 #include "StMaker.h"
4 
5 
6 #include <TH2D.h>
7 #include <TROOT.h>
8 #include <TStyle.h>
9 #include <TCanvas.h>
10 #include <TFile.h>
11 #include <TF1.h>
13 class StFgtPoint;
14 class StFgtPointPlotter : public StMaker
15 {
16  public:
17  virtual ~StFgtPointPlotter();
18  StFgtPointPlotter(const Char_t* name="FgtPointPlotter");
19  Int_t Init();
20  Int_t Make();
21  Int_t Finish();
22  protected:
23 
24  TFile* outRootFile;
25  TH2D** histos;
26  TH2D* tbCorrelation;
27  TH1D** tbHistos;
28 
29 
30  private:
31  ClassDef(StFgtPointPlotter,1);
32 };
33 #endif
Represents a point in the FGT.
Definition: StFgtPoint.h:49