Skip to content

Commit

Permalink
Merge pull request #35 from OlivierBondu/buxfix_dr_l_j
Browse files Browse the repository at this point in the history
removing jets that are leptons, instead of all that are not leptons...
  • Loading branch information
BrieucF committed Oct 21, 2015
2 parents 138578e + 3472236 commit 5430e30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/HHAnalyzer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ void HHAnalyzer::analyze(const edm::Event& event, const edm::EventSetup&, const
myllmetjj.DR_llmet_jj = ROOT::Math::VectorUtil::DeltaR(llmet[illmet].p4, jj[ijj].p4);
myllmetjj.DPhi_llmet_jj = ROOT::Math::VectorUtil::DeltaPhi(llmet[illmet].p4, jj[ijj].p4);
myllmetjj.cosThetaStar_CS = getCosThetaStar_CS(llmet[illmet].p4, jj[ijj].p4);
if (myllmetjj.minDR_l_j > m_minDR_l_j_Cut)
if (myllmetjj.minDR_l_j < m_minDR_l_j_Cut)
continue;
llmetjj.push_back(myllmetjj);
}
Expand Down

0 comments on commit 5430e30

Please sign in to comment.