CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
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  if (module(3) == '-') {
176  zside = -1;
177  iPhi = (channel - 1) % 4 + 1;
178  } else {
179  zside = 1;
180  iPhi = (68 - channel) % 4 + 1;
181  }
182 
183  status_.insert(
184  std::pair<uint32_t, uint32_t>(EcalTrigTowerDetId(zside, EcalBarrel, iEta, iPhi).rawId(), statusVal));
185  } else if (module.Contains("EE")) {
186  std::vector<EcalScDetId> scIds(electronicsMap->getEcalScDetId(dccId(module.Data()), channel, false));
187  for (unsigned iS(0); iS != scIds.size(); ++iS)
188  status_.insert(std::pair<uint32_t, uint32_t>(scIds[iS].rawId(), statusVal));
189  }
190  } else if (channelType == "PN") {
191  // module: DCC ID, channel: iPN
192  // Store using EcalPnDiodeDetId as keys
193  unsigned iDCC(module.Atoi() - 1);
194  int subdet(iDCC <= kEEmHigh || iDCC >= kEEpLow ? EcalEndcap : EcalBarrel);
195  status_.insert(std::pair<uint32_t, uint32_t>(EcalPnDiodeDetId(subdet, iDCC + 1, channel).rawId(), statusVal));
196  }
197  }
198  }
199 
200  void StatusManager::readFromObj(EcalDQMChannelStatus const &_channelStatus, EcalDQMTowerStatus const &_towerStatus) {
201  EcalDQMChannelStatus::Items const &barrelChStatus(_channelStatus.barrelItems());
202  for (unsigned iC(0); iC != EBDetId::kSizeForDenseIndexing; ++iC)
203  status_.insert(
204  std::pair<uint32_t, uint32_t>(EBDetId::unhashIndex(iC).rawId(), barrelChStatus[iC].getStatusCode()));
205 
206  EcalDQMChannelStatus::Items const &endcapChStatus(_channelStatus.endcapItems());
207  for (unsigned iC(0); iC != EEDetId::kSizeForDenseIndexing; ++iC)
208  status_.insert(
209  std::pair<uint32_t, uint32_t>(EEDetId::unhashIndex(iC).rawId(), endcapChStatus[iC].getStatusCode()));
210 
211  EcalDQMTowerStatus::Items const &barrelTowStatus(_towerStatus.barrelItems());
212  for (unsigned iC(0); iC != EcalTrigTowerDetId::kEBTotalTowers; ++iC)
213  status_.insert(std::pair<uint32_t, uint32_t>(EcalTrigTowerDetId::detIdFromDenseIndex(iC).rawId(),
214  barrelTowStatus[iC].getStatusCode()));
215 
216  EcalDQMTowerStatus::Items const &endcapTowStatus(_towerStatus.endcapItems());
217  for (unsigned iC(0); iC != EcalScDetId::kSizeForDenseIndexing; ++iC)
218  status_.insert(
219  std::pair<uint32_t, uint32_t>(EcalScDetId::unhashIndex(iC).rawId(), endcapTowStatus[iC].getStatusCode()));
220  }
221 
222  void StatusManager::writeToStream(std::ostream &_output) const {}
223 
224  void StatusManager::writeToObj(EcalDQMChannelStatus &_channelStatus, EcalDQMTowerStatus &_towerStatus) const {
225  for (unsigned iC(0); iC != EBDetId::kSizeForDenseIndexing; ++iC) {
226  uint32_t key(EBDetId::unhashIndex(iC).rawId());
227  _channelStatus.setValue(key, EcalDQMStatusCode(getStatus(key)));
228  }
229 
230  for (unsigned iC(0); iC != EEDetId::kSizeForDenseIndexing; ++iC) {
231  uint32_t key(EEDetId::unhashIndex(iC).rawId());
232  _channelStatus.setValue(key, EcalDQMStatusCode(getStatus(key)));
233  }
234 
235  for (unsigned iC(0); iC != EcalTrigTowerDetId::kEBTotalTowers; ++iC) {
237  _towerStatus.setValue(key, EcalDQMStatusCode(getStatus(key)));
238  }
239 
240  for (unsigned iC(0); iC != EcalScDetId::kSizeForDenseIndexing; ++iC) {
241  uint32_t key(EcalScDetId::unhashIndex(iC));
242  _towerStatus.setValue(key, EcalDQMStatusCode(getStatus(key)));
243  }
244  }
245 
246  uint32_t StatusManager::getStatus(uint32_t _key) const {
247  std::map<uint32_t, uint32_t>::const_iterator itr(status_.find(_key));
248  if (itr == status_.end())
249  return 0;
250  return itr->second;
251  }
252 
253 } // namespace ecaldqm
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
uint32_t getStatus(uint32_t) const
static const int LASER_TIMING_RMS_ERROR
static const int PEDESTAL_HIGH_GAIN_MEAN_ERROR
const Items & barrelItems() const
constexpr uint32_t rawId() const
get the raw id
Definition: DetId.h:57
static const int PEDESTAL_ONLINE_HIGH_GAIN_RMS_ERROR
static EcalScDetId unhashIndex(int hi)
Definition: EcalScDetId.h:117
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 writeToStream(std::ostream &) const
void setValue(const uint32_t id, const Item &item)
static const int TESTPULSE_MIDDLE_GAIN_RMS_ERROR
tuple key
prepare the HTCondor submission files and eventually submit them
static const int TESTPULSE_HIGH_GAIN_RMS_ERROR
unsigned dccId(DetId const &, EcalElectronicsMapping const *)
static const int LED_TIMING_MEAN_ERROR
std::vector< EcalScDetId > getEcalScDetId(int DCCid, int DCC_Channel, bool ignoreSingleCrystal=true) const
static const int PEDESTAL_LOW_GAIN_MEAN_ERROR
static const int TESTPULSE_LOW_GAIN_MEAN_ERROR
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
void writeToObj(EcalDQMChannelStatus &, EcalDQMTowerStatus &) const
static const int TT_ID_ERROR
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
const Items & endcapItems() const
static const int CH_ID_ERROR
void readFromObj(EcalDQMChannelStatus const &, EcalDQMTowerStatus const &)
static bool validDenseIndex(uint32_t din)
Definition: EBDetId.h:105
tuple module
Definition: callgraph.py:69