Skip to content

Commit 9da52a3

Browse files
committed
Bug fix
1 parent 961a6eb commit 9da52a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

DQM/GEM/plugins/GEMRecHitSource.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ void GEMRecHitSource::analyze(edm::Event const& event, edm::EventSetup const& ev
209209
Int_t nCLS = hit->clusterSize();
210210
Int_t nCLSCutOff = std::min(nCLS, nCLSMax_); // For overflow
211211
mapCLSRecHit_ieta_.Fill(key3AbsReIEta, nCLSCutOff);
212-
mapCLSPerCh_.Fill(key4Ch, eId.ieta(), nCLSCutOff);
212+
mapCLSPerCh_.Fill(key4Ch, nCLSCutOff, eId.ieta());
213213
mapCLSAverage_.Fill(key3, (Double_t)chamber, (Double_t)eId.ieta(), nCLS);
214214
if (nCLS > 5)
215215
mapCLSOver5[key4IEta][chamber] = true;

0 commit comments

Comments
 (0)