Skip to content

Commit

Permalink
code checks
Browse files Browse the repository at this point in the history
  • Loading branch information
mandrenguyen committed Oct 9, 2020
1 parent 552194c commit e2cdd93
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion PhysicsTools/PatAlgos/plugins/PATIsolatedTrackProducer.cc
Expand Up @@ -239,7 +239,9 @@ void pat::PATIsolatedTrackProducer::produce(edm::Event& iEvent, const edm::Event
//add general tracks
for (unsigned int igt = 0; igt < generalTracks->size(); igt++) {
const reco::Track& gentk = (*gt_h)[igt];
if(useHighPurity_) if (!(gentk.quality(reco::TrackBase::qualityByName("highPurity")))) continue;
if (useHighPurity_)
if (!(gentk.quality(reco::TrackBase::qualityByName("highPurity"))))
continue;
reco::TrackRef tkref = reco::TrackRef(gt_h, igt);
pat::PackedCandidateRef pcref = (*gt2pc)[tkref];
pat::PackedCandidateRef ltref = (*gt2lt)[tkref];
Expand Down

0 comments on commit e2cdd93

Please sign in to comment.