Skip to content
Snippets Groups Projects
Commit d693b902 authored by scott snyder's avatar scott snyder
Browse files

SemileptonicCorr: Fix placement of using directive.

Do not put using directives in the global namespace in headers.


Former-commit-id: 32667978
parent d5ed2fae
No related branches found
No related tags found
No related merge requests found
...@@ -11,7 +11,6 @@ ...@@ -11,7 +11,6 @@
#include "TLorentzVector.h" #include "TLorentzVector.h"
#include <vector> #include <vector>
using namespace std;
class semilCorr{ class semilCorr{
...@@ -28,21 +27,21 @@ public: ...@@ -28,21 +27,21 @@ public:
}; };
private: private:
vector<vector<TH1F*> > m_histos; std::vector<std::vector<TH1F*> > m_histos;
vector<float> m_etas; std::vector<float> m_etas;
TFile* m_f; TFile* m_f;
bool m_Debug; 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, float getSemilCorrToIncl(TLorentzVector jet, TLorentzVector mu,
vector<TH1F*> histos); std::vector<TH1F*> histos);
vector<int> getHistoIndeces(semilCorr::Systematics syst); std::vector<int> getHistoIndeces(semilCorr::Systematics syst);
public: public:
semilCorr(TString fIn, string suffix = "", bool DebugIn = false); semilCorr(TString fIn, std::string suffix = "", bool DebugIn = false);
~semilCorr(); ~semilCorr();
float getSemilCorrToIncl(TLorentzVector jet, TLorentzVector mu); float getSemilCorrToIncl(TLorentzVector jet, TLorentzVector mu);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment