Skip to content
Snippets Groups Projects

adding beam spot weights to InDetPhysVal monitoring

Merged Ines Ochoa requested to merge miochoa/athena:master-miochoa--adding-weights into master
All threads resolved!
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
@@ -90,8 +90,8 @@ InDetPerfPlot_Vertex::fill(const xAOD::Vertex& vertex, float weight) {
// fill vertex tracks properties
int nTracks = vertex.nTrackParticles();
fillHisto(m_vx_nTracks, nTracks, weight);
for (const float& weight : vertex.trackWeights()) {
fillHisto(m_vx_track_weights, weight, weight);
for (const float& trackWeight : vertex.trackWeights()) {
fillHisto(m_vx_track_weights, trackWeight, weight);
}
// fill expert plots: tracks properties at vertex
Loading