Skip to content

Commit 5980dee

Browse files
authored
Merge pull request cms-sw#33381 from dildick/from-CMSSW_11_3_X_2021-04-08-2300-get-clct-lct-bx-data
Remove BX comparisons for CLCT and LCT in CSC L1T DQM [11_3_X]
2 parents 9377919 + 1e4945d commit 5980dee

File tree

2 files changed

+8
-12
lines changed

2 files changed

+8
-12
lines changed

DQM/L1TMonitor/python/L1TdeCSCTPG_cfi.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@
99
alctNBin = cms.vuint32(6, 116, 20),
1010
alctMinBin = cms.vdouble(0, 0, 0),
1111
alctMaxBin = cms.vdouble(6, 116, 20),
12-
clctVars = cms.vstring("quality", "halfstrip", "bx",
12+
clctVars = cms.vstring("quality", "halfstrip",
1313
"pattern", "bend", "quartstrip","eightstrip"),
14-
clctNBin = cms.vuint32(16, 240, 20, 16, 2, 2, 2),
15-
clctMinBin = cms.vdouble(0, 0, 0, 0, 0, 0, 0),
16-
clctMaxBin = cms.vdouble(16, 240, 20, 16, 2, 2, 2),
14+
clctNBin = cms.vuint32(16, 240, 16, 2, 2, 2),
15+
clctMinBin = cms.vdouble(0, 0, 0, 0, 0, 0),
16+
clctMaxBin = cms.vdouble(16, 240, 16, 2, 2, 2),
1717
lctVars = cms.vstring( "quality", "wiregroup", "halfstrip",
18-
"bx", "pattern", "bend", "quartstrip","eightstrip"),
19-
lctNBin = cms.vuint32(16, 116, 240, 20, 16, 2, 2, 2),
20-
lctMinBin = cms.vdouble(0, 0, 0, 0, 0, 0, 0, 0),
21-
lctMaxBin = cms.vdouble(16, 116, 240, 20, 16, 2, 2, 2),
18+
"pattern", "bend", "quartstrip","eightstrip"),
19+
lctNBin = cms.vuint32(16, 116, 240, 16, 2, 2, 2),
20+
lctMinBin = cms.vdouble(0, 0, 0, 0, 0, 0, 0),
21+
lctMaxBin = cms.vdouble(16, 116, 240, 16, 2, 2, 2),
2222
)
2323

2424
l1tdeCSCTPG = DQMEDAnalyzer(

DQM/L1TMonitor/src/L1TdeCSCTPG.cc

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,6 @@ void L1TdeCSCTPG::analyze(const edm::Event& e, const edm::EventSetup& c) {
113113
chamberHistos[type]["clct_quality_data"]->Fill(clct->getQuality());
114114
chamberHistos[type]["clct_halfstrip_data"]->Fill(clct->getKeyStrip());
115115
chamberHistos[type]["clct_bend_data"]->Fill(clct->getBend());
116-
chamberHistos[type]["clct_bx_data"]->Fill(clct->getBX());
117116
}
118117
}
119118

@@ -125,7 +124,6 @@ void L1TdeCSCTPG::analyze(const edm::Event& e, const edm::EventSetup& c) {
125124
chamberHistos[type]["clct_quality_emul"]->Fill(clct->getQuality());
126125
chamberHistos[type]["clct_halfstrip_emul"]->Fill(clct->getKeyStrip());
127126
chamberHistos[type]["clct_bend_emul"]->Fill(clct->getBend());
128-
chamberHistos[type]["clct_bx_emul"]->Fill(clct->getBX());
129127
}
130128
}
131129

@@ -138,7 +136,6 @@ void L1TdeCSCTPG::analyze(const edm::Event& e, const edm::EventSetup& c) {
138136
chamberHistos[type]["lct_wiregroup_data"]->Fill(lct->getKeyWG());
139137
chamberHistos[type]["lct_halfstrip_data"]->Fill(lct->getStrip());
140138
chamberHistos[type]["lct_bend_data"]->Fill(lct->getBend());
141-
chamberHistos[type]["lct_bx_data"]->Fill(lct->getBX());
142139
}
143140
}
144141

@@ -151,7 +148,6 @@ void L1TdeCSCTPG::analyze(const edm::Event& e, const edm::EventSetup& c) {
151148
chamberHistos[type]["lct_wiregroup_emul"]->Fill(lct->getKeyWG());
152149
chamberHistos[type]["lct_halfstrip_emul"]->Fill(lct->getStrip());
153150
chamberHistos[type]["lct_bend_emul"]->Fill(lct->getBend());
154-
chamberHistos[type]["lct_bx_emul"]->Fill(lct->getBX());
155151
}
156152
}
157153
}

0 commit comments

Comments
 (0)