Skip to content

Commit

Permalink
Merge pull request #10092 from mtosi/from-CMSSW_7_4_X_2015-07-07-1100…
Browse files Browse the repository at this point in the history
…_fixNumberLayerPerTrackProfile

fix number of layers profiles
  • Loading branch information
cmsbuild committed Jul 8, 2015
2 parents c8e4e0c + efe212b commit fbb7084
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DQM/TrackingMonitor/src/TrackAnalyzer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1161,7 +1161,7 @@ void TrackAnalyzer::fillHistosForState(const edm::EventSetup& iSetup, const reco
tkmes.NumberOfValidRecHitsPerTrackVsPhi->Fill(phi, nValidRecHits);
tkmes.NumberOfValidRecHitsPerTrackVsEta->Fill(eta, nValidRecHits);

int nLayers = track.hitPattern().stripLayersWithMeasurement();
int nLayers = track.hitPattern().trackerLayersWithMeasurement();
// rec layers
tkmes.NumberOfLayersPerTrackVsPhi->Fill(phi, nLayers);
if (doThetaPlots_) {
Expand Down

0 comments on commit fbb7084

Please sign in to comment.