Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions PhysicsTools/NanoAOD/python/nanoDQM_cfi.py
Original file line number Diff line number Diff line change
Expand Up @@ -589,6 +589,7 @@
Plot1D('x', 'x', 20, -0.5, 0.5, 'secondary vertex X position, in cm'),
Plot1D('y', 'y', 20, -0.5, 0.5, 'secondary vertex Y position, in cm'),
Plot1D('z', 'z', 20, -10, 10, 'secondary vertex Z position, in cm'),
Plot1D('ntracks', 'ntracks', 11, -0.5, 10.5, 'number of tracks'),
)
),
SoftActivityJet = cms.PSet(
Expand Down
5 changes: 3 additions & 2 deletions PhysicsTools/NanoAOD/python/vertices_cff.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,9 @@
x = Var("position().x()", float, doc = "secondary vertex X position, in cm",precision=10),
y = Var("position().y()", float, doc = "secondary vertex Y position, in cm",precision=10),
z = Var("position().z()", float, doc = "secondary vertex Z position, in cm",precision=14),
ndof = Var("vertexNdof()", float, doc = "number of degrees of freedom",precision=8),
chi2 = Var("vertexNormalizedChi2()", float, doc = "reduced chi2, i.e. chi/ndof",precision=8),
ndof = Var("vertexNdof()", float, doc = "number of degrees of freedom",precision=8),
chi2 = Var("vertexNormalizedChi2()", float, doc = "reduced chi2, i.e. chi/ndof",precision=8),
ntracks = Var("numberOfDaughters()", "uint8", doc = "number of tracks"),
),
)
svCandidateTable.variables.pt.precision=10
Expand Down