Skip to content

Commit

Permalink
scram b code-format
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiocos committed Sep 23, 2022
1 parent 9db99bd commit 431ff5e
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1591,7 +1591,9 @@ void Primary4DVertexValidation::analyze(const edm::Event& iEvent, const edm::Eve
//fill vertices histograms here in a new loop
for (unsigned int is = 0; is < simpv.size(); is++) {
// protect against particle guns with very displaced vertices
if ( std::isinf(1. / puLineDensity(simpv.at(is).z)) ) { continue; }
if (std::isinf(1. / puLineDensity(simpv.at(is).z))) {
continue;
}
meSimPVZ_->Fill(simpv.at(is).z, 1. / puLineDensity(simpv.at(is).z));
if (is == 0 && optionalPlots_) {
meSimPosInSimOrigCollection_->Fill(simpv.at(is).OriginalIndex);
Expand Down

0 comments on commit 431ff5e

Please sign in to comment.