Skip to content

Commit

Permalink
Merge pull request #9835 from MilanoBicocca-pix/CMSSW_7_5_X_fix_beams…
Browse files Browse the repository at this point in the history
…pot_d0_phi_dqm

Offline DQM: fix d0-phi plot under AlcaBeamMonitor/Validation
  • Loading branch information
cmsbuild committed Jun 26, 2015
2 parents c0c80e0 + 0228a9e commit c160623
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 c160623

Please sign in to comment.