CMS 3D CMS Logo

TimingClient.cc
Go to the documentation of this file.
2 
4 
7 
9 
10 #include <cmath>
11 
12 namespace ecaldqm {
14  : DQWorkerClient(),
15  toleranceMean_(0.),
16  toleranceMeanFwd_(0.),
17  toleranceRMS_(0.),
18  toleranceRMSFwd_(0.),
19  minChannelEntries_(0),
20  minChannelEntriesFwd_(0),
21  minTowerEntries_(0),
22  minTowerEntriesFwd_(0),
23  tailPopulThreshold_(0.) {
24  qualitySummaries_.insert("Quality");
25  qualitySummaries_.insert("QualitySummary");
26  }
27 
29  toleranceMean_ = _params.getUntrackedParameter<double>("toleranceMean");
30  toleranceMeanFwd_ = _params.getUntrackedParameter<double>("toleranceMeanFwd");
31  toleranceRMS_ = _params.getUntrackedParameter<double>("toleranceRMS");
32  toleranceRMSFwd_ = _params.getUntrackedParameter<double>("toleranceRMSFwd");
33  minChannelEntries_ = _params.getUntrackedParameter<int>("minChannelEntries");
34  minChannelEntriesFwd_ = _params.getUntrackedParameter<int>("minChannelEntriesFwd");
35  minTowerEntries_ = _params.getUntrackedParameter<int>("minTowerEntries");
36  minTowerEntriesFwd_ = _params.getUntrackedParameter<int>("minChannelEntriesFwd");
37  tailPopulThreshold_ = _params.getUntrackedParameter<double>("tailPopulThreshold");
38  }
39 
41  MESet& meQuality(MEs_.at("Quality"));
42  MESet& meMeanSM(MEs_.at("MeanSM"));
43  MESet& meMeanAll(MEs_.at("MeanAll"));
44  MESet& meFwdBkwdDiff(MEs_.at("FwdBkwdDiff"));
45  MESet& meFwdvBkwd(MEs_.at("FwdvBkwd"));
46  MESet& meRMSMap(MEs_.at("RMSMap"));
47  MESet& meRMSAll(MEs_.at("RMSAll"));
48  MESet& meProjEta(MEs_.at("ProjEta"));
49  MESet& meProjPhi(MEs_.at("ProjPhi"));
50  MESet& meQualitySummary(MEs_.at("QualitySummary"));
51 
52  MESet const& sTimeAllMap(sources_.at("TimeAllMap"));
53  MESet const& sTimeMap(sources_.at("TimeMap"));
54  MESet const& sTimeMapByLS(sources_.at("TimeMapByLS"));
55  MESet const& sChStatus(sources_.at("ChStatus"));
56 
58 
59  MESet::iterator qEnd(meQuality.end());
60 
61  MESet::iterator rItr(meRMSMap);
62  MESet::const_iterator tItr(sTimeMap);
63  MESet::const_iterator tLSItr(sTimeMapByLS);
64 
65  float EBentries(0.), EEentries(0.);
66  float EBmean(0.), EEmean(0.);
67  float EBrms(0.), EErms(0.);
68  for (MESet::iterator qItr(meQuality.beginChannel()); qItr != qEnd; qItr.toNextChannel()) {
69  tItr = qItr;
70  rItr = qItr;
71 
72  DetId id(qItr->getId());
73 
75  float meanThresh(toleranceMean_);
76  float rmsThresh(toleranceRMS_);
77 
78  if (isForward(id)) {
79  minChannelEntries = minChannelEntriesFwd_;
80  meanThresh = toleranceMeanFwd_;
81  rmsThresh = toleranceRMSFwd_;
82  }
83 
84  bool doMask(meQuality.maskMatches(id, mask, statusManager_));
85 
86  float entries(tItr->getBinEntries());
87 
88  if (entries < minChannelEntries) {
89  qItr->setBinContent(doMask ? kMUnknown : kUnknown);
90  rItr->setBinContent(-1.);
91  continue;
92  }
93 
94  float mean(tItr->getBinContent());
95  float rms(tItr->getBinError() * sqrt(entries));
96 
97  meMeanSM.fill(id, mean);
98  meMeanAll.fill(id, mean);
99  meProjEta.fill(id, mean);
100  meProjPhi.fill(id, mean);
101  meRMSAll.fill(id, rms);
102  rItr->setBinContent(rms);
103 
104  bool negative(false);
105  float posTime(0.);
106 
107  if (id.subdetId() == EcalBarrel) {
108  EBDetId ebid(id);
109  if (ebid.zside() < 0) {
110  negative = true;
111  EBDetId posId(EBDetId::switchZSide(ebid));
112  posTime = sTimeMap.getBinContent(posId);
113  }
114  } else {
115  EEDetId eeid(id);
116  if (eeid.zside() < 0) {
117  negative = true;
118  EEDetId posId(EEDetId::switchZSide(eeid));
119  posTime = sTimeMap.getBinContent(posId);
120  }
121  }
122  if (negative) {
123  meFwdBkwdDiff.fill(id, posTime - mean);
124  meFwdvBkwd.fill(id, mean, posTime);
125  }
126 
127  if (std::abs(mean) > meanThresh || rms > rmsThresh)
128  qItr->setBinContent(doMask ? kMBad : kBad);
129  else
130  qItr->setBinContent(doMask ? kMGood : kGood);
131 
132  // For Trend plots:
133  tLSItr = qItr;
134  float entriesLS(tLSItr->getBinEntries());
135  float meanLS(tLSItr->getBinContent());
136  float rmsLS(tLSItr->getBinError() * sqrt(entriesLS));
137  float chStatus(sChStatus.getBinContent(id));
138 
139  if (entriesLS < minChannelEntries)
140  continue;
141  if (chStatus != EcalChannelStatusCode::kOk)
142  continue; // exclude problematic channels
143 
144  // Keep running count of timing mean, rms, and N_hits
145  if (id.subdetId() == EcalBarrel) {
146  EBmean += meanLS;
147  EBrms += rmsLS;
148  EBentries += entriesLS;
149  } else {
150  EEmean += meanLS;
151  EErms += rmsLS;
152  EEentries += entriesLS;
153  }
154 
155  } // channel loop
156 
157  // Fill Timing Trend plots at each LS
158  MESet& meTrendMean(MEs_.at("TrendMean"));
159  MESet& meTrendRMS(MEs_.at("TrendRMS"));
160  if (EBentries > 0.) {
161  if (std::abs(EBmean) > 0.)
162  meTrendMean.fill(EcalBarrel, double(timestamp_.iLumi), EBmean / EBentries);
163  if (std::abs(EBrms) > 0.)
164  meTrendRMS.fill(EcalBarrel, double(timestamp_.iLumi), EBrms / EBentries);
165  }
166  if (EEentries > 0.) {
167  if (std::abs(EEmean) > 0.)
168  meTrendMean.fill(EcalEndcap, double(timestamp_.iLumi), EEmean / EEentries);
169  if (std::abs(EErms) > 0.)
170  meTrendRMS.fill(EcalEndcap, double(timestamp_.iLumi), EErms / EEentries);
171  }
172 
173  MESet::iterator qsEnd(meQualitySummary.end());
174 
175  for (MESet::iterator qsItr(meQualitySummary.beginChannel()); qsItr != qsEnd; qsItr.toNextChannel()) {
176  DetId tId(qsItr->getId());
177 
178  std::vector<DetId> ids;
179 
180  if (tId.subdetId() == EcalTriggerTower)
182  else
183  ids = scConstituents(EcalScDetId(tId));
184 
186  float meanThresh(toleranceMean_);
187  float rmsThresh(toleranceRMS_);
188 
189  if (isForward(tId)) {
190  minTowerEntries = minTowerEntriesFwd_;
191  meanThresh = toleranceMeanFwd_;
192  rmsThresh = toleranceRMSFwd_;
193  }
194 
195  // tower entries != sum(channel entries) because of the difference in timing cut at the source
196  float summaryEntries(sTimeAllMap.getBinEntries(tId));
197 
198  float towerEntries(0.);
199  float towerMean(0.);
200  float towerMean2(0.);
201 
202  bool doMask(false);
203 
204  for (std::vector<DetId>::iterator idItr(ids.begin()); idItr != ids.end(); ++idItr) {
205  DetId& id(*idItr);
206 
207  doMask |= meQuality.maskMatches(id, mask, statusManager_);
208 
209  MESet::const_iterator tmItr(sTimeMap, id);
210 
211  float entries(tmItr->getBinEntries());
212  if (entries < 0.)
213  continue;
214  towerEntries += entries;
215  float mean(tmItr->getBinContent());
216  towerMean += mean * entries;
217  float rms(tmItr->getBinError() * sqrt(entries));
218  towerMean2 += (rms * rms + mean * mean) * entries;
219  }
220 
221  double quality(doMask ? kMUnknown : kUnknown);
222  if (towerEntries / ids.size() > minTowerEntries / 25.) {
223  if (summaryEntries < towerEntries * (1. - tailPopulThreshold_)) // large timing deviation
224  quality = doMask ? kMBad : kBad;
225  else {
226  towerMean /= towerEntries;
227  towerMean2 /= towerEntries;
228 
229  float towerRMS(sqrt(towerMean2 - towerMean * towerMean));
230 
231  if (std::abs(towerMean) > meanThresh || towerRMS > rmsThresh)
232  quality = doMask ? kMBad : kBad;
233  else
234  quality = doMask ? kMGood : kGood;
235  }
236  }
237  qsItr->setBinContent(quality);
238  }
239  }
240 
242 } // namespace ecaldqm
T getUntrackedParameter(std::string const &, T const &) const
#define DEFINE_ECALDQM_WORKER(TYPE)
Definition: DQWorker.h:112
edm::LuminosityBlockNumber_t iLumi
Definition: DQWorker.h:35
static const int PHYSICS_BAD_CHANNEL_WARNING
double getBinEntries() const
Definition: MESet.h:176
bool isForward(DetId const &)
EBDetId switchZSide() const
Definition: EBDetId.cc:72
const_iterator & toNextChannel()
Definition: MESet.h:289
std::set< std::string > qualitySummaries_
void setParams(edm::ParameterSet const &) override
Definition: TimingClient.cc:28
T sqrt(T t)
Definition: SSEVec.h:19
EcalTrigTowerConstituentsMap const * getTrigTowerMap()
StatusManager const * statusManager_
double getBinError() const
Definition: MESet.h:170
int zside() const
Definition: EEDetId.h:71
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
std::vector< DetId > constituentsOf(const EcalTrigTowerDetId &id) const
Get the constituent detids for this tower id.
MESetCollection sources_
EEDetId switchZSide() const
Definition: EEDetId.cc:402
Definition: DetId.h:17
Timestamp timestamp_
Definition: DQWorker.h:81
virtual void fill(DetId const &, double=1., double=1., double=1.)
Definition: MESet.h:46
MESetCollection MEs_
Definition: DQWorker.h:78
double getBinContent() const
Definition: MESet.h:164
std::vector< DetId > scConstituents(EcalScDetId const &)
void producePlots(ProcessType) override
Definition: TimingClient.cc:40
int zside() const
get the z-side of the crystal (1/-1)
Definition: EBDetId.h:45