CMS 3D CMS Logo

GEMDQMBase.cc
Go to the documentation of this file.
3 
4 using namespace std;
5 using namespace edm;
6 
8  std::string strRunType = cfg.getUntrackedParameter<std::string>("runType");
9 
11 
12  if (strRunType == "online") {
14  } else if (strRunType == "offline") {
16  } else if (strRunType == "relval") {
18  } else if (strRunType == "allplots") {
20  } else {
21  edm::LogError(log_category_) << "+++ Error : GEM geometry is unavailable on event loop. +++\n";
22  }
23 
24  log_category_ = cfg.getUntrackedParameter<std::string>("logCategory");
25 }
26 
28  GEMGeometry_ = nullptr;
29  if (auto handle = iSetup.getHandle(geomToken_)) {
30  GEMGeometry_ = handle.product();
31  } else {
32  edm::LogError(log_category_) << "+++ Error : GEM geometry is unavailable on event loop. +++\n";
33  return -1;
34  }
35 
36  return 0;
37 }
38 
39 // Borrowed from DQM/GEM/src/GEMOfflineDQMBase.cc
41  const auto&& superchambers = station->superChambers();
42  if (not checkRefs(superchambers)) {
43  edm::LogError(log_category_) << "failed to get a valid vector of GEMSuperChamber ptrs" << std::endl;
44  return 0;
45  }
46 
47  const auto& chambers = superchambers.front()->chambers();
48  if (not checkRefs(chambers)) {
49  edm::LogError(log_category_) << "failed to get a valid vector of GEMChamber ptrs" << std::endl;
50  return 0;
51  }
52 
53  return chambers.front()->nEtaPartitions();
54 }
55 
57  if (GEMGeometry_ == nullptr)
58  return -1;
59  listChamberId_.clear();
60  mapEtaPartition_.clear();
61  for (const GEMRegion* region : GEMGeometry_->regions()) {
62  for (const GEMStation* station : region->stations()) {
63  for (auto sch : station->superChambers()) {
64  for (auto pchamber : sch->chambers()) {
65  GEMDetId gid = pchamber->id();
66  listChamberId_.push_back(pchamber->id());
67  for (auto iEta : pchamber->etaPartitions()) {
68  mapEtaPartition_[gid].push_back(iEta);
69  }
70  }
71  }
72  }
73  }
74 
75  // Borrwed from DQM/GEM/src/GEMOfflineMonitor.cc
76  nMaxNumCh_ = 0;
77  for (const GEMRegion* region : GEMGeometry_->regions()) {
78  const int region_number = region->region();
79 
80  for (const GEMStation* station : region->stations()) {
81  const auto&& superchambers = station->superChambers();
82 
83  const int station_number = station->station();
84  const int num_superchambers = (station_number == 1 ? 36 : 18);
85  const int num_mod = getNumModule(station->station());
86  const int max_vfat = getMaxVFAT(station->station()); // the number of VFATs per GEMEtaPartition
87  const int num_etas = getNumEtaPartitions(station); // the number of eta partitions per GEMChamber
88  const int num_vfat = num_etas * max_vfat; // the number of VFATs per GEMChamber
89  const int strip1st = (station_number == 2 ? 1 : 0); // the index of the first strip
90  const int num_digi = GEMeMap::maxChan_; // the number of digis (channels) per VFAT
91 
92  nMaxNumCh_ = std::max(nMaxNumCh_, num_superchambers * num_mod);
93 
94  Int_t nMinIdxChamber = 1048576;
95  Int_t nMaxIdxChamber = -1048576;
96  for (auto sch : superchambers) {
97  auto nIdxChamber = sch->chambers().front()->id().chamber();
98  if (nMinIdxChamber > nIdxChamber)
99  nMinIdxChamber = nIdxChamber;
100  if (nMaxIdxChamber < nIdxChamber)
101  nMaxIdxChamber = nIdxChamber;
102  }
103 
104  const auto& chambers = superchambers.front()->chambers();
105 
106  for (auto pchamber : chambers) {
107  int layer_number = pchamber->id().layer();
108  ME3IdsKey key3(region_number, station_number, layer_number);
109  mapStationInfo_[key3] = MEStationInfo(region_number,
110  station_number,
111  layer_number,
112  num_superchambers,
113  num_mod,
114  num_etas,
115  num_vfat,
116  strip1st,
117  num_digi,
118  nMinIdxChamber,
119  nMaxIdxChamber);
122  }
123  }
124  }
125 
126  return 0;
127 }
128 
129 int GEMDQMBase::SortingLayers(std::vector<ME3IdsKey>& listLayers) {
130  std::sort(listLayers.begin(), listLayers.end(), [](ME3IdsKey key1, ME3IdsKey key2) {
131  Int_t re1 = std::get<0>(key1), st1 = std::get<1>(key1), la1 = std::get<2>(key1);
132  Int_t re2 = std::get<0>(key2), st2 = std::get<1>(key2), la2 = std::get<2>(key2);
133  if (re1 < 0 && re2 > 0)
134  return false;
135  if (re1 > 0 && re2 < 0)
136  return true;
137  Bool_t bRes = (re1 < 0); // == re2 < 0
138  Int_t sum1 = 256 * std::abs(re1) + 16 * st1 + 1 * la1;
139  Int_t sum2 = 256 * std::abs(re2) + 16 * st2 + 1 * la2;
140  if (sum1 <= sum2)
141  return bRes;
142  return !bRes;
143  });
144 
145  return 0;
146 }
147 
149  std::vector<ME3IdsKey> listLayers;
150  for (auto const& [key, stationInfo] : mapStationInfo_)
151  listLayers.push_back(key);
152  SortingLayers(listLayers);
153  for (Int_t i = 0; i < (Int_t)listLayers.size(); i++)
154  mapStationToIdx_[listLayers[i]] = i + 1;
155 
156  auto h2Res =
157  ibooker.book2D(strName, "", nMaxNumCh_, 0.5, nMaxNumCh_ + 0.5, listLayers.size(), 0.5, listLayers.size() + 0.5);
158  h2Res->setXTitle("Chamber");
159  h2Res->setYTitle("Layer");
160 
161  if (h2Res == nullptr)
162  return nullptr;
163 
164  for (Int_t i = 1; i <= nMaxNumCh_; i++)
165  h2Res->setBinLabel(i, Form("%i", i), 1);
166  for (Int_t i = 1; i <= (Int_t)listLayers.size(); i++) {
167  auto key = listLayers[i - 1];
168  auto strInfo = GEMUtils::getSuffixName(key); // NOTE: It starts with '_'
169  auto region = keyToRegion(key);
170  auto label =
171  Form("GE%+i1-%cL%i;%s", region * keyToStation(key), (region > 0 ? 'P' : 'M'), keyToLayer(key), strInfo.Data());
172  h2Res->setBinLabel(i, label, 2);
173  Int_t nNumCh = mapStationInfo_[key].nNumChambers_ * mapStationInfo_[key].nNumModules_;
174  h2Res->setBinContent(0, i, nNumCh);
175  }
176 
177  return h2Res;
178 }
179 
181  MEMap2Check_.clear();
182  MEMap2WithEtaCheck_.clear();
183  MEMap2AbsReWithEtaCheck_.clear();
184  MEMap3Check_.clear();
185  MEMap3WithChCheck_.clear();
186  MEMap4Check_.clear();
187  for (auto gid : listChamberId_) {
188  ME2IdsKey key2{gid.region(), gid.station()};
189  ME3IdsKey key3{gid.region(), gid.station(), gid.layer()};
190  ME4IdsKey key3WithChamber{gid.region(), gid.station(), gid.layer(), gid.chamber()};
191  if (!MEMap2Check_[key2]) {
192  auto strSuffixName = GEMUtils::getSuffixName(key2);
193  auto strSuffixTitle = GEMUtils::getSuffixTitle(key2);
194  BookingHelper bh2(ibooker, strSuffixName, strSuffixTitle);
195  ProcessWithMEMap2(bh2, key2);
196  MEMap2Check_[key2] = true;
197  }
198  if (!MEMap3Check_[key3]) {
199  auto strSuffixName = GEMUtils::getSuffixName(key3);
200  auto strSuffixTitle = GEMUtils::getSuffixTitle(key3);
201  BookingHelper bh3(ibooker, strSuffixName, strSuffixTitle);
202  ProcessWithMEMap3(bh3, key3);
203  MEMap3Check_[key3] = true;
204  }
205  if (!MEMap3WithChCheck_[key3WithChamber]) {
206  Int_t nCh = gid.chamber();
207  Int_t nLa = gid.layer();
208  char cLS = (nCh % 2 == 0 ? 'L' : 'S'); // FIXME: Is it general enough?
209  auto strSuffixName = GEMUtils::getSuffixName(key2) + Form("-%02iL%i-%c", nCh, nLa, cLS);
210  auto strSuffixTitle = GEMUtils::getSuffixTitle(key2) + Form("-%02iL%i-%c", nCh, nLa, cLS);
211  BookingHelper bh3Ch(ibooker, strSuffixName, strSuffixTitle);
212  ProcessWithMEMap3WithChamber(bh3Ch, key3WithChamber);
213  MEMap3WithChCheck_[key3WithChamber] = true;
214  }
215  for (auto iEta : mapEtaPartition_[gid]) {
216  GEMDetId eId = iEta->id();
217  ME4IdsKey key4{gid.region(), gid.station(), gid.layer(), eId.ieta()};
218  ME3IdsKey key2WithEta{gid.region(), gid.station(), eId.ieta()};
219  ME3IdsKey key2AbsReWithEta{std::abs(gid.region()), gid.station(), eId.ieta()};
220  if (!MEMap4Check_[key4]) {
221  auto strSuffixName = GEMUtils::getSuffixName(key3) + Form("-E%02i", eId.ieta());
222  auto strSuffixTitle = GEMUtils::getSuffixTitle(key3) + Form("-E%02i", eId.ieta());
223  BookingHelper bh4(ibooker, strSuffixName, strSuffixTitle);
224  ProcessWithMEMap4(bh4, key4);
225  MEMap4Check_[key4] = true;
226  }
227  if (!MEMap2WithEtaCheck_[key2WithEta]) {
228  auto strSuffixName = GEMUtils::getSuffixName(key2) + Form("-E%02i", eId.ieta());
229  auto strSuffixTitle = GEMUtils::getSuffixTitle(key2) + Form("-E%02i", eId.ieta());
230  BookingHelper bh3(ibooker, strSuffixName, strSuffixTitle);
231  ProcessWithMEMap2WithEta(bh3, key2WithEta);
232  MEMap2WithEtaCheck_[key2WithEta] = true;
233  }
234  if (!MEMap2AbsReWithEtaCheck_[key2AbsReWithEta]) {
235  auto strSuffixName = Form("_GE%d1-E%02i", gid.station(), eId.ieta());
236  auto strSuffixTitle = Form(" GE%d1-E%02i", gid.station(), eId.ieta());
237  BookingHelper bh3(ibooker, strSuffixName, strSuffixTitle);
238  ProcessWithMEMap2AbsReWithEta(bh3, key2AbsReWithEta);
239  MEMap2AbsReWithEtaCheck_[key2AbsReWithEta] = true;
240  }
241  }
242  }
243  return 0;
244 }
245 
247  auto listSuperChambers = station->superChambers();
248 
249  Bool_t bDoneEven = false, bDoneOdd = false;
250 
251  // Obtaining radius intervals of even/odd chambers
252  for (auto superchamber : listSuperChambers) {
253  Int_t chamberNo = superchamber->id().chamber();
254  if (chamberNo % 2 == 0 && bDoneEven)
255  continue;
256  if (chamberNo % 2 != 0 && bDoneOdd)
257  continue;
258 
259  auto& etaPartitions = superchamber->chambers().front()->etaPartitions();
260 
261  // A little of additional procedures to list up the radius intervals
262  // It would be independent to local direction of chambers and the order of eta partitions
263  // 1. Obtain the radius of the middle top/bottom points of the trapezoid
264  // 2. Sort these two values and determine which one is the lower/upper one
265  // 3. Keep them all and then sort them
266  // 4. The intermediate radii are set as the mean of the corresponding values of upper/lowers.
267  std::vector<Float_t> listRadiusLower, listRadiusUpper;
268  for (auto iEta : etaPartitions) {
269  const GEMStripTopology& stripTopology = dynamic_cast<const GEMStripTopology&>(iEta->specificTopology());
270  Float_t fHeight = stripTopology.stripLength();
271  LocalPoint lp1(0.0, -0.5 * fHeight), lp2(0.0, 0.5 * fHeight);
272  auto& surface = iEta->surface();
273  GlobalPoint gp1 = surface.toGlobal(lp1), gp2 = surface.toGlobal(lp2);
274  Float_t fR1 = gp1.perp(), fR2 = gp2.perp();
275  Float_t fRL = std::min(fR1, fR2), fRH = std::max(fR1, fR2);
276  listRadiusLower.push_back(fRL);
277  listRadiusUpper.push_back(fRH);
278  // For a future usage
279  //std::cout << "GEO_RADIUS: " << iEta->id().chamber() << " " << iEta->id().ieta() << " "
280  // << fRL << " " << fRH << std::endl;
281  }
282 
283  std::sort(listRadiusLower.begin(), listRadiusLower.end());
284  std::sort(listRadiusUpper.begin(), listRadiusUpper.end());
285 
286  std::vector<Float_t>& listR =
287  (chamberNo % 2 == 0 ? stationInfo.listRadiusEvenChamber_ : stationInfo.listRadiusOddChamber_);
288  listR.clear();
289  listR.push_back(listRadiusLower.front());
290  for (int i = 1; i < (int)listRadiusLower.size(); i++) {
291  listR.push_back(0.5 * (listRadiusLower[i] + listRadiusUpper[i - 1]));
292  }
293  listR.push_back(listRadiusUpper.back());
294 
295  if (chamberNo % 2 == 0)
296  bDoneEven = true;
297  if (chamberNo % 2 != 0)
298  bDoneOdd = true;
299 
300  if (bDoneEven && bDoneOdd)
301  break;
302  }
303 
304  return 0;
305 }
306 
308  auto listSuperChambers = station->superChambers();
309  Int_t nNumStripEta = stationInfo.nNumDigi_ * (stationInfo.nMaxVFAT_ / stationInfo.nNumEtaPartitions_);
310 
311  std::vector<std::pair<Int_t, std::pair<std::pair<Float_t, Float_t>, Bool_t>>> listDivPhi;
312 
313  // Obtaining phi intervals of chambers
314  for (auto superchamber : listSuperChambers) {
315  auto iEta = superchamber->chambers().front()->etaPartitions().front();
316 
317  // What is the index of the first strip? Rather than to ask to someone, let's calculate it!
318  Float_t fWidthStrip = std::abs(iEta->centreOfStrip((Int_t)1).x() - iEta->centreOfStrip((Int_t)0).x());
319  LocalPoint lpRef(-fWidthStrip / 3.0, 0.0);
320  Int_t nStripMid = (Int_t)iEta->strip(lpRef);
321  Int_t nFirstStrip = 1 - ((nNumStripEta / 2) - nStripMid);
322  Int_t nLastStrip = nFirstStrip + nNumStripEta - 1;
323 
324  auto& surface = iEta->surface();
325  LocalPoint lpF = iEta->centreOfStrip((Float_t)(nFirstStrip - 0.5)); // To avoid the round error(?)
326  LocalPoint lpL = iEta->centreOfStrip((Float_t)(nLastStrip + 0.5)); // To avoid the round error(?)
327  GlobalPoint gpF = surface.toGlobal(lpF);
328  GlobalPoint gpL = surface.toGlobal(lpL);
329 
330  Float_t fPhiF = gpF.phi();
331  Float_t fPhiL = gpL.phi();
332  if (fPhiF * fPhiL < 0 && std::abs(fPhiF) > 0.5 * 3.14159265359) {
333  if (fPhiF < 0)
334  fPhiF += 2 * 3.14159265359;
335  if (fPhiL < 0)
336  fPhiL += 2 * 3.14159265359;
337  }
338  Bool_t bFlipped = fPhiF > fPhiL;
339  Float_t fPhiMin = std::min(fPhiF, fPhiL);
340  Float_t fPhiMax = std::max(fPhiF, fPhiL);
341 
342  listDivPhi.emplace_back();
343  listDivPhi.back().first = iEta->id().chamber();
344  listDivPhi.back().second.first.first = fPhiMin;
345  listDivPhi.back().second.first.second = fPhiMax;
346  listDivPhi.back().second.second = bFlipped;
347  }
348 
349  stationInfo.fMinPhi_ = 0.0;
350  for (auto p : listDivPhi) {
351  if (p.first == 1) {
352  stationInfo.fMinPhi_ = p.second.first.first;
353  break;
354  }
355  }
356 
357  // For a future usage
358  //for ( auto p : listDivPhi ) {
359  // std::cout << "GEO_PHI: " << p.first << " "
360  // << p.second.first.first << " " << p.second.first.second << " " << p.second.second << std::endl;
361  //}
362 
363  return 0;
364 }
float stripLength() const override
ESGetTokenH3DDVariant esConsumes(std::string const &Record, edm::ConsumesCollector &)
Definition: DeDxTools.cc:283
bool checkRefs(const std::vector< T *> &)
Definition: GEMDQMBase.h:629
dqm::impl::MonitorElement * CreateSummaryHist(DQMStore::IBooker &ibooker, TString strName)
Definition: GEMDQMBase.cc:148
T perp() const
Definition: PV3DBase.h:69
Int_t nRunType_
Definition: GEMDQMBase.h:550
virtual int ProcessWithMEMap4(BookingHelper &bh, ME4IdsKey key)
Definition: GEMDQMBase.h:563
TString getSuffixName(Int_t region_id)
std::vector< GEMDetId > listChamberId_
Definition: GEMDQMBase.h:612
virtual int ProcessWithMEMap2AbsReWithEta(BookingHelper &bh, ME3IdsKey key)
Definition: GEMDQMBase.h:561
Geom::Phi< T > phi() const
Definition: PV3DBase.h:66
int initGeometry(edm::EventSetup const &iSetup)
Definition: GEMDQMBase.cc:27
std::tuple< Int_t, Int_t, Int_t, Int_t > ME4IdsKey
int readGeometryRadiusInfoChamber(const GEMStation *station, MEStationInfo &stationInfo)
Definition: GEMDQMBase.cc:246
int getNumModule(const int)
Definition: GEMDQMBase.h:649
std::map< ME3IdsKey, MEStationInfo > mapStationInfo_
Definition: GEMDQMBase.h:624
int keyToRegion(ME2IdsKey key)
Definition: GEMDQMBase.h:566
int readGeometryPhiInfoChamber(const GEMStation *station, MEStationInfo &stationInfo)
Definition: GEMDQMBase.cc:307
int loadChambers()
Definition: GEMDQMBase.cc:56
std::map< ME3IdsKey, int > mapStationToIdx_
Definition: GEMDQMBase.h:623
static const int maxChan_
Definition: GEMeMap.h:72
int keyToLayer(ME3IdsKey key)
Definition: GEMDQMBase.h:572
Log< level::Error, false > LogError
TString getSuffixTitle(Int_t region_id)
std::vector< Float_t > listRadiusOddChamber_
Definition: GEMDQMBase.h:532
std::string log_category_
Definition: GEMDQMBase.h:552
char const * label
std::map< ME3IdsKey, bool > MEMap2AbsReWithEtaCheck_
Definition: GEMDQMBase.h:617
std::map< ME2IdsKey, bool > MEMap2Check_
Definition: GEMDQMBase.h:615
virtual int ProcessWithMEMap3(BookingHelper &bh, ME3IdsKey key)
Definition: GEMDQMBase.h:562
virtual void setXTitle(std::string const &title)
int GenerateMEPerChamber(DQMStore::IBooker &ibooker)
Definition: GEMDQMBase.cc:180
std::vector< Float_t > listRadiusEvenChamber_
Definition: GEMDQMBase.h:531
std::map< ME3IdsKey, bool > MEMap3Check_
Definition: GEMDQMBase.h:618
int getNumEtaPartitions(const GEMStation *)
Definition: GEMDQMBase.cc:40
virtual int ProcessWithMEMap3WithChamber(BookingHelper &bh, ME4IdsKey key)
Definition: GEMDQMBase.h:564
edm::ESGetToken< GEMGeometry, MuonGeometryRecord > geomToken_
Definition: GEMDQMBase.h:610
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
Transition
Definition: Transition.h:12
int getMaxVFAT(const int)
Definition: GEMDQMBase.h:638
int keyToStation(ME2IdsKey key)
Definition: GEMDQMBase.h:569
ESHandle< T > getHandle(const ESGetToken< T, R > &iToken) const
Definition: EventSetup.h:130
std::map< ME4IdsKey, bool > MEMap4Check_
Definition: GEMDQMBase.h:620
constexpr int ieta() const
Definition: GEMDetId.h:199
const GEMGeometry * GEMGeometry_
Definition: GEMDQMBase.h:609
MonitorElement * book2D(TString const &name, TString const &title, int nchX, double lowX, double highX, int nchY, double lowY, double highY, FUNC onbooking=NOOP())
Definition: DQMStore.h:212
virtual int ProcessWithMEMap2WithEta(BookingHelper &bh, ME3IdsKey key)
Definition: GEMDQMBase.h:560
int SortingLayers(std::vector< ME3IdsKey > &listLayers)
Definition: GEMDQMBase.cc:129
GEMDQMBase(const edm::ParameterSet &cfg)
Definition: GEMDQMBase.cc:7
std::map< ME3IdsKey, bool > MEMap2WithEtaCheck_
Definition: GEMDQMBase.h:616
std::map< GEMDetId, std::vector< const GEMEtaPartition * > > mapEtaPartition_
Definition: GEMDQMBase.h:613
HLT enums.
const std::vector< const GEMRegion * > & regions() const
Return a vector of all GEM regions.
Definition: GEMGeometry.cc:30
int nMaxNumCh_
Definition: GEMDQMBase.h:622
std::tuple< Int_t, Int_t > ME2IdsKey
std::tuple< Int_t, Int_t, Int_t > ME3IdsKey
static char chambers[264][20]
Definition: ReadPGInfo.cc:243
std::map< ME4IdsKey, bool > MEMap3WithChCheck_
Definition: GEMDQMBase.h:619
virtual int ProcessWithMEMap2(BookingHelper &bh, ME2IdsKey key)
Definition: GEMDQMBase.h:559