Skip to content

Commit b7e2465

Browse files
committed
Change to naming structure as a result of request from FSC team.
1 parent f75b859 commit b7e2465

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

DQM/HcalTasks/plugins/ZDCQIE10Task.cc

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -252,14 +252,14 @@ ZDCQIE10Task::ZDCQIE10Task(edm::ParameterSet const& ps)
252252
// EM Minus
253253
HcalZDCDetId didm(HcalZDCDetId::EM, false, channel);
254254

255-
std::vector<std::string> stationString = {"Station2_Top",
256-
"Station2_Bottom",
257-
"Station3_BottomLeft",
258-
"Station3_BottomRight",
259-
"Station3_TopLeft",
260-
"Station3_TopRight"};
261-
262-
histoname = "FSC_M_" + stationString.at(channel - 7);
255+
std::vector<std::string> stationString = {"2_M_Top",
256+
"2_M_Bottom",
257+
"3_M_BottomLeft",
258+
"3_M_BottomRight",
259+
"3_M_TopLeft",
260+
"3_M_TopRight"};
261+
262+
histoname = "FSC" + stationString.at(channel - 7);
263263
ib.setCurrentFolder("Hcal/ZDCQIE10Task/ADC_perChannel");
264264
_cADC_EChannel[didm()] = ib.book1DD(histoname.c_str(), histoname.c_str(), 256, 0, 256);
265265
_cADC_EChannel[didm()]->setAxisTitle("ADC", 1);
@@ -269,7 +269,7 @@ ZDCQIE10Task::ZDCQIE10Task(edm::ParameterSet const& ps)
269269
_cADC_vs_TS_EChannel[didm()]->setAxisTitle("TS", 1);
270270
_cADC_vs_TS_EChannel[didm()]->setAxisTitle("sum ADC", 2);
271271

272-
histoname = "FSC_M_" + stationString.at(channel - 7);
272+
histoname = "FSC" + stationString.at(channel - 7);
273273
ib.setCurrentFolder("Hcal/ZDCQIE10Task/fC_perChannel");
274274
_cfC_EChannel[didm()] = ib.book1DD(histoname.c_str(), histoname.c_str(), 100, 0, 8000);
275275
_cfC_EChannel[didm()]->setAxisTitle("fC", 1);
@@ -279,7 +279,7 @@ ZDCQIE10Task::ZDCQIE10Task(edm::ParameterSet const& ps)
279279
_cfC_vs_TS_EChannel[didm()]->setAxisTitle("TS", 1);
280280
_cfC_vs_TS_EChannel[didm()]->setAxisTitle("sum fC", 2);
281281

282-
histoname = "FSC_M_" + stationString.at(channel - 7);
282+
histoname = "FSC" + stationString.at(channel - 7);
283283
ib.setCurrentFolder("Hcal/ZDCQIE10Task/TDC_perChannel");
284284
_cTDC_EChannel[didm()] = ib.book1DD(histoname.c_str(), histoname.c_str(), 150, 0, 150);
285285
_cTDC_EChannel[didm()]->setAxisTitle("TDC", 1);

0 commit comments

Comments
 (0)