CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
HcalCoarsePedestalClient.cc
Go to the documentation of this file.
4 
8 
9 #include <iostream>
10 
11 /*
12  * \file HcalCoarsePedestalClient.cc
13  *
14  * $Date: 2012/06/18 08:23:10 $
15  * $Revision: 1.6 $
16  * \author J. Temple
17  * \brief CoarsePedestalClient 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>("CoarsePedestalFolder","CoarsePedestalMonitor_Hcal/"); // CoarsePedestalMonitor_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>("CoarsePedestal_validHtmlOutput",true);
39  cloneME_ = ps.getUntrackedParameter<bool>("cloneME", true);
40  badChannelStatusMask_ = ps.getUntrackedParameter<int>("CoarsePedestal_BadChannelStatusMask",
41  ps.getUntrackedParameter<int>("BadChannelStatusMask",
42  ((1<<HcalChannelStatus::HcalCellDead)|(1<<HcalChannelStatus::HcalCellHot)))); // identify channel status values to mask
43 
44  minerrorrate_ = ps.getUntrackedParameter<double>("CoarsePedestal_minerrorrate",
45  ps.getUntrackedParameter<double>("minerrorrate",0.05));
46 
47 
48  // minevents_ canbe overwritten by monitor task value
49  minevents_ = ps.getUntrackedParameter<int>("CoarsePedestal_minevents",
50  ps.getUntrackedParameter<int>("minevents",1));
51 
53 
54 }
55 
57 {
58  if (debug_>2) std::cout <<"\tHcalCoarsePedestalClient::analyze()"<<std::endl;
60 } // void HcalCoarsePedestalClient::analyze()
61 
63 {
64  if (debug_>2) std::cout <<"\t\tHcalCoarsePedestalClient::calculateProblems()"<<std::endl;
65  if(!dqmStore_) return;
66  //int totalevents=0; // events checked on a channel-by-channel basis
67  int etabins=0, phibins=0, zside=0;
68  double problemvalue=0;
69 
71 
72  // Clear away old problems
73  if (ProblemCells!=0)
74  {
76  (ProblemCells->getTH2F())->SetMaximum(1.05);
77  (ProblemCells->getTH2F())->SetMinimum(0.);
78  (ProblemCells->getTH2F())->SetOption("colz");
79  }
80  for (unsigned int d=0;ProblemCellsByDepth!=0 && d<ProblemCellsByDepth->depth.size();++d)
81  {
82  if (ProblemCellsByDepth->depth[d]!=0)
83  {
84  ProblemCellsByDepth->depth[d]->Reset();
85  (ProblemCellsByDepth->depth[d]->getTH2F())->SetMaximum(1.05);
86  (ProblemCellsByDepth->depth[d]->getTH2F())->SetMinimum(0.);
87  (ProblemCellsByDepth->depth[d]->getTH2F())->SetOption("colz");
88  }
89  }
90 
91  // Get histograms that are used in testing
92  TH2F* CoarsePedestalsSumByDepth[4];
93  TH2F* CoarsePedestalsOccByDepth[4];
94 
95  std::vector<std::string> name = HcalEtaPhiHistNames();
96  bool gothistos=true;
97 
98  MonitorElement* me;
99  for (int i=0;i<4;++i)
100  {
101  std::string s=subdir_+"CoarsePedestalSumPlots/"+name[i]+"Coarse Pedestal Summed Map";
102  me=dqmStore_->get(s.c_str());
103  if (me==0)
104  {
105  gothistos=false;
106  if (debug_>0) std::cout <<"<HcalCoarsePedestalClient::calculateProblems> Could not get histogram with name "<<s<<std::endl;
107  }
108  CoarsePedestalsSumByDepth[i]=HcalUtilsClient::getHisto<TH2F*>(me, cloneME_, CoarsePedestalsSumByDepth[i], debug_);
109 
110  s=subdir_+"CoarsePedestalSumPlots/"+name[i]+"Coarse Pedestal Occupancy Map";
111  me=dqmStore_->get(s.c_str());
112  if (me==0)
113  {
114  gothistos=false;
115  if (debug_>0) std::cout <<"<HcalCoarsePedestalClient::calculateProblems> Could not get histogram with name "<<s<<std::endl;
116  }
117  CoarsePedestalsOccByDepth[i]=HcalUtilsClient::getHisto<TH2F*>(me, cloneME_, CoarsePedestalsOccByDepth[i], debug_);
118 
119  } // for (int i=0;i<4;++i)
120 
121  if (gothistos==false)
122  {
123  if (debug_>0) std::cout <<"<HcalCoarsePedestalClient::calculateProblems> Unable to get all necessary histograms to evaluate problem rate"<<std::endl;
124  return;
125  }
126 
127  enoughevents_=true; // Always set this to true, so that pedestal monitoring doesn't hold up
128 
129  int numevents=0;
130  for (unsigned int d=0;ProblemCellsByDepth!=0 && d<ProblemCellsByDepth->depth.size();++d)
131  {
132  if (ProblemCellsByDepth->depth[d]==0) continue;
133  if (CoarsePedestalsSumByDepth[d]==0 ||
134  CoarsePedestalsOccByDepth[d]==0 ||
135  DatabasePedestalsADCByDepth[d]==0) continue;
136 
137  if (CoarsePedestalsByDepth->depth[d]!=0)
138  CoarsePedestalsByDepth->depth[d]->Reset();
139 
140  etabins=(ProblemCellsByDepth->depth[d]->getTH2F())->GetNbinsX();
141  phibins=(ProblemCellsByDepth->depth[d]->getTH2F())->GetNbinsY();
142  for (int eta=0;eta<etabins;++eta)
143  {
144  int ieta=CalcIeta(eta,d+1);
145  if (ieta==-9999) continue;
146  for (int phi=0;phi<phibins;++phi)
147  {
148  if (abs(ieta)>20 && (phi+1)%2==0)
149  continue;
150  if (abs(ieta)>39 && (phi+1)%4!=3)
151  continue;
152  numevents=(int)CoarsePedestalsOccByDepth[d]->GetBinContent(eta+1,phi+1);
153  if (numevents==0 || numevents<minevents_)
154  {
155  if (debug_>1)
156  std::cout <<"NOT ENOUGH EVENTS for channel ("<<ieta<<", "<<phi+1<<", "<<d+1<<") numevents = "<<numevents<<" minevents = "<<minevents_<<std::endl;
157  continue; // insufficient pedestal information available for this channel; continue on?
158  }
159 
160  problemvalue=1.*CoarsePedestalsSumByDepth[d]->GetBinContent(eta+1,phi+1)/numevents;
161  CoarsePedestalsByDepth->depth[d]->setBinContent(eta+1,phi+1,problemvalue);
162  problemvalue=(problemvalue-DatabasePedestalsADCByDepth[d]->GetBinContent(eta+1,phi+1));
163  CoarsePedDiff->Fill(problemvalue);
164  problemvalue=fabs(problemvalue);
165  // Pedestal status is cumulative (DetDiag pedestals perform resets after each calibration cycle, and save each output)
166  // Either a channels pedestal is 'bad' (outside of allowed range) or 'good' (in range)
167  problemvalue>ADCDiffThresh_ ? problemvalue=1 : problemvalue=0;
168  if (debug_>0 && problemvalue==1)
169  std::cout <<"<HcalCoarsePedestalClient> Problem found for channel ("<<ieta<<", "<<phi+1<<", "<<d+1<<")"<<std::endl;
170  zside=0;
171  if (isHF(eta,d+1)) // shift ieta by 1 for HF
172  ieta<0 ? zside = -1 : zside = 1;
173  // For problem cells that exceed our allowed rate,
174  // set the values to -1 if the cells are already marked in the status database
175  if (problemvalue>minerrorrate_)
176  {
177  HcalSubdetector subdet=HcalEmpty;
178  if (isHB(eta,d+1))subdet=HcalBarrel;
179  else if (isHE(eta,d+1)) subdet=HcalEndcap;
180  else if (isHF(eta,d+1)) subdet=HcalForward;
181  else if (isHO(eta,d+1)) subdet=HcalOuter;
182  HcalDetId hcalid(subdet, ieta, phi+1, (int)(d+1));
183  if (badstatusmap.find(hcalid)!=badstatusmap.end())
184  problemvalue=999;
185  }
186  ProblemCellsByDepth->depth[d]->setBinContent(eta+1,phi+1,problemvalue);
187  if (ProblemCells!=0) ProblemCells->Fill(ieta+zside,phi+1,problemvalue);
188  } // loop on phi
189  } // loop on eta
190  } // loop on depth
191 
192  if (ProblemCells==0)
193  {
194  if (debug_>0) std::cout <<"<HcalCoarsePedestalClient::analyze> ProblemCells histogram does not exist!"<<std::endl;
195  return;
196  }
197 
198  // Normalization of ProblemCell plot, in the case where there are errors in multiple depths
199  etabins=(ProblemCells->getTH2F())->GetNbinsX();
200  phibins=(ProblemCells->getTH2F())->GetNbinsY();
201  for (int eta=0;eta<etabins;++eta)
202  {
203  for (int phi=0;phi<phibins;++phi)
204  {
207  }
208  }
209 
213  return;
214 }
215 
216 
218 {
220  if (debug_>0)
221  {
222  std::cout <<"<HcalCoarsePedestalClient::beginJob()> Displaying dqmStore directory structure:"<<std::endl;
224  }
225 }
226 
228 
230 {
231  enoughevents_=false;
232  if (!dqmStore_)
233  {
234  if (debug_>0) std::cout <<"<HcalCoarsePedestalClient::beginRun> dqmStore does not exist!"<<std::endl;
235  return;
236  }
239  CoarsePedestalsByDepth->setup(dqmStore_," Coarse Pedestal Map");
240 
241  CoarsePedDiff=dqmStore_->book1D("PedRefDiff","(Pedestal-Reference)",200,-10,10);
242 
243  problemnames_.clear();
244  ProblemCells=dqmStore_->book2D(" ProblemCoarsePedestals",
245  " Problem Coarse Pedestal Rate for all HCAL;ieta;iphi",
246  85,-42.5,42.5,
247  72,0.5,72.5);
248  problemnames_.push_back(ProblemCells->getName());
249  if (debug_>1)
250  std::cout << "Tried to create ProblemCells Monitor Element in directory "<<subdir_<<" \t Failed? "<<(ProblemCells==0)<<std::endl;
251  dqmStore_->setCurrentFolder(subdir_+"problem_coarsepedestals");
253  ProblemCellsByDepth->setup(dqmStore_," Problem Coarse Pedestal Rate");
254  for (unsigned int i=0; i<ProblemCellsByDepth->depth.size();++i)
255  problemnames_.push_back(ProblemCellsByDepth->depth[i]->getName());
256  nevts_=0;
257 
258  std::vector<std::string> name = HcalEtaPhiHistNames();
259  MonitorElement* me;
260  for (int i=0;i<4;++i)
261  {
262  std::string s=prefixME_+"HcalInfo/PedestalsFromCondDB/"+name[i]+"ADC Pedestals From Conditions DB";
263  me=dqmStore_->get(s.c_str());
264  if (me==0)
265  {
266  if (debug_>0) std::cout <<"<HcalCoarsePedestalClient::beginRun> Could not get histogram with name "<<s<<std::endl;
267  }
268  DatabasePedestalsADCByDepth[i]=HcalUtilsClient::getHisto<TH2F*>(me, cloneME_, DatabasePedestalsADCByDepth[i], debug_);
269  }
270  std::string s=subdir_+"CoarsePedestal_parameters/ADCdiff_Problem_Threshold";
271  me=dqmStore_->get(s.c_str());
272  if (me==0)
273  {
274  if (debug_>0)
275  std::cout <<"<HcalCoarsePedestalClient::beginRun> Could not get value with name "<<s<<std::endl;
276  }
277  else
279  s=subdir_+"CoarsePedestal_parameters/minEventsNeededForPedestalCalculation";
280 
281  me=dqmStore_->get(s.c_str());
282  int temp = 0;
283  if (me==0)
284  {
285  if (debug_>0)
286  {
287  std::cout <<"<HcalCoarsePedestalClient::beginRun> Could not get value with name "<<s<<"\n\t Continuing on using default 'minevents' value of "<<minevents_<<std::endl;
288  }
289  }
290  else
291  temp=me->getIntValue();
292  if (temp>minevents_)
293  {
294  if (debug_>0)
295  std::cout <<"<HcalCoarsePedestalClient::beginRun> Specified client 'minevents' value of "<<minevents_<<" is less than minimum task 'minevents' value of "<<temp<<"\n\t Setting client 'minevents' to "<<temp<<std::endl;
297  }
298 } // void HcalCoarsePedestalClient::beginRun()
299 
301 
304 
306 {
307  if (!ProblemCells)
308  {
309  if (debug_>1) std::cout <<"<HcalCoarsePedestalClient::hasErrors_Temp> ProblemCells histogram does not exist!"<<std::endl;
310  return false;
311  }
312  int problemcount=0;
313  int ieta=-9999;
314 
315  for (int depth=0;depth<4; ++depth)
316  {
317  int etabins = (ProblemCells->getTH2F())->GetNbinsX();
318  int phibins = (ProblemCells->getTH2F())->GetNbinsY();
319  for (int hist_eta=0;hist_eta<etabins;++hist_eta)
320  {
321  for (int hist_phi=0; hist_phi<phibins;++hist_phi)
322  {
323  ieta=CalcIeta(hist_eta,depth+1);
324  if (ieta==-9999) continue;
325  if (ProblemCellsByDepth->depth[depth]==0)
326  continue;
327  if (ProblemCellsByDepth->depth[depth]->getBinContent(hist_eta,hist_phi)>minerrorrate_)
328  ++problemcount;
329 
330  } // for (int hist_phi=1;...)
331  } // for (int hist_eta=1;...)
332  } // for (int depth=0;...)
333 
334  if (problemcount>0) return true;
335  return false;
336 }
337 
341 
342 
343 void HcalCoarsePedestalClient::updateChannelStatus(std::map<HcalDetId, unsigned int>& myqual)
344 {
345  // client does not alter channel status yet;
346  // look at dead cell or hot cell clients for example code
347 } //void HcalCoarsePedestalClient::updateChannelStatus
348 
350 {}
bool isHO(int etabin, int depth)
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)
MonitorElement * book1D(const char *name, const char *title, int nchX, double lowX, double highX)
Book 1D histogram.
Definition: DQMStore.cc:717
std::vector< std::string > HcalEtaPhiHistNames()
void updateChannelStatus(std::map< HcalDetId, unsigned int > &myqual)
void setup(DQMStore *&m_dbe, std::string Name, std::string Units="")
#define abs(x)
Definition: mlp_lapack.h:159
bool isHE(int etabin, int depth)
T eta() const
void Fill(long long x)
std::vector< MonitorElement * > depth
int CalcIeta(int subdet, int eta, int depth)
std::vector< std::string > problemnames_
EtaPhiHists * ProblemCellsByDepth
double getFloatValue(void) const
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:1468
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
void showDirStructure(void) const
Definition: DQMStore.cc:2761
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:845
void Reset(void)
reset ME (ie. contents, errors, etc)
DQMStore * dqmStore_
void setCurrentFolder(const std::string &fullpath)
Definition: DQMStore.cc:429
Definition: DDAxes.h:10