File indexing completed on 2023-03-17 10:42:16
0001 #ifndef CalibMuon_DTMeanTimerFitter_H
0002 #define CalibMuon_DTMeanTimerFitter_H
0003
0004
0005
0006
0007
0008
0009
0010 #include <vector>
0011 #include "TString.h"
0012
0013 class TH1F;
0014 class TFile;
0015 class TF1;
0016
0017 class DTMeanTimerFitter {
0018 public:
0019
0020 DTMeanTimerFitter(TFile* file);
0021
0022
0023 virtual ~DTMeanTimerFitter();
0024
0025
0026 std::vector<float> evaluateVDriftAndReso(const TString& N);
0027
0028
0029 void setVerbosity(unsigned int lvl) { theVerbosityLevel = lvl; }
0030
0031
0032 TF1* fitTMax(TH1F* histo);
0033
0034 protected:
0035 private:
0036 TFile* hDebugFile;
0037 TFile* hInputFile;
0038
0039 unsigned int theVerbosityLevel;
0040 };
0041
0042 #endif