diff --git a/PhysicsAnalysis/JetPhys/SemileptonicCorr/SemileptonicCorr/semilCorr.h b/PhysicsAnalysis/JetPhys/SemileptonicCorr/SemileptonicCorr/semilCorr.h index cf0b4535ac96c8797e9697c828b42be039ba6625..da00c721badc9d7d3a6f1cd00103ded2a585957c 100644 --- a/PhysicsAnalysis/JetPhys/SemileptonicCorr/SemileptonicCorr/semilCorr.h +++ b/PhysicsAnalysis/JetPhys/SemileptonicCorr/SemileptonicCorr/semilCorr.h @@ -11,7 +11,6 @@ #include "TLorentzVector.h" #include <vector> -using namespace std; class semilCorr{ @@ -28,21 +27,21 @@ public: }; private: - vector<vector<TH1F*> > m_histos; - vector<float> m_etas; + std::vector<std::vector<TH1F*> > m_histos; + std::vector<float> m_etas; TFile* m_f; bool m_Debug; - float getResponse(float pt, float eta, vector<TH1F*> h); + float getResponse(float pt, float eta, std::vector<TH1F*> h); float getSemilCorrToIncl(TLorentzVector jet, TLorentzVector mu, - vector<TH1F*> histos); - vector<int> getHistoIndeces(semilCorr::Systematics syst); + std::vector<TH1F*> histos); + std::vector<int> getHistoIndeces(semilCorr::Systematics syst); public: - semilCorr(TString fIn, string suffix = "", bool DebugIn = false); + semilCorr(TString fIn, std::string suffix = "", bool DebugIn = false); ~semilCorr(); float getSemilCorrToIncl(TLorentzVector jet, TLorentzVector mu);