Skip to content

Commit

Permalink
Merge pull request cms-sw#148 from cfmcginn/fixToJetConstPhi758p3
Browse files Browse the repository at this point in the history
Fix to constituent phi to match that of the jets (plus-minus pi)
  • Loading branch information
cfmcginn authored Feb 13, 2018
2 parents f61094f + afe87a9 commit f62300f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions HeavyIonsAnalysis/JetAnalysis/src/HiInclusiveJetAnalyzer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2364,7 +2364,7 @@ void HiInclusiveJetAnalyzer::fillNewJetVarsRecoJet(const reco::Jet jet){
jcid.push_back(dp.pdgId());
jcE.push_back(jc.e());
jcpt.push_back(jc.pt());
jcphi.push_back(jc.phi());
jcphi.push_back(jc.phi_std());
jceta.push_back(jc.eta());
jcm.push_back(jc.m());

Expand Down Expand Up @@ -2853,7 +2853,7 @@ void HiInclusiveJetAnalyzer::fillNewJetVarsRefJet(const reco::GenJet jet){
jcid.push_back(dp.pdgId());
jcE.push_back(jc.e());
jcpt.push_back(jc.pt());
jcphi.push_back(jc.phi());
jcphi.push_back(jc.phi_std());
jceta.push_back(jc.eta());
jcm.push_back(jc.m());

Expand Down Expand Up @@ -3341,7 +3341,7 @@ void HiInclusiveJetAnalyzer::fillNewJetVarsGenJet(const reco::GenJet jet){
jcid.push_back(dp.pdgId());
jcE.push_back(jc.e());
jcpt.push_back(jc.pt());
jcphi.push_back(jc.phi());
jcphi.push_back(jc.phi_std());
jceta.push_back(jc.eta());
jcm.push_back(jc.m());

Expand Down

0 comments on commit f62300f

Please sign in to comment.