Skip to content

Commit

Permalink
revert checkClosestZVertex default to true
Browse files Browse the repository at this point in the history
  • Loading branch information
ahinzmann committed Jan 17, 2022
1 parent e9cca62 commit 692bae3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CommonTools/ParticleFlow/plugins/PFPileUp.cc
Expand Up @@ -203,7 +203,7 @@ void PFPileUp::fillDescriptions(edm::ConfigurationDescriptions& descriptions) {
desc.add<edm::InputTag>("Vertices", edm::InputTag("offlinePrimaryVertices"));
desc.add<bool>("enable", true);
desc.addUntracked<bool>("verbose", false);
desc.add<bool>("checkClosestZVertex", false);
desc.add<bool>("checkClosestZVertex", true);
desc.add<bool>("useVertexAssociation", false);
desc.add<int>("vertexAssociationQuality", 0);
desc.add<edm::InputTag>("vertexAssociation", edm::InputTag(""));
Expand Down
1 change: 1 addition & 0 deletions CommonTools/ParticleFlow/python/pfNoPileUpJME_cff.py
Expand Up @@ -26,6 +26,7 @@

pfPileUpJME = _pfPileUp.clone(PFCandidates='particleFlowPtrs',
Vertices = 'goodOfflinePrimaryVertices',
checkClosestZVertex = False,
NumOfPUVtxsForCharged = primaryVertexAssociationJME.assignment.NumOfPUVtxsForCharged,
DzCutForChargedFromPUVtxs = primaryVertexAssociationJME.assignment.DzCutForChargedFromPUVtxs,
)
Expand Down

0 comments on commit 692bae3

Please sign in to comment.