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 Attributes
HcalCoarsePedestalClient Class Reference

#include <HcalCoarsePedestalClient.h>

Inheritance diagram for HcalCoarsePedestalClient:
HcalBaseDQClient

Public Member Functions

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

Private Attributes

double ADCDiffThresh_
 
MonitorElementCoarsePedDiff
 
EtaPhiHistsCoarsePedestalsByDepth
 
TH2F * DatabasePedestalsADCByDepth [4]
 
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_
 
DQMStoredqmStore_
 
bool enableCleanup_
 
bool enoughevents_
 
double minerrorrate_
 
int minevents_
 
std::string name_
 
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 HcalCoarsePedestalClient.h.

Constructor & Destructor Documentation

HcalCoarsePedestalClient::HcalCoarsePedestalClient ( )
inline

Constructors.

Definition at line 13 of file HcalCoarsePedestalClient.h.

References HcalBaseDQClient::name_.

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

Definition at line 20 of file HcalCoarsePedestalClient.cc.

References HcalBaseDQClient::name_.

21 {
22  name_=myname;
23 }
HcalCoarsePedestalClient::HcalCoarsePedestalClient ( std::string  myname,
const edm::ParameterSet ps 
)

Definition at line 25 of file HcalCoarsePedestalClient.cc.

References HcalBaseDQClient::badChannelStatusMask_, HcalBaseDQClient::cloneME_, HcalBaseDQClient::debug_, HcalBaseDQClient::enableCleanup_, edm::ParameterSet::getUntrackedParameter(), HcalChannelStatus::HcalCellDead, HcalChannelStatus::HcalCellHot, HcalBaseDQClient::minerrorrate_, HcalBaseDQClient::minevents_, HcalBaseDQClient::name_, HcalBaseDQClient::prefixME_, HcalBaseDQClient::ProblemCellsByDepth, HcalBaseDQClient::subdir_, and HcalBaseDQClient::validHtmlOutput_.

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 }
T getUntrackedParameter(std::string const &, T const &) const
EtaPhiHists * ProblemCellsByDepth
std::string subdir_
std::string prefixME_
HcalCoarsePedestalClient::~HcalCoarsePedestalClient ( )

Destructor.

Definition at line 349 of file HcalCoarsePedestalClient.cc.

350 {}

Member Function Documentation

void HcalCoarsePedestalClient::analyze ( void  )
virtual

Reimplemented from HcalBaseDQClient.

Definition at line 56 of file HcalCoarsePedestalClient.cc.

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

Referenced by endRun().

57 {
58  if (debug_>2) std::cout <<"\tHcalCoarsePedestalClient::analyze()"<<std::endl;
60 } // void HcalCoarsePedestalClient::analyze()
tuple cout
Definition: gather_cfg.py:121
void HcalCoarsePedestalClient::beginJob ( void  )
virtual

Reimplemented from HcalBaseDQClient.

Definition at line 217 of file HcalCoarsePedestalClient.cc.

References gather_cfg::cout, HcalBaseDQClient::debug_, HcalBaseDQClient::dqmStore_, cppFunctionSkipper::operator, and DQMStore::showDirStructure().

218 {
220  if (debug_>0)
221  {
222  std::cout <<"<HcalCoarsePedestalClient::beginJob()> Displaying dqmStore directory structure:"<<std::endl;
224  }
225 }
tuple cout
Definition: gather_cfg.py:121
void showDirStructure(void) const
Definition: DQMStore.cc:2761
DQMStore * dqmStore_
void HcalCoarsePedestalClient::beginRun ( void  )
virtual

Reimplemented from HcalBaseDQClient.

Definition at line 229 of file HcalCoarsePedestalClient.cc.

References ADCDiffThresh_, DQMStore::book1D(), DQMStore::book2D(), HcalBaseDQClient::cloneME_, CoarsePedDiff, CoarsePedestalsByDepth, gather_cfg::cout, DatabasePedestalsADCByDepth, HcalBaseDQClient::debug_, EtaPhiHists::depth, HcalBaseDQClient::dqmStore_, HcalBaseDQClient::enoughevents_, DQMStore::get(), MonitorElement::getFloatValue(), MonitorElement::getIntValue(), MonitorElement::getName(), HcalEtaPhiHistNames(), i, HcalBaseDQClient::minevents_, HcalBaseDQClient::name(), nevts_, HcalBaseDQClient::prefixME_, HcalBaseDQClient::ProblemCells, HcalBaseDQClient::ProblemCellsByDepth, HcalBaseDQClient::problemnames_, alignCSCRings::s, DQMStore::setCurrentFolder(), EtaPhiHists::setup(), HcalBaseDQClient::subdir_, and groupFilesInBlocks::temp.

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()
const std::string & getName(void) const
get name of ME
int i
Definition: DBlmapReader.cc:9
MonitorElement * ProblemCells
std::string name()
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 setup(DQMStore *&m_dbe, std::string Name, std::string Units="")
std::vector< MonitorElement * > depth
std::vector< std::string > problemnames_
EtaPhiHists * ProblemCellsByDepth
double getFloatValue(void) const
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
int64_t getIntValue(void) const
std::string subdir_
std::string prefixME_
tuple cout
Definition: gather_cfg.py:121
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
DQMStore * dqmStore_
void setCurrentFolder(const std::string &fullpath)
Definition: DQMStore.cc:429
void HcalCoarsePedestalClient::calculateProblems ( void  )
virtual

Reimplemented from HcalBaseDQClient.

Definition at line 62 of file HcalCoarsePedestalClient.cc.

References abs, ADCDiffThresh_, HcalBaseDQClient::badstatusmap, HcalObjRepresent::CalcIeta(), HcalBaseDQClient::cloneME_, CoarsePedDiff, CoarsePedestalsByDepth, gather_cfg::cout, DatabasePedestalsADCByDepth, HcalBaseDQClient::debug_, EtaPhiHists::depth, HcalBaseDQClient::dqmStore_, HcalBaseDQClient::enoughevents_, eta(), MonitorElement::Fill(), HcalObjRepresent::FillUnphysicalHEHFBins(), DQMStore::get(), MonitorElement::getBinContent(), MonitorElement::getTH2F(), HcalBarrel, HcalEmpty, HcalEndcap, HcalEtaPhiHistNames(), HcalForward, HcalOuter, i, isHB(), isHE(), isHF(), isHO(), HcalBaseDQClient::minerrorrate_, HcalBaseDQClient::minevents_, HcalBaseDQClient::name(), phi, HcalBaseDQClient::ProblemCells, HcalBaseDQClient::ProblemCellsByDepth, MonitorElement::Reset(), alignCSCRings::s, MonitorElement::setBinContent(), and HcalBaseDQClient::subdir_.

Referenced by analyze().

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 }
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)
std::vector< std::string > HcalEtaPhiHistNames()
#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)
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:1468
bool isHB(int etabin, int depth)
bool isHF(int etabin, int depth)
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)
tuple cout
Definition: gather_cfg.py:121
TH2F * getTH2F(void) const
void Reset(void)
reset ME (ie. contents, errors, etc)
DQMStore * dqmStore_
Definition: DDAxes.h:10
void HcalCoarsePedestalClient::cleanup ( void  )
virtual

Reimplemented from HcalBaseDQClient.

Definition at line 303 of file HcalCoarsePedestalClient.cc.

303 {}
void HcalCoarsePedestalClient::endJob ( void  )
virtual

Reimplemented from HcalBaseDQClient.

Definition at line 227 of file HcalCoarsePedestalClient.cc.

227 {}
void HcalCoarsePedestalClient::endRun ( void  )
virtual

Reimplemented from HcalBaseDQClient.

Definition at line 300 of file HcalCoarsePedestalClient.cc.

References analyze().

bool HcalCoarsePedestalClient::hasErrors_Temp ( void  )
virtual

Reimplemented from HcalBaseDQClient.

Definition at line 305 of file HcalCoarsePedestalClient.cc.

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

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 }
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 HcalCoarsePedestalClient::hasOther_Temp ( void  )
virtual

Reimplemented from HcalBaseDQClient.

Definition at line 339 of file HcalCoarsePedestalClient.cc.

339 {return false;}
bool HcalCoarsePedestalClient::hasWarnings_Temp ( void  )
virtual

Reimplemented from HcalBaseDQClient.

Definition at line 338 of file HcalCoarsePedestalClient.cc.

338 {return false;}
void HcalCoarsePedestalClient::setup ( void  )
virtual

Reimplemented from HcalBaseDQClient.

Definition at line 302 of file HcalCoarsePedestalClient.cc.

302 {}
bool HcalCoarsePedestalClient::test_enabled ( void  )
virtual

Reimplemented from HcalBaseDQClient.

Definition at line 340 of file HcalCoarsePedestalClient.cc.

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

Reimplemented from HcalBaseDQClient.

Definition at line 343 of file HcalCoarsePedestalClient.cc.

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

Member Data Documentation

double HcalCoarsePedestalClient::ADCDiffThresh_
private

Definition at line 38 of file HcalCoarsePedestalClient.h.

Referenced by beginRun(), and calculateProblems().

MonitorElement* HcalCoarsePedestalClient::CoarsePedDiff
private

Definition at line 41 of file HcalCoarsePedestalClient.h.

Referenced by beginRun(), and calculateProblems().

EtaPhiHists* HcalCoarsePedestalClient::CoarsePedestalsByDepth
private

Definition at line 40 of file HcalCoarsePedestalClient.h.

Referenced by beginRun(), and calculateProblems().

TH2F* HcalCoarsePedestalClient::DatabasePedestalsADCByDepth[4]
private

Definition at line 39 of file HcalCoarsePedestalClient.h.

Referenced by beginRun(), and calculateProblems().

int HcalCoarsePedestalClient::nevts_
private

Definition at line 36 of file HcalCoarsePedestalClient.h.

Referenced by beginRun().