Skip to content

Commit

Permalink
removing jets that are leptons, instead of all that are not leptons...
Browse files Browse the repository at this point in the history
  • Loading branch information
OlivierBondu committed Oct 21, 2015
1 parent 7bb92b7 commit 3472236
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 3472236

Please sign in to comment.