Skip to content

Commit 807d8e0

Browse files
author
AdrianoDee
committed
Code format
1 parent 830b6f4 commit 807d8e0

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

PhysicsTools/PatAlgos/plugins/PATLostTracks.cc

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -205,16 +205,15 @@ void pat::PATLostTracks::produce(edm::StreamID, edm::Event& iEvent, const edm::E
205205
// selecting potential Xi- -> Lambda pi candidates
206206
math::XYZTLorentzVector p4Lambda(v0.px(), v0.py(), v0.pz(), sqrt(v0.momentum().mag2() + v0.mass() * v0.mass()));
207207

208-
for (unsigned int trkIndx = 0; trkIndx < tracks->size(); trkIndx++)
209-
{
208+
for (unsigned int trkIndx = 0; trkIndx < tracks->size(); trkIndx++) {
210209
reco::TrackRef trk(tracks, trkIndx);
211210
if ((*trk).charge() * protonCharge < 0 || trkStatus[trkIndx] != TrkStatus::NOTUSED)
212211
continue;
213212

214213
math::XYZTLorentzVector p4pi(
215214
trk->px(), trk->py(), trk->pz(), sqrt(trk->momentum().mag2() + 0.01947995518)); // pion mass ^2
216215
if ((p4Lambda + p4pi).M() < xiMassCut_)
217-
trkStatus[trkIndx] = TrkStatus::VTX; // selecting potential Xi- candidates
216+
trkStatus[trkIndx] = TrkStatus::VTX; // selecting potential Xi- candidates
218217
}
219218
}
220219
}

0 commit comments

Comments
 (0)