Skip to content

Commit

Permalink
Merge pull request #27000 from slava77/patch-60
Browse files Browse the repository at this point in the history
correct missing commas in dflt initializations for ghostTrack in IPProducer
  • Loading branch information
cmsbuild committed May 31, 2019
2 parents 3f02f65 + de52341 commit bd1e6f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions RecoBTag/ImpactParameter/plugins/IPProducer.h
Expand Up @@ -391,11 +391,11 @@ IPProducer<Container,Base,Helper>::produce(edm::Event& iEvent, const edm::EventS
VertexState(p2, e2));
trackIP.ghostTrackWeight = pos->weight();
} else {
trackIP.distanceToGhostTrack = Measurement1D(-1. -1.);
trackIP.distanceToGhostTrack = Measurement1D(0., -1.);
trackIP.ghostTrackWeight = 0.;
}
} else {
trackIP.distanceToGhostTrack = Measurement1D(-1. -1.);
trackIP.distanceToGhostTrack = Measurement1D(0., -1.);
trackIP.ghostTrackWeight = 1.;
}

Expand Down

0 comments on commit bd1e6f6

Please sign in to comment.