Skip to content

Commit

Permalink
Merge pull request #99 from chayanit/fixBjetRegression
Browse files Browse the repository at this point in the history
apply b-jet energy regression to energy component
  • Loading branch information
robervalwalsh authored Jun 17, 2020
2 parents 17b2274 + 387d3c2 commit 0eb8d17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Jet.cc
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ void Jet::applyBjetRegression()
float pt = p4_.Pt()*this->bRegCorr();
float eta = p4_.Eta();
float phi = p4_.Phi();
float e = p4_.E();
float e = p4_.E()*this->bRegCorr();
p4_.SetPtEtaPhiE(pt,eta,phi,e);
}

Expand Down

0 comments on commit 0eb8d17

Please sign in to comment.