Implements DQMEDAnalyzer.
Definition at line 20 of file GEMCheckGeometry.cc.
28 GEMGeometry_ = &*hGeom;
30 edm::LogError(
"MuonGEMGeometry") <<
"+++ Error : GEM geometry is unavailable on event loop. +++\n";
34 ibooker.setCurrentFolder(
"MuonGEMDigisV/GEMDigisTask");
35 LogDebug(
"GEMCheckGeometry") <<
"ibooker set current folder\n";
38 TString
title = TString::Format(
"Geometry's phi distribution on Region %d ; #phi(degree); ;",
region->region());
39 TString
name = TString::Format(
"geo_phi_r%d",
region->region());
40 auto temp_me = ibooker.book2D(
name.Data(),
title.Data(), 360000, -180., 180, 12, 1, 13);
41 temp_me->setBinLabel(1,
"St1,La1_even", 2);
42 temp_me->setBinLabel(2,
"St1,La1_odd", 2);
43 temp_me->setBinLabel(3,
"St1,La2_even", 2);
44 temp_me->setBinLabel(4,
"St1,La2_odd", 2);
45 temp_me->setBinLabel(5,
"St2,La1_even", 2);
46 temp_me->setBinLabel(6,
"St2,La1_odd", 2);
47 temp_me->setBinLabel(7,
"St2,La2_even", 2);
48 temp_me->setBinLabel(8,
"St2,La2_odd", 2);
55 for (
auto sch :
ring->superChambers()) {
56 for (
auto ch : sch->chambers()) {
57 for (
auto roll : ch->etaPartitions()) {
64 double phi = roll->toGlobal(lEdge).phi().degrees();
67 int region_idx =
id.region();
68 int station_idx =
id.station();
69 int chamber_idx =
id.chamber();
70 int layer_idx =
id.layer();
71 int value = (station_idx - 1) * 4 + (layer_idx - 1) * 2 + (chamber_idx % 2) + 1;
73 if (region_idx == 1) {
74 UInt_t
hash = TString(
"geo_phi_r1").Hash();
77 UInt_t
hash = TString(
"geo_phi_r-1").Hash();
References dqm::implementation::IBooker::book2D(), detailPlot_, MillePedeFileConverter_cfg::e, edm::EventSetup::get(), get, cond::hash, triggerObjects_cff::id, LogDebug, Skims_PA_cff::name, me0TriggerPseudoDigis_cff::nStrips, phi, HLT_2018_cff::region, GEMGeometry::regions(), relativeConstraints::ring, dqm::impl::MonitorElement::setBinLabel(), dqm::implementation::NavigatorBase::setCurrentFolder(), relativeConstraints::station, digitizers_cfi::strip, theStdPlots, overlapproblemtsosanalyzer_cfi::title, and ecaldqm::topology().