CMS 3D CMS Logo

ECALpedestalPCLHarvester.cc
Go to the documentation of this file.
1 
2 // system include files
3 #include <memory>
4 
5 // user include files
15 #include <iostream>
16 #include <string>
17 
19  : currentPedestals_(nullptr), channelStatus_(nullptr) {
20  chStatusToExclude_ = StringToEnumValue<EcalChannelStatusCode::Code>(
21  ps.getParameter<std::vector<std::string> >("ChannelStatusToExclude"));
22  minEntries_ = ps.getParameter<int>("MinEntries");
23  checkAnomalies_ = ps.getParameter<bool>("checkAnomalies");
24  nSigma_ = ps.getParameter<double>("nSigma");
25  thresholdAnomalies_ = ps.getParameter<double>("thresholdAnomalies");
26  dqmDir_ = ps.getParameter<std::string>("dqmDir");
27  labelG6G1_ = ps.getParameter<std::string>("labelG6G1");
28  threshDiffEB_ = ps.getParameter<double>("threshDiffEB");
29  threshDiffEE_ = ps.getParameter<double>("threshDiffEE");
30  threshChannelsAnalyzed_ = ps.getParameter<double>("threshChannelsAnalyzed");
31 }
32 
34  // calculate pedestals and fill db record
35  EcalPedestals pedestals;
36  float kBarrelSize = 61200;
37  float kEndcapSize = 2 * 7324;
38  float skipped_channels_EB = 0;
39  float skipped_channels_EE = 0;
40 
41  for (uint16_t i = 0; i < EBDetId::kSizeForDenseIndexing; ++i) {
42  std::string hname = dqmDir_ + "/EB/" + std::to_string(int(i / 100)) + "/eb_" + std::to_string(i);
43  MonitorElement* ch = igetter_.get(hname);
44  if (ch == nullptr) {
45  edm::LogWarning("MissingMonitorElement") << "failed to find MonitorElement " << hname;
46  entriesEB_[i] = 0;
47  continue;
48  }
49  double mean = ch->getMean();
50  double rms = ch->getRMS();
51  entriesEB_[i] = ch->getEntries();
52 
54  EcalPedestal ped;
55  EcalPedestal oldped = *currentPedestals_->find(id.rawId());
56  EcalPedestal g6g1ped = *g6g1Pedestals_->find(id.rawId());
57 
58  ped.mean_x12 = mean;
59  ped.rms_x12 = rms;
60 
61  float diff = std::abs(mean - oldped.mean_x12);
62 
63  // if bad channel or low stat skip or the difference is too large wrt to previous record
64  if (ch->getEntries() < minEntries_ || !checkStatusCode(id) || diff > threshDiffEB_) {
65  ped.mean_x12 = oldped.mean_x12;
66  ped.rms_x12 = oldped.rms_x12;
67 
68  skipped_channels_EB++;
69  }
70 
71  // copy g6 and g1 from the corressponding record
72  ped.mean_x6 = g6g1ped.mean_x6;
73  ped.rms_x6 = g6g1ped.rms_x6;
74  ped.mean_x1 = g6g1ped.mean_x1;
75  ped.rms_x1 = g6g1ped.rms_x1;
76 
77  pedestals.setValue(id.rawId(), ped);
78  }
79 
80  for (uint16_t i = 0; i < EEDetId::kSizeForDenseIndexing; ++i) {
81  std::string hname = dqmDir_ + "/EE/" + std::to_string(int(i / 100)) + "/ee_" + std::to_string(i);
82 
83  MonitorElement* ch = igetter_.get(hname);
84  if (ch == nullptr) {
85  edm::LogWarning("MissingMonitorElement") << "failed to find MonitorElement " << hname;
86  entriesEE_[i] = 0;
87  continue;
88  }
89  double mean = ch->getMean();
90  double rms = ch->getRMS();
91  entriesEE_[i] = ch->getEntries();
92 
94  EcalPedestal ped;
95  EcalPedestal oldped = *currentPedestals_->find(id.rawId());
96  EcalPedestal g6g1ped = *g6g1Pedestals_->find(id.rawId());
97 
98  ped.mean_x12 = mean;
99  ped.rms_x12 = rms;
100 
101  float diff = std::abs(mean - oldped.mean_x12);
102 
103  // if bad channel or low stat skip or the difference is too large wrt to previous record
104  if (ch->getEntries() < minEntries_ || !checkStatusCode(id) || diff > threshDiffEE_) {
105  ped.mean_x12 = oldped.mean_x12;
106  ped.rms_x12 = oldped.rms_x12;
107 
108  skipped_channels_EE++;
109  }
110 
111  // copy g6 and g1 pedestals from corresponding record
112  ped.mean_x6 = g6g1ped.mean_x6;
113  ped.rms_x6 = g6g1ped.rms_x6;
114  ped.mean_x1 = g6g1ped.mean_x1;
115  ped.rms_x1 = g6g1ped.rms_x1;
116 
117  pedestals.setValue(id.rawId(), ped);
118  }
119 
120  bool enough_stat = false;
121  if ((kBarrelSize - skipped_channels_EB) / kBarrelSize > threshChannelsAnalyzed_ &&
122  (kEndcapSize - skipped_channels_EE) / kEndcapSize > threshChannelsAnalyzed_) {
123  enough_stat = true;
124  }
125 
126  dqmPlots(pedestals, ibooker_);
127 
128  // check if there are large variations wrt exisiting pedstals
129 
130  if (checkAnomalies_) {
131  if (checkVariation(*currentPedestals_, pedestals)) {
132  edm::LogError("Large Variations found wrt to old pedestals, no file created");
133  return;
134  }
135  }
136 
137  if (!enough_stat)
138  return;
139 
140  // write out pedestal record
142 
143  if (!poolDbService.isAvailable()) {
144  throw std::runtime_error("PoolDBService required.");
145  }
146 
147  poolDbService->writeOne(&pedestals, poolDbService->currentTime(), "EcalPedestalsRcd");
148 }
149 
150 // ------------ method fills 'descriptions' with the allowed parameters for the module ------------
153  desc.setUnknown();
154  descriptions.addDefault(desc);
155 }
156 
159  isetup.get<EcalChannelStatusRcd>().get(chStatus);
160  channelStatus_ = chStatus.product();
161 
163  isetup.get<EcalPedestalsRcd>().get(peds);
164  currentPedestals_ = peds.product();
165 
167  isetup.get<EcalPedestalsRcd>().get(labelG6G1_, g6g1peds);
168  g6g1Pedestals_ = g6g1peds.product();
169 }
170 
173  dbstatusPtr = channelStatus_->getMap().find(id.rawId());
174  EcalChannelStatusCode::Code dbstatus = dbstatusPtr->getStatusCode();
175 
176  std::vector<int>::const_iterator res = std::find(chStatusToExclude_.begin(), chStatusToExclude_.end(), dbstatus);
177  if (res != chStatusToExclude_.end())
178  return false;
179 
180  return true;
181 }
182 
185  dbstatusPtr = channelStatus_->getMap().find(id.rawId());
186  if (dbstatusPtr == channelStatus_->getMap().end())
187  edm::LogError("Invalid DetId supplied");
188  EcalChannelStatusCode::Code dbstatus = dbstatusPtr->getStatusCode();
189  if (dbstatus == 0)
190  return true;
191  return false;
192 }
193 
195  const EcalPedestalsMap& newPedestals) {
196  uint32_t nAnomaliesEB = 0;
197  uint32_t nAnomaliesEE = 0;
198 
199  for (uint16_t i = 0; i < EBDetId::kSizeForDenseIndexing; ++i) {
201  const EcalPedestal& newped = *newPedestals.find(id.rawId());
202  const EcalPedestal& oldped = *oldPedestals.find(id.rawId());
203 
204  if (std::abs(newped.mean_x12 - oldped.mean_x12) > nSigma_ * oldped.rms_x12)
205  nAnomaliesEB++;
206  }
207 
208  for (uint16_t i = 0; i < EEDetId::kSizeForDenseIndexing; ++i) {
210  const EcalPedestal& newped = *newPedestals.find(id.rawId());
211  const EcalPedestal& oldped = *oldPedestals.find(id.rawId());
212 
213  if (std::abs(newped.mean_x12 - oldped.mean_x12) > nSigma_ * oldped.rms_x12)
214  nAnomaliesEE++;
215  }
216 
219  return true;
220 
221  return false;
222 }
223 
225  ibooker.cd();
226  ibooker.setCurrentFolder(dqmDir_ + "/Summary");
227 
228  MonitorElement* pmeb = ibooker.book2D("meaneb", "Pedestal Means EB", 360, 1., 361., 171, -85., 86.);
229  MonitorElement* preb = ibooker.book2D("rmseb", "Pedestal RMS EB ", 360, 1., 361., 171, -85., 86.);
230 
231  MonitorElement* pmeep = ibooker.book2D("meaneep", "Pedestal Means EEP", 100, 1, 101, 100, 1, 101);
232  MonitorElement* preep = ibooker.book2D("rmseep", "Pedestal RMS EEP", 100, 1, 101, 100, 1, 101);
233 
234  MonitorElement* pmeem = ibooker.book2D("meaneem", "Pedestal Means EEM", 100, 1, 101, 100, 1, 101);
235  MonitorElement* preem = ibooker.book2D("rmseem", "Pedestal RMS EEM", 100, 1, 101, 100, 1, 101);
236 
237  MonitorElement* pmebd = ibooker.book2D("meanebdiff", "Abs Rel Pedestal Means Diff EB", 360, 1., 361., 171, -85., 86.);
238  MonitorElement* prebd = ibooker.book2D("rmsebdiff", "Abs Rel Pedestal RMS Diff E ", 360, 1., 361., 171, -85., 86.);
239 
240  MonitorElement* pmeepd = ibooker.book2D("meaneepdiff", "Abs Rel Pedestal Means Diff EEP", 100, 1, 101, 100, 1, 101);
241  MonitorElement* preepd = ibooker.book2D("rmseepdiff", "Abs Rel Pedestal RMS Diff EEP", 100, 1, 101, 100, 1, 101);
242 
243  MonitorElement* pmeemd = ibooker.book2D("meaneemdiff", "Abs Rel Pedestal Means Diff EEM", 100, 1, 101, 100, 1, 101);
244  MonitorElement* preemd = ibooker.book2D("rmseemdiff", "Abs RelPedestal RMS Diff EEM", 100, 1, 101, 100, 1, 101);
245 
246  MonitorElement* poeb = ibooker.book2D("occeb", "Occupancy EB", 360, 1., 361., 171, -85., 86.);
247  MonitorElement* poeep = ibooker.book2D("occeep", "Occupancy EEP", 100, 1, 101, 100, 1, 101);
248  MonitorElement* poeem = ibooker.book2D("occeem", "Occupancy EEM", 100, 1, 101, 100, 1, 101);
249 
250  MonitorElement* hdiffeb = ibooker.book1D("diffeb", "Pedestal Differences EB", 100, -2.5, 2.5);
251  MonitorElement* hdiffee = ibooker.book1D("diffee", "Pedestal Differences EE", 100, -2.5, 2.5);
252 
253  for (int hash = 0; hash < EBDetId::kSizeForDenseIndexing; ++hash) {
255  float mean = newpeds[di].mean_x12;
256  float rms = newpeds[di].rms_x12;
257 
258  float cmean = (*currentPedestals_)[di].mean_x12;
259  float crms = (*currentPedestals_)[di].rms_x12;
260 
261  if (!isGood(di))
262  continue; // only good channels are plotted
263 
264  pmeb->Fill(di.iphi(), di.ieta(), mean);
265  preb->Fill(di.iphi(), di.ieta(), rms);
266  if (cmean)
267  pmebd->Fill(di.iphi(), di.ieta(), std::abs(mean - cmean) / cmean);
268  if (crms)
269  prebd->Fill(di.iphi(), di.ieta(), std::abs(rms - crms) / crms);
270  poeb->Fill(di.iphi(), di.ieta(), entriesEB_[hash]);
271  hdiffeb->Fill(mean - cmean);
272  }
273 
274  for (int hash = 0; hash < EEDetId::kSizeForDenseIndexing; ++hash) {
276  float mean = newpeds[di].mean_x12;
277  float rms = newpeds[di].rms_x12;
278  float cmean = (*currentPedestals_)[di].mean_x12;
279  float crms = (*currentPedestals_)[di].rms_x12;
280 
281  if (!isGood(di))
282  continue; // only good channels are plotted
283 
284  if (di.zside() > 0) {
285  pmeep->Fill(di.ix(), di.iy(), mean);
286  preep->Fill(di.ix(), di.iy(), rms);
287  poeep->Fill(di.ix(), di.iy(), entriesEE_[hash]);
288  if (cmean)
289  pmeepd->Fill(di.ix(), di.iy(), std::abs(mean - cmean) / cmean);
290  if (crms)
291  preepd->Fill(di.ix(), di.iy(), std::abs(rms - crms) / crms);
292  } else {
293  pmeem->Fill(di.ix(), di.iy(), mean);
294  preem->Fill(di.ix(), di.iy(), rms);
295  if (cmean)
296  pmeemd->Fill(di.ix(), di.iy(), std::abs(mean - cmean) / cmean);
297  poeem->Fill(di.ix(), di.iy(), entriesEE_[hash]);
298  if (crms)
299  preemd->Fill(di.ix(), di.iy(), std::abs(rms - crms) / crms);
300  }
301  hdiffee->Fill(mean - cmean);
302  }
303 }
EcalCondObjectContainer::getMap
const self & getMap() const
Definition: EcalCondObjectContainer.h:78
edm::ESHandle::product
T const * product() const
Definition: ESHandle.h:86
EcalCondObjectContainer::end
const_iterator end() const
Definition: EcalCondObjectContainer.h:74
change_name.diff
diff
Definition: change_name.py:13
ECALpedestalPCLHarvester::checkVariation
bool checkVariation(const EcalPedestalsMap &oldPedestals, const EcalPedestalsMap &newPedestals)
Definition: ECALpedestalPCLHarvester.cc:194
EBDetId::ieta
int ieta() const
get the crystal ieta
Definition: EBDetId.h:49
mps_fire.i
i
Definition: mps_fire.py:428
ECALpedestalPCLHarvester::dqmDir_
std::string dqmDir_
Definition: ECALpedestalPCLHarvester.h:59
SiStripPI::mean
Definition: SiStripPayloadInspectorHelper.h:169
ECALpedestalPCLHarvester::threshChannelsAnalyzed_
float threshChannelsAnalyzed_
Definition: ECALpedestalPCLHarvester.h:63
EcalPedestal::mean_x6
float mean_x6
Definition: EcalPedestals.h:21
ESHandle.h
edm::Run
Definition: Run.h:45
cond::hash
Definition: Time.h:19
EBDetId
Definition: EBDetId.h:17
edm::ParameterSetDescription
Definition: ParameterSetDescription.h:52
ECALpedestalPCLHarvester::nSigma_
double nSigma_
Definition: ECALpedestalPCLHarvester.h:57
dqm::implementation::NavigatorBase::setCurrentFolder
virtual void setCurrentFolder(std::string const &fullpath)
Definition: DQMStore.cc:32
ECALpedestalPCLHarvester::checkAnomalies_
bool checkAnomalies_
Definition: ECALpedestalPCLHarvester.h:56
dqm::legacy::MonitorElement
Definition: MonitorElement.h:462
ECALpedestalPCLHarvester::thresholdAnomalies_
double thresholdAnomalies_
Definition: ECALpedestalPCLHarvester.h:58
spr::find
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
Definition: FindCaloHit.cc:19
EcalCondObjectContainer
Definition: EcalCondObjectContainer.h:13
EEDetId::ix
int ix() const
Definition: EEDetId.h:77
SiStripPI::rms
Definition: SiStripPayloadInspectorHelper.h:169
edm::Service::isAvailable
bool isAvailable() const
Definition: Service.h:40
edm::LogWarning
Log< level::Warning, false > LogWarning
Definition: MessageLogger.h:122
ECALpedestalPCLHarvester::chStatusToExclude_
std::vector< int > chStatusToExclude_
Definition: ECALpedestalPCLHarvester.h:51
ECALpedestalPCLHarvester::entriesEE_
int entriesEE_[EEDetId::kSizeForDenseIndexing]
Definition: ECALpedestalPCLHarvester.h:55
ECALpedestalPCLHarvester::minEntries_
int minEntries_
Definition: ECALpedestalPCLHarvester.h:52
EcalPedestal::mean_x1
float mean_x1
Definition: EcalPedestals.h:23
EEDetId::detIdFromDenseIndex
static EEDetId detIdFromDenseIndex(uint32_t din)
Definition: EEDetId.h:220
DetId
Definition: DetId.h:17
PoolDBOutputService.h
edm::EventSetup::get
T get() const
Definition: EventSetup.h:87
EEDetId::kSizeForDenseIndexing
Definition: EEDetId.h:329
EcalPedestal::mean_x12
float mean_x12
Definition: EcalPedestals.h:19
ECALpedestalPCLHarvester::dqmPlots
void dqmPlots(const EcalPedestals &newpeds, DQMStore::IBooker &ibooker)
Definition: ECALpedestalPCLHarvester.cc:224
dqm::impl::MonitorElement::Fill
void Fill(long long x)
Definition: MonitorElement.h:290
edm::ESHandle
Definition: DTSurvey.h:22
dqm::implementation::NavigatorBase::cd
virtual void cd()
Definition: DQMStore.cc:29
ECALpedestalPCLHarvester::isGood
bool isGood(const DetId &id)
Definition: ECALpedestalPCLHarvester.cc:183
EcalCondObjectContainer::find
const_iterator find(uint32_t rawId) const
Definition: EcalCondObjectContainer.h:53
EcalPedestal::rms_x12
float rms_x12
Definition: EcalPedestals.h:20
dqm::impl::MonitorElement::getRMS
virtual double getRMS(int axis=1) const
get RMS of histogram along x, y or z axis (axis=1, 2, 3 respectively)
Definition: MonitorElement.cc:562
StringToEnumValue.h
EEDetId::zside
int zside() const
Definition: EEDetId.h:71
EEDetId
Definition: EEDetId.h:14
edm::ConfigurationDescriptions
Definition: ConfigurationDescriptions.h:28
ECALpedestalPCLHarvester.h
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
dqm::impl::MonitorElement::getEntries
virtual double getEntries() const
get # of entries
Definition: MonitorElement.cc:628
ECALpedestalPCLHarvester::dqmEndJob
void dqmEndJob(DQMStore::IBooker &ibooker_, DQMStore::IGetter &igetter_) override
Definition: ECALpedestalPCLHarvester.cc:33
EcalCondObjectContainer::setValue
void setValue(const uint32_t id, const Item &item)
Definition: EcalCondObjectContainer.h:76
edm::ParameterSet
Definition: ParameterSet.h:47
ECALpedestalPCLHarvester::ECALpedestalPCLHarvester
ECALpedestalPCLHarvester(const edm::ParameterSet &ps)
Definition: ECALpedestalPCLHarvester.cc:18
EcalChannelStatusRcd
Definition: EcalChannelStatusRcd.h:5
EBDetId::detIdFromDenseIndex
static EBDetId detIdFromDenseIndex(uint32_t di)
Definition: EBDetId.h:107
ECALpedestalPCLHarvester::g6g1Pedestals_
const EcalPedestals * g6g1Pedestals_
Definition: ECALpedestalPCLHarvester.h:45
edm::Service< cond::service::PoolDBOutputService >
EcalPedestal::rms_x1
float rms_x1
Definition: EcalPedestals.h:24
edm::EventSetup
Definition: EventSetup.h:58
edm::LogError
Log< level::Error, false > LogError
Definition: MessageLogger.h:123
get
#define get
res
Definition: Electron.h:6
EEDetId::iy
int iy() const
Definition: EEDetId.h:83
ECALpedestalPCLHarvester::labelG6G1_
std::string labelG6G1_
Definition: ECALpedestalPCLHarvester.h:60
ECALpedestalPCLHarvester::entriesEB_
int entriesEB_[EBDetId::kSizeForDenseIndexing]
Definition: ECALpedestalPCLHarvester.h:54
ECALpedestalPCLHarvester::endRun
void endRun(edm::Run const &run, edm::EventSetup const &isetup) override
Definition: ECALpedestalPCLHarvester.cc:157
EcalChannelStatusCode::Code
Code
Definition: EcalChannelStatusCode.h:20
submitPVResolutionJobs.desc
string desc
Definition: submitPVResolutionJobs.py:251
writedatasetfile.run
run
Definition: writedatasetfile.py:27
dqm::implementation::IGetter
Definition: DQMStore.h:484
ECALpedestalPCLHarvester::fillDescriptions
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
Definition: ECALpedestalPCLHarvester.cc:151
dqm::implementation::IBooker::book2D
MonitorElement * book2D(TString const &name, TString const &title, int nchX, double lowX, double highX, int nchY, double lowY, double highY, FUNC onbooking=NOOP())
Definition: DQMStore.h:177
cond::service::PoolDBOutputService::writeOne
Hash writeOne(const T *payload, Time_t time, const std::string &recordName)
Definition: PoolDBOutputService.h:63
EcalPedestal
Definition: EcalPedestals.h:8
dqm::implementation::IGetter::get
virtual MonitorElement * get(std::string const &fullpath) const
Definition: DQMStore.cc:651
EventSetup.h
dqm::impl::MonitorElement::getMean
virtual double getMean(int axis=1) const
get mean value of histogram along x, y or z axis (axis=1, 2, 3 respectively)
Definition: MonitorElement.cc:549
EBDetId::kSizeForDenseIndexing
Definition: EBDetId.h:155
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
dqm::implementation::IBooker
Definition: DQMStore.h:43
EcalPedestalsRcd.h
EcalCondObjectContainer::const_iterator
std::vector< Item >::const_iterator const_iterator
Definition: EcalCondObjectContainer.h:19
EBDetId::iphi
int iphi() const
get the crystal iphi
Definition: EBDetId.h:51
funct::abs
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
EcalPedestalsRcd
Definition: EcalPedestalsRcd.h:5
ECALpedestalPCLHarvester::channelStatus_
const EcalChannelStatus * channelStatus_
Definition: ECALpedestalPCLHarvester.h:46
edm::ConfigurationDescriptions::addDefault
void addDefault(ParameterSetDescription const &psetDescription)
Definition: ConfigurationDescriptions.cc:99
edm::Log
Definition: MessageLogger.h:70
EcalChannelStatus.h
ECALpedestalPCLHarvester::threshDiffEE_
float threshDiffEE_
Definition: ECALpedestalPCLHarvester.h:62
EcalChannelStatusCode.h
cond::service::PoolDBOutputService::currentTime
cond::Time_t currentTime() const
Definition: PoolDBOutputService.cc:217
ECALpedestalPCLHarvester::threshDiffEB_
float threshDiffEB_
Definition: ECALpedestalPCLHarvester.h:61
EcalChannelStatusRcd.h
EcalPedestal::rms_x6
float rms_x6
Definition: EcalPedestals.h:22
dqm::implementation::IBooker::book1D
MonitorElement * book1D(TString const &name, TString const &title, int const nchX, double const lowX, double const highX, FUNC onbooking=NOOP())
Definition: DQMStore.h:98
ECALpedestalPCLHarvester::checkStatusCode
bool checkStatusCode(const DetId &id)
Definition: ECALpedestalPCLHarvester.cc:171
ECALpedestalPCLHarvester::currentPedestals_
const EcalPedestals * currentPedestals_
Definition: ECALpedestalPCLHarvester.h:44