Skip to content

Commit 592c219

Browse files
author
AdrianoDee
committed
Code format
1 parent 93bcbbe commit 592c219

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

PhysicsTools/PatAlgos/plugins/PATLostTracks.cc

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

208208
for (unsigned int trkIndx = 0; trkIndx < tracks->size(); trkIndx++) {
209209
reco::TrackRef trk(tracks, trkIndx);
210210
if ((*trk).charge() * protonCharge < 0)
211211
continue;
212212

213-
math::XYZTLorentzVector p4pi(trk->px(), trk->py(), trk->pz(), trk->momentum().mag2() + 0.01947995518); // pion mass ^2
213+
math::XYZTLorentzVector p4pi(
214+
trk->px(), trk->py(), trk->pz(), trk->momentum().mag2() + 0.01947995518); // pion mass ^2
214215
if ((p4Lambda + p4pi).M() < xiMassCut_) { // selecting potential Xi- candidates
215216
if (trkStatus[trkIndx] == TrkStatus::NOTUSED)
216217
trkStatus[trkIndx] = TrkStatus::VTX;

0 commit comments

Comments
 (0)