CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
HcalHotCellClient.cc
Go to the documentation of this file.
4 
8 
9 #include <iostream>
10 
11 /*
12  * \file HcalHotCellClient.cc
13  *
14  * $Date: 2010/11/10 20:01:34 $
15  * $Revision: 1.75 $
16  * \author J. Temple
17  * \brief Hot Cell Client class
18  */
19 
21 {
22  name_=myname;
23 }
24 
26 {
27  name_=myname;
28  enableCleanup_ = ps.getUntrackedParameter<bool>("enableCleanup",false);
29  debug_ = ps.getUntrackedParameter<int>("debug",0);
30  prefixME_ = ps.getUntrackedParameter<std::string>("subSystemFolder","Hcal/");
31  if (prefixME_.substr(prefixME_.size()-1,prefixME_.size())!="/")
32  prefixME_.append("/");
33  subdir_ = ps.getUntrackedParameter<std::string>("HotCellFolder","HotCellMonitor_Hcal/"); // HotCellMonitor_Hcal
34  if (subdir_.size()>0 && subdir_.substr(subdir_.size()-1,subdir_.size())!="/")
35  subdir_.append("/");
36  subdir_=prefixME_+subdir_;
37 
38  validHtmlOutput_ = ps.getUntrackedParameter<bool>("HotCell_validHtmlOutput",true);
39  cloneME_ = ps.getUntrackedParameter<bool>("cloneME", true);
40  badChannelStatusMask_ = ps.getUntrackedParameter<int>("HotCell_BadChannelStatusMask",
41  ps.getUntrackedParameter<int>("BadChannelStatusMask",
42  (1<<HcalChannelStatus::HcalCellHot))); // identify channel status values to mask
43 
44  minerrorrate_ = ps.getUntrackedParameter<double>("HotCell_minerrorrate",
45  ps.getUntrackedParameter<double>("minerrorrate",0.25));
46  minevents_ = ps.getUntrackedParameter<int>("HotCell_minevents",
47  ps.getUntrackedParameter<int>("minevents",100));
49  ProblemCells=0;
50 }
51 
53 {
54  if (debug_>2) std::cout <<"\tHcalHotCellClient::analyze()"<<std::endl;
56 }
57 
59 {
60  if (debug_>2) std::cout <<"\t\tHcalHotCellClient::calculateProblems()"<<std::endl;
61  if(!dqmStore_) return;
62  double totalevents=0;
63  int etabins=0, phibins=0, zside=0;
64  double problemvalue=0;
65 
66  // Clear away old problems
67  if (ProblemCells!=0)
68  {
70  (ProblemCells->getTH2F())->SetMaximum(1.05);
71  (ProblemCells->getTH2F())->SetMinimum(0.);
72  }
73  for (unsigned int d=0;ProblemCellsByDepth!=0 && d<ProblemCellsByDepth->depth.size();++d)
74  {
75  if (ProblemCellsByDepth->depth[d]!=0)
76  {
77  ProblemCellsByDepth->depth[d]->Reset();
78  (ProblemCellsByDepth->depth[d]->getTH2F())->SetMaximum(1.05);
79  (ProblemCellsByDepth->depth[d]->getTH2F())->SetMinimum(0.);
80  }
81  }
82 
83  // Get histograms that are used in testing
84  TH2F* HotAboveThresholdByDepth[4];
85  TH2F* HotAlwaysAboveThresholdByDepth[4];
86  TH2F* HotAboveETThresholdByDepth[4];
87  TH2F* HotAlwaysAboveETThresholdByDepth[4];
88  TH2F* HotNeighborsByDepth[4];
89 
90  std::vector<std::string> name = HcalEtaPhiHistNames();
91 
92  bool neighbortest=false;
93 
94  MonitorElement* me;
95  for (int i=0;i<4;++i)
96  {
97  // Assume histograms aren't found by default
98  HotAboveThresholdByDepth[i]=0;
99  HotAlwaysAboveThresholdByDepth[i]=0;
100  HotAboveETThresholdByDepth[i]=0;
101  HotAlwaysAboveETThresholdByDepth[i]=0;
102  HotNeighborsByDepth[i]=0;
103 
104  std::string s=subdir_+"hot_rechit_above_threshold/"+name[i]+"Hot Cells Above ET Threshold";
105  me=dqmStore_->get(s.c_str());
106  if (me!=0)HotAboveETThresholdByDepth[i]=HcalUtilsClient::getHisto<TH2F*>(me, cloneME_, HotAboveETThresholdByDepth[i], debug_);
107 
108  s=subdir_+"hot_rechit_always_above_threshold/"+name[i]+"Hot Cells Persistently Above ET Threshold";
109  me=dqmStore_->get(s.c_str());
110  if (me!=0)HotAlwaysAboveETThresholdByDepth[i]=HcalUtilsClient::getHisto<TH2F*>(me, cloneME_, HotAlwaysAboveETThresholdByDepth[i], debug_);
111 
112  s=subdir_+"hot_rechit_above_threshold/"+name[i]+"Hot Cells Above Energy Threshold";
113  me=dqmStore_->get(s.c_str());
114  if (me!=0)HotAboveThresholdByDepth[i]=HcalUtilsClient::getHisto<TH2F*>(me, cloneME_, HotAboveThresholdByDepth[i], debug_);
115 
116  s=subdir_+"hot_rechit_always_above_threshold/"+name[i]+"Hot Cells Persistently Above Energy Threshold";
117  me=dqmStore_->get(s.c_str());
118  if (me!=0)HotAlwaysAboveThresholdByDepth[i]=HcalUtilsClient::getHisto<TH2F*>(me, cloneME_, HotAlwaysAboveThresholdByDepth[i], debug_);
119 
120  s=subdir_+"hot_neighbortest/"+name[i]+"Hot Cells Failing Neighbor Test";
121  me=dqmStore_->get(s.c_str());
122  if (me!=0)HotNeighborsByDepth[i]=HcalUtilsClient::getHisto<TH2F*>(me, cloneME_, HotNeighborsByDepth[i], debug_);
123  s=subdir_+"hot_neighbortest/NeighborTestEnabled";
124  me=dqmStore_->get(s.c_str());
125  if (me!=0 && me->getIntValue()==1)
126  neighbortest=true;
127  }
128 
129 
130  // Because we're clearing and re-forming the problem cell histogram here, we don't need to do any cute
131  // setting of the underflow bin to 0, and we can plot results as a raw rate between 0-1.
132 
133  for (unsigned int d=0;ProblemCellsByDepth!=0 && d<ProblemCellsByDepth->depth.size();++d)
134  {
135  if (ProblemCellsByDepth->depth[d]==0) continue;
136 
137  if (HotAboveETThresholdByDepth[d]) totalevents = std::max(totalevents, HotAboveETThresholdByDepth[d]->GetBinContent(0));
138  else if (HotAlwaysAboveETThresholdByDepth[d]) totalevents = std::max(totalevents, HotAlwaysAboveETThresholdByDepth[d]->GetBinContent(0));
139  else if (HotAboveThresholdByDepth[d]) totalevents = std::max(totalevents, HotAboveThresholdByDepth[d]->GetBinContent(0));
140  else if (HotAlwaysAboveThresholdByDepth[d]) totalevents = std::max(totalevents, HotAlwaysAboveThresholdByDepth[d]->GetBinContent(0));
141  else if (neighbortest==true && HotNeighborsByDepth[d]) totalevents = std::max(totalevents, HotNeighborsByDepth[d]->GetBinContent(0));
142  else if (debug_>0) std::cout <<"<HcalHotCellClient::calculateProblems> No evaluation histograms found; no valid hot tests enabled?" << std::endl;
143  if (totalevents==0 || totalevents<minevents_) continue;
144  enoughevents_=true; // kind of a hack here
145  etabins=(ProblemCellsByDepth->depth[d]->getTH2F())->GetNbinsX();
146  phibins=(ProblemCellsByDepth->depth[d]->getTH2F())->GetNbinsY();
147  problemvalue=0;
148  for (int eta=0;eta<etabins;++eta)
149  {
150  int ieta=CalcIeta(eta,d+1);
151  if (ieta==-9999) continue;
152  for (int phi=0;phi<phibins;++phi)
153  {
154  problemvalue=0; // problem fraction sums over all three tests
155  // If cell is never-present in all runs, then problemvalue = event
156  if (HotAboveETThresholdByDepth[d]!=0)
157  problemvalue+=HotAboveETThresholdByDepth[d]->GetBinContent(eta+1,phi+1);
158  if (HotAboveThresholdByDepth[d]!=0)
159  problemvalue+=HotAboveThresholdByDepth[d]->GetBinContent(eta+1,phi+1);
160  if (HotAlwaysAboveThresholdByDepth[d]!=0)
161  problemvalue+=HotAlwaysAboveThresholdByDepth[d]->GetBinContent(eta+1,phi+1);
162  if (neighbortest==true && HotNeighborsByDepth[d]!=0)
163  problemvalue+=HotNeighborsByDepth[d]->GetBinContent(eta+1,phi+1);
164  if (problemvalue==0) continue;
165  problemvalue/=totalevents; // problem value is a rate; should be between 0 and 1
166  problemvalue = std::min(1.,problemvalue);
167 
168  zside=0;
169  if (isHF(eta,d+1)) // shift ieta by 1 for HF
170  ieta<0 ? zside = -1 : zside = 1;
171 
172  // For problem cells that exceed our allowed rate,
173  // set the values to -1 if the cells are already marked in the status database
174  if (problemvalue>minerrorrate_)
175  {
176  HcalSubdetector subdet=HcalEmpty;
177  if (isHB(eta,d+1))subdet=HcalBarrel;
178  else if (isHE(eta,d+1)) subdet=HcalEndcap;
179  else if (isHF(eta,d+1)) subdet=HcalForward;
180  else if (isHO(eta,d+1)) subdet=HcalOuter;
181  HcalDetId hcalid(subdet, ieta, phi+1, (int)(d+1));
182  if (badstatusmap.find(hcalid)!=badstatusmap.end())
183  problemvalue=999;
184  }
185  ProblemCellsByDepth->depth[d]->setBinContent(eta+1,phi+1,problemvalue);
186  if (ProblemCells!=0) ProblemCells->Fill(ieta+zside,phi+1,problemvalue);
187  } // loop on phi
188  } // loop on eta
189  } // loop on depth
190 
191  if (ProblemCells==0)
192  {
193  if (debug_>0) std::cout <<"<HcalHotCellClient::analyze> ProblemCells histogram does not exist!"<<std::endl;
194  return;
195  }
196 
197  // Normalization of ProblemCell plot, in the case where there are errors in multiple depths
198  etabins=(ProblemCells->getTH2F())->GetNbinsX();
199  phibins=(ProblemCells->getTH2F())->GetNbinsY();
200  for (int eta=0;eta<etabins;++eta)
201  {
202  for (int phi=0;phi<phibins;++phi)
203  {
206  }
207  }
208 
211  return;
212 }
213 
214 
216 {
218  if (debug_>0)
219  {
220  std::cout <<"<HcalHotCellClient::beginJob()> Displaying dqmStore directory structure:"<<std::endl;
222  }
223 }
224 
226 
228 {
229  enoughevents_=false;
230  if (!dqmStore_)
231  {
232  if (debug_>0) std::cout <<"<HcalHotCellClient::beginRun> dqmStore does not exist!"<<std::endl;
233  return;
234  }
236  problemnames_.clear();
237  ProblemCells=dqmStore_->book2D(" ProblemHotCells",
238  " Problem Hot Cell Rate for all HCAL;ieta;iphi",
239  85,-42.5,42.5,
240  72,0.5,72.5);
241  problemnames_.push_back(ProblemCells->getName());
242  if (debug_>1)
243  std::cout << "Tried to create ProblemCells Monitor Element in directory "<<subdir_<<" \t Failed? "<<(ProblemCells==0)<<std::endl;
244  dqmStore_->setCurrentFolder(subdir_+"problem_hotcells");
246  ProblemCellsByDepth->setup(dqmStore_," Problem Hot Cell Rate");
247  for (unsigned int i=0; i<ProblemCellsByDepth->depth.size();++i)
248  problemnames_.push_back(ProblemCellsByDepth->depth[i]->getName());
249 
250  nevts_=0;
251 }
252 
254 
257 
259 {
260  if (!ProblemCells)
261  {
262  if (debug_>1) std::cout <<"<HcalHotCellClient::hasErrors_Temp> ProblemCells histogram does not exist!"<<std::endl;
263  return false;
264  }
265  int problemcount=0;
266  int ieta=-9999;
267 
268  for (int depth=0;depth<4; ++depth)
269  {
270  int etabins = (ProblemCells->getTH2F())->GetNbinsX();
271  int phibins = (ProblemCells->getTH2F())->GetNbinsY();
272  for (int hist_eta=0;hist_eta<etabins;++hist_eta)
273  {
274  for (int hist_phi=0; hist_phi<phibins;++hist_phi)
275  {
276  ieta=CalcIeta(hist_eta,depth+1);
277  if (ieta==-9999) continue;
278  if (ProblemCellsByDepth->depth[depth]==0)
279  continue;
280  if (ProblemCellsByDepth->depth[depth]->getBinContent(hist_eta,hist_phi)>minerrorrate_)
281  ++problemcount;
282  } // for (int hist_phi=1;...)
283  } // for (int hist_eta=1;...)
284  } // for (int depth=0;...)
285 
286  if (problemcount>0) return true;
287  return false;
288 }
289 
290 bool HcalHotCellClient::hasWarnings_Temp(void){return false;}
291 bool HcalHotCellClient::hasOther_Temp(void){return false;}
292 bool HcalHotCellClient::test_enabled(void){return true;}
293 
294 
295 void HcalHotCellClient::updateChannelStatus(std::map<HcalDetId, unsigned int>& myqual)
296 {
297  // This gets called by HcalMonitorClient
298 
299  if (nevts_<minevents_) return; // not enough events to make judgment; don't create new status file
300 
301  float binval;
302  int ieta=0;
303  int iphi=0;
304  int etabins=0;
305  int phibins=0;
306 
307  int subdet=0;
308  if (debug_>1)
309  {
310  std::cout <<"<HcalHotCellClient> Summary of Hot Cells in Run: "<<std::endl;
311  std::cout <<"(Error rate must be >= "<<minerrorrate_*100.<<"% )"<<std::endl;
312  }
313  for (int d=0;d<4;++d)
314  {
315  etabins=(ProblemCellsByDepth->depth[d]->getTH2F())->GetNbinsX();
316  phibins=(ProblemCellsByDepth->depth[d]->getTH2F())->GetNbinsY();
317  for (int hist_eta=0;hist_eta<etabins;++hist_eta)
318  {
319  ieta=CalcIeta(hist_eta,d+1);
320  if (ieta==-9999) continue;
321  for (int hist_phi=0;hist_phi<phibins;++hist_phi)
322  {
323  iphi=hist_phi+1;
324 
325  // ProblemCells have already been normalized
326  binval=ProblemCellsByDepth->depth[d]->getBinContent(hist_eta+1,hist_phi+1);
327 
328  // Set subdetector labels for output
329  if (d<2)
330  {
331  if (isHB(hist_eta,d+1))
332  subdet=HcalBarrel;
333  else if (isHE(hist_eta,d+1))
334  subdet=HcalEndcap;
335  else if (isHF(hist_eta,d+1))
336  subdet=HcalForward;
337  }
338  else if (d==2)
339  subdet=HcalEndcap;
340  else if (d==3)
341  subdet=HcalOuter;
342  // Set correct depth label
343 
344  HcalDetId myid((HcalSubdetector)(subdet), ieta, iphi, d+1);
345  // Need this to keep from flagging non-existent HE/HF cells
346  if (!validDetId((HcalSubdetector)(subdet), ieta, iphi, d+1))
347  continue;
348 
349  int hotcell=0;
350  if (binval>minerrorrate_)
351  hotcell=1;
352  if (hotcell==1 && debug_>0)
353  std::cout <<"Hot Cell : subdetector = "<<subdet<<" (eta,phi,depth) = ("<<ieta<<", "<<iphi<<", "<<d+1<<"): "<<binval*100.<<"%"<<std::endl;
354 
355  // DetID not found in quality list; add it. (This shouldn't happen!)
356  if (myqual.find(myid)==myqual.end())
357  {
358  myqual[myid]=(hotcell<<HcalChannelStatus::HcalCellHot); //
359  }
360  else
361  {
362  int mask=(1<<HcalChannelStatus::HcalCellHot);
363  // hot cell found; 'or' the hot cell mask with existing ID
364  if (hotcell==1)
365  myqual[myid] |=mask;
366  // cell is not found, 'and' the inverse of the mask with the existing ID.
367  // Does this work correctly? I think so, but need to verify.
368  // Also, do we want to allow the client to turn off hot cell masks, or only add them?
369  else
370  myqual[myid] &=~mask;
371  }
372  } // for (int hist_phi=1;hist_phi<=phibins;++hist_phi)
373  } // for (int hist_eta=1;hist_eta<=etabins;++hist_eta)
374  } // for (int d=0;d<4;++d)
375 
376 
377 } //void HcalHotCellClient::updateChannelStatus
378 
379 
bool isHO(int etabin, int depth)
void calculateProblems(void)
T getUntrackedParameter(std::string const &, T const &) const
const std::string & getName(void) const
get name of ME
int i
Definition: DBlmapReader.cc:9
MonitorElement * ProblemCells
std::string name()
void setBinContent(int binx, double content)
set content of bin (1-D)
std::vector< std::string > HcalEtaPhiHistNames()
void setup(DQMStore *&m_dbe, std::string Name, std::string Units="")
#define min(a, b)
Definition: mlp_lapack.h:161
bool isHE(int etabin, int depth)
T eta() const
void Fill(long long x)
HcalHotCellClient()
Constructors.
std::vector< MonitorElement * > depth
const T & max(const T &a, const T &b)
std::vector< std::string > problemnames_
void updateChannelStatus(std::map< HcalDetId, unsigned int > &myqual)
EtaPhiHists * ProblemCellsByDepth
HcalSubdetector
Definition: HcalAssistant.h:32
MonitorElement * get(const std::string &path) const
get ME from full pathname (e.g. &quot;my/long/dir/my_histo&quot;)
Definition: DQMStore.cc:1270
bool isHB(int etabin, int depth)
int CalcIeta(int subdet, int eta, int depth)
bool isHF(int etabin, int depth)
void FillUnphysicalHEHFBins(EtaPhiHists &hh)
std::string subdir_
std::map< HcalDetId, unsigned int > badstatusmap
double getBinContent(int binx) const
get content of bin (1-D)
std::string prefixME_
tuple cout
Definition: gather_cfg.py:41
string s
Definition: asciidump.py:422
void showDirStructure(void) const
Definition: DQMStore.cc:2539
TH2F * getTH2F(void) const
MonitorElement * book2D(const char *name, const char *title, int nchX, double lowX, double highX, int nchY, double lowY, double highY)
Book 2D histogram.
Definition: DQMStore.cc:647
void Reset(void)
reset ME (ie. contents, errors, etc)
DQMStore * dqmStore_
void setCurrentFolder(const std::string &fullpath)
Definition: DQMStore.cc:237
bool validDetId(HcalSubdetector sd, int ies, int ip, int dp)
Definition: DDAxes.h:10