CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_13_patch3/src/DQMServices/ClientConfig/interface/FitSlicesYTool.h

Go to the documentation of this file.
00001 #ifndef FitSlicesYTool_h
00002 #define FitSlicesYTool_h
00003 
00012 #include <TH2F.h>
00013 #include <TH1F.h>
00014 #include "DQMServices/Core/interface/MonitorElement.h"
00015 #include <string>
00016 
00017 class FitSlicesYTool {
00018  public:
00019   FitSlicesYTool(MonitorElement*);
00021   /*   FitSlicesYTool(TH2F*); */
00023   ~FitSlicesYTool();
00025   void getFittedMean(MonitorElement*);
00027   void getFittedSigma(MonitorElement*);
00029   void getFittedMeanWithError(MonitorElement*);
00031   void getFittedSigmaWithError(MonitorElement*);
00032  private:
00033   TH1* h0;
00034   TH1* h1;
00035   TH1* h2;
00036   TH1* h3;
00037 };
00038 
00039 #endif