CMS 3D CMS Logo

StatusManager.cc
Go to the documentation of this file.
2 
4 
6 
8 
13 
14 #include "TObjArray.h"
15 #include "TPRegexp.h"
16 #include "TString.h"
17 
18 namespace ecaldqm {
19 
20  StatusManager::StatusManager() : dictionary_(), status_() {
21  dictionary_["CH_ID_ERROR"] = 0x1 << EcalDQMStatusHelper::CH_ID_ERROR;
22  dictionary_["CH_GAIN_ZERO_ERROR"] = 0x1 << EcalDQMStatusHelper::CH_GAIN_ZERO_ERROR;
23  dictionary_["CH_GAIN_SWITCH_ERROR"] = 0x1 << EcalDQMStatusHelper::CH_GAIN_SWITCH_ERROR;
24  dictionary_["TT_ID_ERROR"] = 0x1 << EcalDQMStatusHelper::TT_ID_ERROR;
25  dictionary_["TT_SIZE_ERROR"] = 0x1 << EcalDQMStatusHelper::TT_SIZE_ERROR;
26 
27  dictionary_["PEDESTAL_LOW_GAIN_MEAN_ERROR"] = 0x1 << EcalDQMStatusHelper::PEDESTAL_LOW_GAIN_MEAN_ERROR;
28  dictionary_["PEDESTAL_MIDDLE_GAIN_MEAN_ERROR"] = 0x1 << EcalDQMStatusHelper::PEDESTAL_MIDDLE_GAIN_MEAN_ERROR;
29  dictionary_["PEDESTAL_HIGH_GAIN_MEAN_ERROR"] = 0x1 << EcalDQMStatusHelper::PEDESTAL_HIGH_GAIN_MEAN_ERROR;
30  dictionary_["PEDESTAL_LOW_GAIN_RMS_ERROR"] = 0x1 << EcalDQMStatusHelper::PEDESTAL_LOW_GAIN_RMS_ERROR;
31  dictionary_["PEDESTAL_MIDDLE_GAIN_RMS_ERROR"] = 0x1 << EcalDQMStatusHelper::PEDESTAL_MIDDLE_GAIN_RMS_ERROR;
32  dictionary_["PEDESTAL_HIGH_GAIN_RMS_ERROR"] = 0x1 << EcalDQMStatusHelper::PEDESTAL_HIGH_GAIN_RMS_ERROR;
33 
34  dictionary_["PEDESTAL_ONLINE_HIGH_GAIN_MEAN_ERROR"] = 0x1
36  dictionary_["PEDESTAL_ONLINE_HIGH_GAIN_RMS_ERROR"] = 0x1
38 
39  dictionary_["TESTPULSE_LOW_GAIN_MEAN_ERROR"] = 0x1 << EcalDQMStatusHelper::TESTPULSE_LOW_GAIN_MEAN_ERROR;
40  dictionary_["TESTPULSE_MIDDLE_GAIN_MEAN_ERROR"] = 0x1 << EcalDQMStatusHelper::TESTPULSE_MIDDLE_GAIN_MEAN_ERROR;
41  dictionary_["TESTPULSE_HIGH_GAIN_MEAN_ERROR"] = 0x1 << EcalDQMStatusHelper::TESTPULSE_HIGH_GAIN_MEAN_ERROR;
42  dictionary_["TESTPULSE_LOW_GAIN_RMS_ERROR"] = 0x1 << EcalDQMStatusHelper::TESTPULSE_LOW_GAIN_RMS_ERROR;
43  dictionary_["TESTPULSE_MIDDLE_GAIN_RMS_ERROR"] = 0x1 << EcalDQMStatusHelper::TESTPULSE_MIDDLE_GAIN_RMS_ERROR;
44  dictionary_["TESTPULSE_HIGH_GAIN_RMS_ERROR"] = 0x1 << EcalDQMStatusHelper::TESTPULSE_HIGH_GAIN_RMS_ERROR;
45 
46  dictionary_["LASER_MEAN_ERROR"] = 0x1 << EcalDQMStatusHelper::LASER_MEAN_ERROR;
47  dictionary_["LASER_RMS_ERROR"] = 0x1 << EcalDQMStatusHelper::LASER_RMS_ERROR;
48  dictionary_["LASER_TIMING_MEAN_ERROR"] = 0x1 << EcalDQMStatusHelper::LASER_TIMING_MEAN_ERROR;
49  dictionary_["LASER_TIMING_RMS_ERROR"] = 0x1 << EcalDQMStatusHelper::LASER_TIMING_RMS_ERROR;
50 
51  dictionary_["LED_MEAN_ERROR"] = 0x1 << EcalDQMStatusHelper::LED_MEAN_ERROR;
52  dictionary_["LED_RMS_ERROR"] = 0x1 << EcalDQMStatusHelper::LED_RMS_ERROR;
53  dictionary_["LED_TIMING_MEAN_ERROR"] = 0x1 << EcalDQMStatusHelper::LED_TIMING_MEAN_ERROR;
54  dictionary_["LED_TIMING_RMS_ERROR"] = 0x1 << EcalDQMStatusHelper::LED_TIMING_RMS_ERROR;
55 
56  dictionary_["STATUS_FLAG_ERROR"] = 0x1 << EcalDQMStatusHelper::STATUS_FLAG_ERROR;
57 
58  dictionary_["PHYSICS_BAD_CHANNEL_WARNING"] = 0x1 << EcalDQMStatusHelper::PHYSICS_BAD_CHANNEL_WARNING;
59  dictionary_["PHYSICS_BAD_CHANNEL_ERROR"] = 0x1 << EcalDQMStatusHelper::PHYSICS_BAD_CHANNEL_ERROR;
60 
61  dictionary_["disabled_channel"] =
71 
72  dictionary_["dead_channel"] =
92 
101 
108 
109  dictionary_["laser_problem"] =
112 
113  dictionary_["led_problem"] =
116 
122  }
123 
124  void StatusManager::readFromStream(std::istream &_input, const EcalElectronicsMapping *electronicsMap) {
125  TPRegexp linePat(
126  "^[ ]*(Crystal|TT|PN)[ ]+(EB[0-9+-]*|EE[0-9+-]*|[0-9]+)[ "
127  "]+([0-9]+)[ ]([a-zA-Z_]+)");
128 
130  while (true) {
131  std::getline(_input, line);
132  if (!_input.good())
133  break;
134 
135  if (!linePat.MatchB(line))
136  continue;
137 
138  TObjArray *matches(linePat.MatchS(line));
139  TString channelType(matches->At(1)->GetName());
140  TString module(matches->At(2)->GetName());
141  unsigned channel(TString(matches->At(3)->GetName()).Atoi());
142  TString statusName(matches->At(4)->GetName());
143  delete matches;
144 
145  std::map<std::string, uint32_t>::const_iterator dItr(dictionary_.find(statusName.Data()));
146  if (dItr == dictionary_.end())
147  continue;
148  uint32_t statusVal(dItr->second);
149 
150  if (channelType == "Crystal") {
151  // module: Subdetector name, channel: dense ID
152  // Store using EBDetId and EEDetId as keys (following
153  // EcalDQMChannelStatus)
154 
155  if (module == "EB") {
156  if (!EBDetId::validDenseIndex(channel))
157  continue;
158  status_.insert(std::pair<uint32_t, uint32_t>(EBDetId::unhashIndex(channel).rawId(), statusVal));
159  } else if (module == "EE") {
160  if (!EEDetId::validDenseIndex(channel))
161  continue;
162  status_.insert(std::pair<uint32_t, uint32_t>(EEDetId::unhashIndex(channel).rawId(), statusVal));
163  }
164  } else if (channelType == "TT") {
165  // module: Supermodule name, channel: RU ID (electronics ID tower)
166  // Store using EcalTrigTowerDetId and EcalScDetId as keys (following
167  // EcalDQMTowerStatus)
168 
169  if (module.Contains("EB")) {
170  /* TODO CHECK THIS */
171 
172  int iEta((channel - 1) / 4 + 1);
173  int zside(0);
174  int iPhi(0);
175  std::string smName = module.Data();
176  unsigned smNumber(std::atoi(smName.substr(3).c_str()));
177 
178  if (module(2) == '-') {
179  zside = -1;
180  iPhi = 4 * (smNumber - 1) + (channel - 1) % 4 - 1;
181  } else {
182  zside = 1;
183  iPhi = 4 * (smNumber - 1) + (68 - channel) % 4 - 1;
184  }
185 
186  status_.insert(
187  std::pair<uint32_t, uint32_t>(EcalTrigTowerDetId(zside, EcalBarrel, iEta, iPhi).rawId(), statusVal));
188  } else if (module.Contains("EE")) {
189  std::vector<EcalScDetId> scIds(electronicsMap->getEcalScDetId(dccId(module.Data()), channel, false));
190  for (unsigned iS(0); iS != scIds.size(); ++iS)
191  status_.insert(std::pair<uint32_t, uint32_t>(scIds[iS].rawId(), statusVal));
192  }
193  } else if (channelType == "PN") {
194  // module: DCC ID, channel: iPN
195  // Store using EcalPnDiodeDetId as keys
196  unsigned iDCC(module.Atoi() - 1);
197  int subdet(iDCC <= kEEmHigh || iDCC >= kEEpLow ? EcalEndcap : EcalBarrel);
198  status_.insert(std::pair<uint32_t, uint32_t>(EcalPnDiodeDetId(subdet, iDCC + 1, channel).rawId(), statusVal));
199  }
200  }
201  }
202 
203  void StatusManager::readFromObj(EcalDQMChannelStatus const &_channelStatus, EcalDQMTowerStatus const &_towerStatus) {
204  EcalDQMChannelStatus::Items const &barrelChStatus(_channelStatus.barrelItems());
205  for (unsigned iC(0); iC != EBDetId::kSizeForDenseIndexing; ++iC)
206  status_.insert(
207  std::pair<uint32_t, uint32_t>(EBDetId::unhashIndex(iC).rawId(), barrelChStatus[iC].getStatusCode()));
208 
209  EcalDQMChannelStatus::Items const &endcapChStatus(_channelStatus.endcapItems());
210  for (unsigned iC(0); iC != EEDetId::kSizeForDenseIndexing; ++iC)
211  status_.insert(
212  std::pair<uint32_t, uint32_t>(EEDetId::unhashIndex(iC).rawId(), endcapChStatus[iC].getStatusCode()));
213 
214  EcalDQMTowerStatus::Items const &barrelTowStatus(_towerStatus.barrelItems());
215  for (unsigned iC(0); iC != EcalTrigTowerDetId::kEBTotalTowers; ++iC)
216  status_.insert(std::pair<uint32_t, uint32_t>(EcalTrigTowerDetId::detIdFromDenseIndex(iC).rawId(),
217  barrelTowStatus[iC].getStatusCode()));
218 
219  EcalDQMTowerStatus::Items const &endcapTowStatus(_towerStatus.endcapItems());
220  for (unsigned iC(0); iC != EcalScDetId::kSizeForDenseIndexing; ++iC)
221  status_.insert(
222  std::pair<uint32_t, uint32_t>(EcalScDetId::unhashIndex(iC).rawId(), endcapTowStatus[iC].getStatusCode()));
223  }
224 
225  void StatusManager::writeToStream(std::ostream &_output) const {}
226 
227  void StatusManager::writeToObj(EcalDQMChannelStatus &_channelStatus, EcalDQMTowerStatus &_towerStatus) const {
228  for (unsigned iC(0); iC != EBDetId::kSizeForDenseIndexing; ++iC) {
229  uint32_t key(EBDetId::unhashIndex(iC).rawId());
230  _channelStatus.setValue(key, EcalDQMStatusCode(getStatus(key)));
231  }
232 
233  for (unsigned iC(0); iC != EEDetId::kSizeForDenseIndexing; ++iC) {
234  uint32_t key(EEDetId::unhashIndex(iC).rawId());
235  _channelStatus.setValue(key, EcalDQMStatusCode(getStatus(key)));
236  }
237 
238  for (unsigned iC(0); iC != EcalTrigTowerDetId::kEBTotalTowers; ++iC) {
240  _towerStatus.setValue(key, EcalDQMStatusCode(getStatus(key)));
241  }
242 
243  for (unsigned iC(0); iC != EcalScDetId::kSizeForDenseIndexing; ++iC) {
244  uint32_t key(EcalScDetId::unhashIndex(iC));
245  _towerStatus.setValue(key, EcalDQMStatusCode(getStatus(key)));
246  }
247  }
248 
249  uint32_t StatusManager::getStatus(uint32_t _key) const {
250  std::map<uint32_t, uint32_t>::const_iterator itr(status_.find(_key));
251  if (itr == status_.end())
252  return 0;
253  return itr->second;
254  }
255 
256 } // namespace ecaldqm
void writeToObj(EcalDQMChannelStatus &, EcalDQMTowerStatus &) const
static const int LED_MEAN_ERROR
static const int PEDESTAL_MIDDLE_GAIN_RMS_ERROR
static EcalTrigTowerDetId detIdFromDenseIndex(uint32_t di)
static const int LASER_MEAN_ERROR
static const int TESTPULSE_LOW_GAIN_RMS_ERROR
static const int PHYSICS_BAD_CHANNEL_WARNING
static const int LASER_TIMING_RMS_ERROR
static const int PEDESTAL_HIGH_GAIN_MEAN_ERROR
static const int PEDESTAL_ONLINE_HIGH_GAIN_RMS_ERROR
static EcalScDetId unhashIndex(int hi)
Definition: EcalScDetId.h:117
const Items & endcapItems() const
static const int PHYSICS_BAD_CHANNEL_ERROR
static const int TT_SIZE_ERROR
int zside(DetId const &)
static const int CH_GAIN_SWITCH_ERROR
static const int TESTPULSE_MIDDLE_GAIN_MEAN_ERROR
static EEDetId unhashIndex(int hi)
Definition: EEDetId.cc:65
static const int PEDESTAL_LOW_GAIN_RMS_ERROR
std::map< std::string, uint32_t > dictionary_
Definition: StatusManager.h:29
void setValue(const uint32_t id, const Item &item)
static const int PEDESTAL_HIGH_GAIN_RMS_ERROR
static const int STATUS_FLAG_ERROR
void setValue(const uint32_t id, const Item &item)
static const int TESTPULSE_MIDDLE_GAIN_RMS_ERROR
static const int TESTPULSE_HIGH_GAIN_RMS_ERROR
unsigned dccId(DetId const &, EcalElectronicsMapping const *)
static const int LED_TIMING_MEAN_ERROR
const Items & barrelItems() const
static const int PEDESTAL_LOW_GAIN_MEAN_ERROR
static const int TESTPULSE_LOW_GAIN_MEAN_ERROR
std::string smName(unsigned)
void writeToStream(std::ostream &) const
constexpr uint32_t rawId() const
get the raw id
Definition: DetId.h:57
static const int LED_TIMING_RMS_ERROR
static const int CH_GAIN_ZERO_ERROR
static const int PEDESTAL_ONLINE_HIGH_GAIN_MEAN_ERROR
static const int LASER_TIMING_MEAN_ERROR
static EBDetId unhashIndex(int hi)
get a DetId from a compact index for arrays
Definition: EBDetId.h:110
std::map< uint32_t, uint32_t > status_
Definition: StatusManager.h:30
void readFromStream(std::istream &, EcalElectronicsMapping const *)
static bool validDenseIndex(uint32_t din)
Definition: EEDetId.h:213
std::vector< EcalScDetId > getEcalScDetId(int DCCid, int DCC_Channel, bool ignoreSingleCrystal=true) const
static const int TT_ID_ERROR
uint32_t getStatus(uint32_t) const
static const int LED_RMS_ERROR
static const int PEDESTAL_MIDDLE_GAIN_MEAN_ERROR
static const int TESTPULSE_HIGH_GAIN_MEAN_ERROR
static const int LASER_RMS_ERROR
static const int CH_ID_ERROR
void readFromObj(EcalDQMChannelStatus const &, EcalDQMTowerStatus const &)
static bool validDenseIndex(uint32_t din)
Definition: EBDetId.h:105