CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Member Functions | Private Attributes
HcalDeadCellClient Class Reference

#include <HcalDeadCellClient.h>

Inheritance diagram for HcalDeadCellClient:
HcalBaseDQClient

Public Member Functions

void analyze (DQMStore::IBooker &, DQMStore::IGetter &)
 
void beginRun (void)
 
void calculateProblems (DQMStore::IBooker &, DQMStore::IGetter &)
 
void cleanup (void)
 
void endJob (void)
 
bool hasErrors_Temp (void)
 
bool hasOther_Temp (void)
 
bool hasWarnings_Temp (void)
 
 HcalDeadCellClient ()
 Constructors. More...
 
 HcalDeadCellClient (std::string myname)
 
 HcalDeadCellClient (std::string myname, const edm::ParameterSet &ps)
 
void setup (void)
 
bool test_enabled (void)
 
void updateChannelStatus (std::map< HcalDetId, unsigned int > &myqual)
 
 ~HcalDeadCellClient ()
 Destructor. More...
 
- Public Member Functions inherited from HcalBaseDQClient
virtual void calculateProblems (void)
 
void getLogicalMap (const edm::EventSetup &es)
 
 HcalBaseDQClient ()
 
 HcalBaseDQClient (std::string s, const edm::ParameterSet &ps)
 
virtual void htmlOutput (DQMStore::IBooker &, DQMStore::IGetter &, std::string htmlDir)
 
std::string name ()
 
void setEventSetup (const edm::EventSetup &es)
 
virtual void setStatusMap (std::map< HcalDetId, unsigned int > &map)
 
virtual bool validHtmlOutput (DQMStore::IBooker &, DQMStore::IGetter &)
 
virtual ~HcalBaseDQClient (void)
 

Private Member Functions

void setupProblemCells (DQMStore::IBooker &, DQMStore::IGetter &)
 

Private Attributes

bool doProblemCellSetup_
 
bool excludeHOring2_backup_
 
int HBpresent_
 
int HEpresent_
 
int HFpresent_
 
int HOpresent_
 
int nevts_
 

Additional Inherited Members

- Public Attributes inherited from HcalBaseDQClient
int badChannelStatusMask_
 
std::map< HcalDetId, unsigned int > badstatusmap
 
const edm::EventSetupc
 
bool cloneME_
 
int debug_
 
bool enableCleanup_
 
bool enoughevents_
 
HcalLogicalMaplogicalMap_
 
double minerrorrate_
 
int minevents_
 
std::string name_
 
bool needLogicalMap_
 
bool Online_
 
std::string prefixME_
 
MonitorElementProblemCells
 
EtaPhiHistsProblemCellsByDepth
 
std::vector< std::string > problemnames_
 
std::string subdir_
 
bool testenabled_
 
bool validHtmlOutput_
 

Detailed Description

Definition at line 8 of file HcalDeadCellClient.h.

Constructor & Destructor Documentation

HcalDeadCellClient::HcalDeadCellClient ( )
inline

Constructors.

Definition at line 13 of file HcalDeadCellClient.h.

References HcalBaseDQClient::name_.

13 {name_="";};
HcalDeadCellClient::HcalDeadCellClient ( std::string  myname)

Definition at line 18 of file HcalDeadCellClient.cc.

References gather_cfg::cout, and HcalBaseDQClient::name_.

19 {
20  name_=myname;
21  std::cout <<"MY NAME = "<<name_.c_str()<<std::endl;
22 }
tuple cout
Definition: gather_cfg.py:121
HcalDeadCellClient::HcalDeadCellClient ( std::string  myname,
const edm::ParameterSet ps 
)

Definition at line 24 of file HcalDeadCellClient.cc.

References HcalBaseDQClient::badChannelStatusMask_, HcalBaseDQClient::cloneME_, HcalBaseDQClient::debug_, doProblemCellSetup_, HcalBaseDQClient::enableCleanup_, excludeHOring2_backup_, edm::ParameterSet::getUntrackedParameter(), HcalChannelStatus::HcalCellDead, HcalBaseDQClient::minerrorrate_, HcalBaseDQClient::minevents_, HcalBaseDQClient::name_, HcalBaseDQClient::Online_, HcalBaseDQClient::prefixME_, HcalBaseDQClient::ProblemCells, HcalBaseDQClient::ProblemCellsByDepth, AlCaHLTBitMon_QueryRunRegistry::string, HcalBaseDQClient::subdir_, and HcalBaseDQClient::validHtmlOutput_.

25 {
26  name_=myname;
27  enableCleanup_ = ps.getUntrackedParameter<bool>("enableCleanup",false);
28  debug_ = ps.getUntrackedParameter<int>("debug",0);
29  prefixME_ = ps.getUntrackedParameter<std::string>("subSystemFolder","Hcal/");
30  if (prefixME_.substr(prefixME_.size()-1,prefixME_.size())!="/")
31  prefixME_.append("/");
32  subdir_ = ps.getUntrackedParameter<std::string>("DeadCellFolder","DeadCellMonitor_Hcal/"); // DeadCellMonitor_Hcal
33  if (subdir_.size()>0 && subdir_.substr(subdir_.size()-1,subdir_.size())!="/")
34  subdir_.append("/");
35  subdir_=prefixME_+subdir_;
36 
37  validHtmlOutput_ = ps.getUntrackedParameter<bool>("DeadCell_validHtmlOutput",true);
38  cloneME_ = ps.getUntrackedParameter<bool>("cloneME", true);
39  badChannelStatusMask_ = ps.getUntrackedParameter<int>("DeadCell_BadChannelStatusMask",
40  ps.getUntrackedParameter<int>("BadChannelStatusMask",
41  (1<<HcalChannelStatus::HcalCellDead))); // identify channel status values to mask
42 
43  minerrorrate_ = ps.getUntrackedParameter<double>("DeadCell_minerrorrate",
44  ps.getUntrackedParameter<double>("minerrorrate",0.25));
45  minevents_ = ps.getUntrackedParameter<int>("DeadCell_minevents",
46  ps.getUntrackedParameter<int>("minevents",1000));
47 
48  excludeHOring2_backup_=ps.getUntrackedParameter<bool>("excludeHOring2_backup",false); // this is used only if excludeHOring2 value from Dead Cell task can't be read
49  Online_ = ps.getUntrackedParameter<bool>("online",false);
50 
52  ProblemCells=0;
53 
54  doProblemCellSetup_ = true;
55 
56 }
T getUntrackedParameter(std::string const &, T const &) const
MonitorElement * ProblemCells
EtaPhiHists * ProblemCellsByDepth
std::string subdir_
std::string prefixME_
HcalDeadCellClient::~HcalDeadCellClient ( )

Destructor.

Definition at line 436 of file HcalDeadCellClient.cc.

References HcalBaseDQClient::ProblemCellsByDepth.

437 {
439 }
EtaPhiHists * ProblemCellsByDepth

Member Function Documentation

void HcalDeadCellClient::analyze ( DQMStore::IBooker ib,
DQMStore::IGetter ig 
)
virtual

Reimplemented from HcalBaseDQClient.

Definition at line 58 of file HcalDeadCellClient.cc.

References HcalBaseDQClient::calculateProblems(), gather_cfg::cout, HcalBaseDQClient::debug_, doProblemCellSetup_, and setupProblemCells().

59 {
60  if (debug_>2) std::cout <<"\tHcalDeadCellClient::analyze()"<<std::endl;
62  calculateProblems(ib,ig);
63 }
void setupProblemCells(DQMStore::IBooker &, DQMStore::IGetter &)
virtual void calculateProblems(void)
tuple cout
Definition: gather_cfg.py:121
void HcalDeadCellClient::beginRun ( void  )
virtual

Reimplemented from HcalBaseDQClient.

Definition at line 300 of file HcalDeadCellClient.cc.

References HcalBaseDQClient::enoughevents_, HBpresent_, HEpresent_, HFpresent_, HOpresent_, and nevts_.

301 {
302  enoughevents_=false;
303  HBpresent_=-1;
304  HEpresent_=-1;
305  HOpresent_=-1;
306  HFpresent_=-1;
307 
308  nevts_=0;
309 }
void HcalDeadCellClient::calculateProblems ( DQMStore::IBooker ib,
DQMStore::IGetter ig 
)

Definition at line 65 of file HcalDeadCellClient.cc.

References funct::abs(), HcalBaseDQClient::badstatusmap, HcalObjRepresent::CalcIeta(), HcalBaseDQClient::cloneME_, gather_cfg::cout, HcalBaseDQClient::debug_, EtaPhiHists::depth, HcalBaseDQClient::enoughevents_, eta(), excludeHOring2_backup_, MonitorElement::Fill(), HcalObjRepresent::FillUnphysicalHEHFBins(), DQMStore::IGetter::get(), MonitorElement::getBinContent(), MonitorElement::getIntValue(), MonitorElement::getTH2F(), HBpresent_, HcalBarrel, HcalEmpty, HcalEndcap, HcalEtaPhiHistNames(), HcalForward, HcalOuter, HEpresent_, HFpresent_, HOpresent_, i, isHB(), isHE(), isHF(), isHO(), isSiPM(), min(), HcalBaseDQClient::minerrorrate_, HcalBaseDQClient::minevents_, HcalBaseDQClient::name(), phi, HcalBaseDQClient::prefixME_, HcalBaseDQClient::ProblemCells, HcalBaseDQClient::ProblemCellsByDepth, MonitorElement::Reset(), alignCSCRings::s, MonitorElement::setBinContent(), AlCaHLTBitMon_QueryRunRegistry::string, HcalBaseDQClient::subdir_, and ecaldqm::zside().

66 {
67 
68 
69  if (debug_>2) std::cout <<"\t\tHcalDeadCellClient::calculateProblems()"<<std::endl;
70 
71  MonitorElement* temp_present;
72 
73  temp_present=ig.get(subdir_+"ExcludeHOring2");
74  int excludeFromHOring2 = 0;
75  if (temp_present)
76  {
77  excludeFromHOring2 = temp_present->getIntValue();
78  if (debug_>2)
79  std::cout <<"Read 'excludeFromHOring2' from HcalMonitorTask output; value = "<<excludeFromHOring2<<std::endl;
80  }
81  else
82  {
83  excludeHOring2_backup_==true ? excludeFromHOring2=1 : excludeFromHOring2=0;
84  if (debug_>2)
85  std::cout <<"Could not read excludeFromHOring2 from HcalMonitorTasks; using value from cfg file: "<<excludeFromHOring2<<std::endl;
86  }
87 
88  // Don't fill histograms if nothing from Hcal is present
89  if (HBpresent_!=1)
90  {
91  temp_present=ig.get(prefixME_+"HcalInfo/HBpresent");
92  if (temp_present!=0)
93  HBpresent_=temp_present->getIntValue();
94  }
95  if (HEpresent_!=1)
96  {
97  temp_present=ig.get(prefixME_+"HcalInfo/HEpresent");
98  if (temp_present!=0)
99  HEpresent_=temp_present->getIntValue();
100  }
101  if (HOpresent_!=1)
102  {
103  temp_present=ig.get(prefixME_+"HcalInfo/HOpresent");
104  if (temp_present!=0)
105  HOpresent_=temp_present->getIntValue();
106  }
107  if (HFpresent_!=1)
108  {
109  temp_present=ig.get(prefixME_+"HcalInfo/HFpresent");
110  if (temp_present!=0)
111  HFpresent_=temp_present->getIntValue();
112  }
113  // Never saw any data from any Hcal FED; don't count as dead.
114  if (HBpresent_==-1 && HEpresent_==-1 && HOpresent_==-1 && HFpresent_==-1)
115  return;
116  double totalevents=0;
117  int etabins=0, phibins=0, zside=0;
118  double problemvalue=0;
119 
120  // Clear away old problems
121  if (ProblemCells!=0)
122  {
123  ProblemCells->Reset();
124  (ProblemCells->getTH2F())->SetMaximum(1.05);
125  (ProblemCells->getTH2F())->SetMinimum(0.);
126  }
127  for (unsigned int d=0;ProblemCellsByDepth!=0 && d<ProblemCellsByDepth->depth.size();++d)
128  {
129  if (ProblemCellsByDepth->depth[d]!=0)
130  {
131  ProblemCellsByDepth->depth[d]->Reset();
132  (ProblemCellsByDepth->depth[d]->getTH2F())->SetMaximum(1.05);
133  (ProblemCellsByDepth->depth[d]->getTH2F())->SetMinimum(0.);
134  }
135  }
136 
137  // Get histograms that are used in testing
138  TH2F* DigiPresentByDepth[4];
139  TH2F* RecentMissingDigisByDepth[4];
140  TH2F* RecHitsPresentByDepth[4];
141  TH2F* RecentMissingRecHitsByDepth[4];
142 
143  std::vector<std::string> name = HcalEtaPhiHistNames();
144 
145  MonitorElement* me;
146  for (int i=0;i<4;++i)
147  {
148  // Assume that histograms can't be found
149  DigiPresentByDepth[i]=0;
150  RecentMissingDigisByDepth[i]=0;
151  RecHitsPresentByDepth[i]=0;
152  RecentMissingRecHitsByDepth[i]=0;
153 
154  std::string s=subdir_+"dead_digi_never_present/"+name[i]+"Digi Present At Least Once";
155  me=ig.get(s.c_str());
156  if (me!=0) DigiPresentByDepth[i]=HcalUtilsClient::getHisto<TH2F*>(me, cloneME_, DigiPresentByDepth[i], debug_);
157 
158  s=subdir_+"dead_digi_often_missing/"+name[i]+"Dead Cells with No Digis";
159  me=ig.get(s.c_str());
160  if (me!=0) RecentMissingDigisByDepth[i]=HcalUtilsClient::getHisto<TH2F*>(me, cloneME_, RecentMissingDigisByDepth[i], debug_);
161 
162  s=subdir_+"dead_rechit_never_present/"+name[i]+"RecHit Above Threshold At Least Once";
163  me=ig.get(s.c_str());
164  if (me!=0) RecHitsPresentByDepth[i]=HcalUtilsClient::getHisto<TH2F*>(me, cloneME_, RecHitsPresentByDepth[i], debug_);
165 
166  s=subdir_+"dead_rechit_often_missing/"+name[i]+"RecHits Failing Energy Threshold Test";
167  me=ig.get(s.c_str());
168  if (me!=0)RecentMissingRecHitsByDepth[i]=HcalUtilsClient::getHisto<TH2F*>(me, cloneME_, RecentMissingRecHitsByDepth[i], debug_);
169 
170  }
171 
172  // Because we're clearing and re-forming the problem cell histogram here, we don't need to do any cute
173  // setting of the underflow bin to 0, and we can plot results as a raw rate between 0-1.
174 
175  for (unsigned int d=0;ProblemCellsByDepth!=0 && d<ProblemCellsByDepth->depth.size();++d)
176  {
177  if (ProblemCellsByDepth->depth[d]==0) continue;
178 
179  if (DigiPresentByDepth[d]==0) continue;
180  // Get number of entries from DigiPresent histogram
181  // (need to do this for offline DQM combinations of output)
182  totalevents=DigiPresentByDepth[d]->GetBinContent(0);
183  if (totalevents==0 || totalevents<minevents_) continue;
184  enoughevents_=true; // kind of a hack here
185  etabins=(ProblemCellsByDepth->depth[d]->getTH2F())->GetNbinsX();
186  phibins=(ProblemCellsByDepth->depth[d]->getTH2F())->GetNbinsY();
187  problemvalue=0;
188  for (int eta=0;eta<etabins;++eta)
189  {
190  int ieta=CalcIeta(eta,d+1);
191  if (ieta==-9999) continue;
192 
193  for (int phi=0;phi<phibins;++phi)
194  {
195  problemvalue=0;
196  // Don't count problems in HO ring 2 if the "excludeFromHOring2" bit is in use
197  if (isHO(eta,d+1) && excludeFromHOring2>0 && isSiPM(ieta,phi+1,d+1)==false && abs(ieta)>10)
198  continue;
199 
200  // Never-present histogram is a boolean, with underflow bin = 1 (for each instance)
201  // Offline DQM adds up never-present histograms from multiple outputs
202  // For now, we want offline DQM to show LS-based 'occupancies', rather than simple boolean on/off
203  // May change in the future?
204 
205  // If cell is never-present in all runs, then problemvalue = event
206  if (DigiPresentByDepth[d]!=0 && DigiPresentByDepth[d]->GetBinContent(eta+1,phi+1)==0)
207  problemvalue=totalevents;
208 
209  // Rec Hit presence test
210  else if (RecHitsPresentByDepth[d]!=0)
211  {
212  if (RecHitsPresentByDepth[d]->GetBinContent(eta+1,phi+1)==0)
213  problemvalue=totalevents;
214  else if (RecHitsPresentByDepth[d]->GetBinContent(eta+1,phi+1)>1)
215  RecHitsPresentByDepth[d]->SetBinContent(eta+1,phi+1,1);
216  }
217  else
218  {
219  if (RecentMissingDigisByDepth[d]!=0)
220  problemvalue+=RecentMissingDigisByDepth[d]->GetBinContent(eta+1,phi+1);
221  if (RecentMissingRecHitsByDepth[d]!=0)
222  problemvalue+=RecentMissingRecHitsByDepth[d]->GetBinContent(eta+1,phi+1);
223  }
224 
225  if (problemvalue==0) continue;
226 
227  problemvalue/=totalevents; // problem value is a rate; should be between 0 and 1
228  problemvalue = std::min(1.,problemvalue);
229 
230  zside=0;
231  if (isHF(eta,d+1)) // shift ieta by 1 for HF
232  ieta<0 ? zside = -1 : zside = 1;
233 
234  // For problem cells that exceed our allowed rate,
235  // set the values to -1 if the cells are already marked in the status database
236  if (problemvalue>minerrorrate_)
237  {
238  HcalSubdetector subdet=HcalEmpty;
239  if (isHB(eta,d+1))subdet=HcalBarrel;
240  else if (isHE(eta,d+1)) subdet=HcalEndcap;
241  else if (isHF(eta,d+1)) subdet=HcalForward;
242  else if (isHO(eta,d+1)) subdet=HcalOuter;
243  HcalDetId hcalid(subdet, ieta, phi+1, (int)(d+1));
244  if (badstatusmap.find(hcalid)!=badstatusmap.end())
245  problemvalue=999;
246  }
247  ProblemCellsByDepth->depth[d]->setBinContent(eta+1,phi+1,problemvalue);
248  if (ProblemCells!=0) ProblemCells->Fill(ieta+zside,phi+1,problemvalue);
249  } // loop on phi
250  } // loop on eta
251  } // loop on depth
252 
253  if (ProblemCells==0)
254  {
255  if (debug_>0) std::cout <<"<HcalDeadCellClient::analyze> ProblemCells histogram does not exist!"<<std::endl;
256  return;
257  }
258 
259  // Normalization of ProblemCell plot, in the case where there are errors in multiple depths
260  etabins=(ProblemCells->getTH2F())->GetNbinsX();
261  phibins=(ProblemCells->getTH2F())->GetNbinsY();
262  for (int eta=0;eta<etabins;++eta)
263  {
264  for (int phi=0;phi<phibins;++phi)
265  {
268  }
269  }
270 
273  return;
274 }
bool isHO(int etabin, int depth)
int i
Definition: DBlmapReader.cc:9
MonitorElement * ProblemCells
std::string name()
void setBinContent(int binx, double content)
set content of bin (1-D)
MonitorElement * get(const std::string &path)
Definition: DQMStore.cc:302
std::vector< std::string > HcalEtaPhiHistNames()
int zside(DetId const &)
bool isHE(int etabin, int depth)
T eta() const
void Fill(long long x)
bool isSiPM(int ieta, int iphi, int depth)
std::vector< MonitorElement * > depth
int CalcIeta(int subdet, int eta, int depth)
EtaPhiHists * ProblemCellsByDepth
HcalSubdetector
Definition: HcalAssistant.h:31
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
T min(T a, T b)
Definition: MathUtil.h:58
bool isHB(int etabin, int depth)
bool isHF(int etabin, int depth)
int64_t getIntValue(void) const
std::string subdir_
std::map< HcalDetId, unsigned int > badstatusmap
void FillUnphysicalHEHFBins(std::vector< TH2F > &hh)
double getBinContent(int binx) const
get content of bin (1-D)
std::string prefixME_
tuple cout
Definition: gather_cfg.py:121
TH2F * getTH2F(void) const
void Reset(void)
reset ME (ie. contents, errors, etc)
Definition: DDAxes.h:10
void HcalDeadCellClient::cleanup ( void  )
virtual

Reimplemented from HcalBaseDQClient.

Definition at line 314 of file HcalDeadCellClient.cc.

314 {}
void HcalDeadCellClient::endJob ( void  )
virtual

Reimplemented from HcalBaseDQClient.

Definition at line 276 of file HcalDeadCellClient.cc.

276 {}
bool HcalDeadCellClient::hasErrors_Temp ( void  )
virtual

Reimplemented from HcalBaseDQClient.

Definition at line 316 of file HcalDeadCellClient.cc.

References HcalObjRepresent::CalcIeta(), gather_cfg::cout, HcalBaseDQClient::debug_, EtaPhiHists::depth, HLT_25ns14e33_v1_cff::depth, MonitorElement::getTH2F(), HcalBaseDQClient::minerrorrate_, HcalBaseDQClient::ProblemCells, and HcalBaseDQClient::ProblemCellsByDepth.

317 {
318  if (!ProblemCells)
319  {
320  if (debug_>1) std::cout <<"<HcalDeadCellClient::hasErrors_Temp> ProblemCells histogram does not exist!"<<std::endl;
321  return false;
322  }
323  int problemcount=0;
324  int ieta=-9999;
325 
326  for (int depth=0;depth<4; ++depth)
327  {
328  int etabins = (ProblemCells->getTH2F())->GetNbinsX();
329  int phibins = (ProblemCells->getTH2F())->GetNbinsY();
330  for (int hist_eta=0;hist_eta<etabins;++hist_eta)
331  {
332  for (int hist_phi=0; hist_phi<phibins;++hist_phi)
333  {
334  ieta=CalcIeta(hist_eta,depth+1);
335  if (ieta==-9999) continue;
337  continue;
338  if (ProblemCellsByDepth->depth[depth]->getBinContent(hist_eta,hist_phi)>minerrorrate_)
339  ++problemcount;
340  } // for (int hist_phi=1;...)
341  } // for (int hist_eta=1;...)
342  } // for (int depth=0;...)
343 
344  if (problemcount>0) return true;
345  return false;
346 }
MonitorElement * ProblemCells
std::vector< MonitorElement * > depth
int CalcIeta(int subdet, int eta, int depth)
EtaPhiHists * ProblemCellsByDepth
tuple cout
Definition: gather_cfg.py:121
TH2F * getTH2F(void) const
bool HcalDeadCellClient::hasOther_Temp ( void  )
virtual

Reimplemented from HcalBaseDQClient.

Definition at line 349 of file HcalDeadCellClient.cc.

349 {return false;}
bool HcalDeadCellClient::hasWarnings_Temp ( void  )
virtual

Reimplemented from HcalBaseDQClient.

Definition at line 348 of file HcalDeadCellClient.cc.

348 {return false;}
void HcalDeadCellClient::setup ( void  )
virtual

Reimplemented from HcalBaseDQClient.

Definition at line 313 of file HcalDeadCellClient.cc.

313 {}
void HcalDeadCellClient::setupProblemCells ( DQMStore::IBooker ib,
DQMStore::IGetter ig 
)
private

Definition at line 278 of file HcalDeadCellClient.cc.

References DQMStore::IBooker::book2D(), gather_cfg::cout, HcalBaseDQClient::debug_, EtaPhiHists::depth, doProblemCellSetup_, MonitorElement::getName(), i, HcalBaseDQClient::ProblemCells, HcalBaseDQClient::ProblemCellsByDepth, HcalBaseDQClient::problemnames_, DQMStore::IBooker::setCurrentFolder(), EtaPhiHists::setup(), and HcalBaseDQClient::subdir_.

Referenced by analyze().

279 {
280 
282  problemnames_.clear();
283  ProblemCells=ib.book2D(" ProblemDeadCells",
284  " Problem Dead Cell Rate for all HCAL;ieta;iphi",
285  85,-42.5,42.5,
286  72,0.5,72.5);
287  problemnames_.push_back(ProblemCells->getName());
288  if (debug_>1)
289  std::cout << "Tried to create ProblemCells Monitor Element in directory "<<subdir_<<" \t Failed? "<<(ProblemCells==0)<<std::endl;
290  ib.setCurrentFolder(subdir_+"problem_deadcells");
292  ProblemCellsByDepth->setup(ib," Problem Dead Cell Rate");
293  for (unsigned int i=0; i<ProblemCellsByDepth->depth.size();++i)
294  problemnames_.push_back(ProblemCellsByDepth->depth[i]->getName());
295 
296  doProblemCellSetup_ = false;
297 
298 }
const std::string & getName(void) const
get name of ME
int i
Definition: DBlmapReader.cc:9
MonitorElement * ProblemCells
std::vector< MonitorElement * > depth
std::vector< std::string > problemnames_
EtaPhiHists * ProblemCellsByDepth
void setup(DQMStore::IBooker &m_dbe, std::string Name, std::string Units="")
void setCurrentFolder(const std::string &fullpath)
Definition: DQMStore.cc:274
MonitorElement * book2D(Args &&...args)
Definition: DQMStore.h:133
std::string subdir_
tuple cout
Definition: gather_cfg.py:121
bool HcalDeadCellClient::test_enabled ( void  )
virtual

Reimplemented from HcalBaseDQClient.

Definition at line 350 of file HcalDeadCellClient.cc.

350 {return true;}
void HcalDeadCellClient::updateChannelStatus ( std::map< HcalDetId, unsigned int > &  myqual)
virtual

Reimplemented from HcalBaseDQClient.

Definition at line 354 of file HcalDeadCellClient.cc.

References HcalObjRepresent::CalcIeta(), gather_cfg::cout, HcalBaseDQClient::debug_, EtaPhiHists::depth, HcalBaseDQClient::enoughevents_, HcalBarrel, HcalChannelStatus::HcalCellDead, HcalEndcap, HcalForward, HcalOuter, isHB(), isHE(), isHF(), HcalBaseDQClient::minerrorrate_, HcalBaseDQClient::ProblemCellsByDepth, and validDetId().

355 {
356  // This gets called by HcalMonitorClient
357 
358  if (enoughevents_==false) return; // not enough events to make judgment; don't create new status file
359 
360  float binval;
361  int ieta=0;
362  int iphi=0;
363  int etabins=0;
364  int phibins=0;
365 
366  int subdet=0;
367  if (debug_>1)
368  {
369  std::cout <<"<HcalDeadCellClient> Summary of Dead Cells in Run: "<<std::endl;
370  std::cout <<"(Error rate must be >= "<<minerrorrate_*100.<<"% )"<<std::endl;
371  }
372  for (int d=0;d<4;++d)
373  {
374  etabins=(ProblemCellsByDepth->depth[d]->getTH2F())->GetNbinsX();
375  phibins=(ProblemCellsByDepth->depth[d]->getTH2F())->GetNbinsY();
376  for (int hist_eta=0;hist_eta<etabins;++hist_eta)
377  {
378  ieta=CalcIeta(hist_eta,d+1);
379  if (ieta==-9999) continue;
380  for (int hist_phi=0;hist_phi<phibins;++hist_phi)
381  {
382  iphi=hist_phi+1;
383 
384  // ProblemCells have already been normalized
385  binval=ProblemCellsByDepth->depth[d]->getBinContent(hist_eta+1,hist_phi+1);
386 
387  // Set subdetector labels for output
388  if (d<2)
389  {
390  if (isHB(hist_eta,d+1))
391  subdet=HcalBarrel;
392  else if (isHE(hist_eta,d+1))
393  subdet=HcalEndcap;
394  else if (isHF(hist_eta,d+1))
395  subdet=HcalForward;
396  }
397  else if (d==2)
398  subdet=HcalEndcap;
399  else if (d==3)
400  subdet=HcalOuter;
401  // Set correct depth label
402 
403  HcalDetId myid((HcalSubdetector)(subdet), ieta, iphi, d+1);
404  // Need this to keep from flagging non-existent HE/HF cells
405  if (!validDetId((HcalSubdetector)(subdet), ieta, iphi, d+1))
406  continue;
407 
408  int deadcell=0;
409  if (binval>minerrorrate_)
410  deadcell=1;
411  if (deadcell==1 && debug_>0)
412  std::cout <<"Dead Cell : subdetector = "<<subdet<<" (eta,phi,depth) = ("<<ieta<<", "<<iphi<<", "<<d+1<<"): "<<binval*100.<<"%"<<std::endl;
413 
414  // DetID not found in quality list; add it.
415  if (myqual.find(myid)==myqual.end())
416  myqual[myid]=(deadcell<<HcalChannelStatus::HcalCellDead); // deadcell shifted to bit 6
417  else
418  {
419  int mask=(1<<HcalChannelStatus::HcalCellDead);
420  // dead cell found; 'or' the dead cell mask with existing ID
421  if (deadcell==1)
422  myqual[myid] |=mask;
423  // cell is not found, 'and' the inverse of the mask with the existing ID.
424  // Does this work correctly? I think so, but need to verify.
425  // Also, do we want to allow the client to turn off dead cell masks, or only add them?
426  else
427  myqual[myid] &=~mask;
428  }
429  } // for (int hist_phi=1;hist_phi<=phibins;++hist_phi)
430  } // for (int hist_eta=1;hist_eta<=etabins;++hist_eta)
431  } // for (int d=0;d<4;++d)
432 
433 
434 } //void HcalDeadCellClient::updateChannelStatus
bool isHE(int etabin, int depth)
std::vector< MonitorElement * > depth
int CalcIeta(int subdet, int eta, int depth)
EtaPhiHists * ProblemCellsByDepth
HcalSubdetector
Definition: HcalAssistant.h:31
bool isHB(int etabin, int depth)
bool isHF(int etabin, int depth)
tuple cout
Definition: gather_cfg.py:121
bool validDetId(HcalSubdetector sd, int ies, int ip, int dp)

Member Data Documentation

bool HcalDeadCellClient::doProblemCellSetup_
private

Definition at line 41 of file HcalDeadCellClient.h.

Referenced by analyze(), HcalDeadCellClient(), and setupProblemCells().

bool HcalDeadCellClient::excludeHOring2_backup_
private

Definition at line 38 of file HcalDeadCellClient.h.

Referenced by calculateProblems(), and HcalDeadCellClient().

int HcalDeadCellClient::HBpresent_
private

Definition at line 37 of file HcalDeadCellClient.h.

Referenced by beginRun(), and calculateProblems().

int HcalDeadCellClient::HEpresent_
private

Definition at line 37 of file HcalDeadCellClient.h.

Referenced by beginRun(), and calculateProblems().

int HcalDeadCellClient::HFpresent_
private

Definition at line 37 of file HcalDeadCellClient.h.

Referenced by beginRun(), and calculateProblems().

int HcalDeadCellClient::HOpresent_
private

Definition at line 37 of file HcalDeadCellClient.h.

Referenced by beginRun(), and calculateProblems().

int HcalDeadCellClient::nevts_
private

Definition at line 35 of file HcalDeadCellClient.h.

Referenced by beginRun().