Skip to content

Commit

Permalink
fix d0-phi plot under AlcaBeamMonitor/Validation. Now both d0 and phi…
Browse files Browse the repository at this point in the history
… are computed wrt (0,0,0) and the correlation is preserved
  • Loading branch information
rmanzoni committed Jun 23, 2015
1 parent eb5b83b commit 0228a9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DQM/BeamMonitor/plugins/AlcaBeamMonitor.cc
Expand Up @@ -282,7 +282,7 @@ void AlcaBeamMonitor::analyze(const Event& iEvent, const EventSetup& iSetup ){
iEvent.getByToken(trackLabel_, TrackCollection);
const reco::TrackCollection *tracks = TrackCollection.product();
for ( reco::TrackCollection::const_iterator track = tracks->begin(); track != tracks->end(); ++track ) {
hD0Phi0_->Fill(track->phi(), -1*track->dxy(beamSpotsMap_["DB"].position()));
hD0Phi0_->Fill(track->phi(), -1*track->dxy());
hDxyBS_->Fill(-1*track->dxy(beamSpotsMap_["DB"].position()));
}
}
Expand Down

0 comments on commit 0228a9e

Please sign in to comment.