CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
SiStripCertificationInfo.cc
Go to the documentation of this file.
4 
9 
11 
12 //Run Info
14 
15 #include <iostream>
16 #include <iomanip>
17 #include <cstdio>
18 #include <string>
19 #include <sstream>
20 #include <cmath>
21 
23  consumes<DQMToken, edm::InRun>(edm::InputTag("siStripOfflineAnalyser", "DQMGenerationSiStripAnalyserRun"));
24  consumes<DQMToken, edm::InLumi>(edm::InputTag("siStripOfflineAnalyser", "DQMGenerationSiStripAnalyserLumi"));
25  detCablingToken_ = esConsumes<edm::Transition::BeginRun>();
26  tTopoToken_ = esConsumes<edm::Transition::EndRun>();
27  runInfoToken_ = esConsumes<edm::Transition::BeginRun>();
28 }
29 
31  edm::LogInfo("SiStripCertificationInfo") << "SiStripCertificationInfo:: Begining of Run";
33 
34  constexpr int siStripFedIdMin{FEDNumbering::MINSiStripFEDID};
35  constexpr int siStripFedIdMax{FEDNumbering::MAXSiStripFEDID};
36 
37  if (eSetup.tryToGet<RunInfoRcd>()) {
38  if (auto sumFED = eSetup.getHandle(runInfoToken_)) {
39  for (auto const fedID : sumFED->m_fed_in) {
40  if (fedID >= siStripFedIdMin && fedID <= siStripFedIdMax)
42  }
43  LogDebug("SiStripDcsInfo") << " SiStripDcsInfo :: Connected FEDs " << nFEDConnected_;
44  }
45  }
46 
47  auto& dqm_store = *edm::Service<DQMStore>{};
48  bookSiStripCertificationMEs(dqm_store);
50 }
51 //
52 // -- Book MEs for SiStrip Sertification fractions
53 //
56  return;
57 
58  dqm_store.cd();
59  std::string strip_dir = "";
60  SiStripUtility::getTopFolderPath(dqm_store, "SiStrip", strip_dir);
61  if (!strip_dir.empty())
62  dqm_store.setCurrentFolder(strip_dir + "/EventInfo");
63  else
64  dqm_store.setCurrentFolder("SiStrip/EventInfo");
65 
66  SiStripCertification = dqm_store.bookFloat("CertificationSummary");
67 
68  std::string hname = "CertificationReportMap";
69  std::string htitle = "SiStrip Certification for Good Detector Fraction";
70  SiStripCertificationSummaryMap = dqm_store.book2D(hname, htitle, 6, 0.5, 6.5, 9, 0.5, 9.5);
71  SiStripCertificationSummaryMap->setAxisTitle("Sub Detector Type", 1);
72  SiStripCertificationSummaryMap->setAxisTitle("Layer/Disc Number", 2);
73  int ibin = 0;
74  for (auto const& pr : SubDetMEsMap) {
75  ++ibin;
76  auto const& det = pr.first;
78  }
79 
80  SubDetMEs local_mes;
82  dqm_store.cd();
83  if (!strip_dir.empty())
84  dqm_store.setCurrentFolder(strip_dir + "/EventInfo/CertificationContents");
85  else
86  dqm_store.setCurrentFolder("SiStrip/EventInfo/CertificationContents");
87  tag = "TIB";
88 
89  local_mes.folder_name = "TIB";
90  local_mes.subdet_tag = "TIB";
91  local_mes.n_layer = 4;
92  local_mes.det_fractionME = dqm_store.bookFloat("SiStrip_" + tag);
93  SubDetMEsMap.emplace(tag, local_mes);
94 
95  tag = "TOB";
96  local_mes.folder_name = "TOB";
97  local_mes.subdet_tag = "TOB";
98  local_mes.n_layer = 6;
99  local_mes.det_fractionME = dqm_store.bookFloat("SiStrip_" + tag);
100  SubDetMEsMap.emplace(tag, local_mes);
101 
102  tag = "TECF";
103  local_mes.folder_name = "TEC/PLUS";
104  local_mes.subdet_tag = "TEC+";
105  local_mes.n_layer = 9;
106  local_mes.det_fractionME = dqm_store.bookFloat("SiStrip_" + tag);
107  SubDetMEsMap.emplace(tag, local_mes);
108 
109  tag = "TECB";
110  local_mes.folder_name = "TEC/MINUS";
111  local_mes.subdet_tag = "TEC-";
112  local_mes.n_layer = 9;
113  local_mes.det_fractionME = dqm_store.bookFloat("SiStrip_" + tag);
114  SubDetMEsMap.emplace(tag, local_mes);
115 
116  tag = "TIDF";
117  local_mes.folder_name = "TID/PLUS";
118  local_mes.subdet_tag = "TID+";
119  local_mes.n_layer = 3;
120  local_mes.det_fractionME = dqm_store.bookFloat("SiStrip_" + tag);
121  SubDetMEsMap.emplace(tag, local_mes);
122 
123  tag = "TIDB";
124  local_mes.folder_name = "TID/MINUS";
125  local_mes.subdet_tag = "TID-";
126  local_mes.n_layer = 3;
127  local_mes.det_fractionME = dqm_store.bookFloat("SiStrip_" + tag);
128  SubDetMEsMap.emplace(tag, local_mes);
129 
130  dqm_store.cd();
131  if (!strip_dir.empty())
132  dqm_store.setCurrentFolder(strip_dir + "/EventInfo");
133 
135  dqm_store.cd();
136 }
137 
139 
141  edm::LogInfo("SiStripDaqInfo") << "SiStripDaqInfo::endLuminosityBlock";
142 
143  if (nFEDConnected_ > 0) {
144  auto& dqm_store = *edm::Service<DQMStore>{};
146  }
147 }
148 
150  edm::LogInfo("SiStripCertificationInfo") << "SiStripCertificationInfo:: End Run";
151 
152  if (nFEDConnected_ > 0) {
153  auto& dqm_store = *edm::Service<DQMStore>{};
154  fillSiStripCertificationMEs(dqm_store, eSetup);
155  }
156 }
157 
158 //
159 // --Fill SiStrip Certification
160 //
163  edm::LogError("SiStripCertificationInfo")
164  << " SiStripCertificationInfo::fillSiStripCertificationMEs : MEs missing ";
165  return;
166  }
167 
168  //Retrieve tracker topology from geometry
169  const auto tTopo = &eSetup.getData(tTopoToken_);
170 
171  resetSiStripCertificationMEs(dqm_store);
172  std::string mdir = "MechanicalView";
173  dqm_store.cd();
174  if (!SiStripUtility::goToDir(dqm_store, mdir))
175  return;
176  std::string mechanical_dir = dqm_store.pwd();
177  uint16_t nDetTot = 0;
178  uint16_t nFaultyTot = 0;
179  uint16_t nSToNTot = 0;
180  float sToNTot = 0.0;
182  int xbin = 0;
183  for (auto const& [name, subDetME] : SubDetMEsMap) {
184  ++xbin;
185  MonitorElement* me = subDetME.det_fractionME;
186  if (!me)
187  continue;
188  std::string tag = subDetME.subdet_tag;
189  std::string bad_module_folder = mechanical_dir + "/" + subDetME.folder_name + "/" + "BadModuleList";
190  std::vector<MonitorElement*> faulty_detMEs = dqm_store.getContents(bad_module_folder);
191 
192  uint16_t ndet_subdet = 0;
193  uint16_t nfaulty_subdet = 0;
194  int nlayer = subDetME.n_layer;
195  int ybin = 0;
196  for (int ilayer = 0; ilayer < nlayer; ilayer++) {
197  uint16_t ndet_layer = detCabling_->connectedNumber(tag, ilayer + 1);
198  ndet_subdet += ndet_layer;
199  ybin++;
200  uint16_t nfaulty_layer = 0;
201  for (auto me : faulty_detMEs) {
202  if (me->kind() != MonitorElement::Kind::INT)
203  continue;
204  if (me->getIntValue() == 0)
205  continue;
206  uint32_t detId = atoi(me->getName().c_str());
207  std::pair<std::string, int32_t> det_layer_pair = folder_organizer.GetSubDetAndLayer(detId, tTopo, false);
208  if (abs(det_layer_pair.second) == ilayer + 1)
209  nfaulty_layer++;
210  }
211 
212  nfaulty_subdet += nfaulty_layer;
213  float fraction_layer = -1.0;
214  if (ndet_layer > 0)
215  fraction_layer = 1 - ((nfaulty_layer * 1.0) / ndet_layer);
217  SiStripCertificationSummaryMap->Fill(xbin, ilayer + 1, fraction_layer);
218  }
219  if (ybin <= SiStripCertificationSummaryMap->getNbinsY()) {
220  for (int k = ybin + 1; k <= SiStripCertificationSummaryMap->getNbinsY(); k++)
221  SiStripCertificationSummaryMap->Fill(xbin, k, -1.0);
222  }
223  float fraction_subdet = -1.0;
224  if (ndet_subdet > 0)
225  fraction_subdet = 1 - ((nfaulty_subdet * 1.0) / ndet_subdet);
226  // Check S/N status flag and use the minimum between the two
227  std::string full_path = mechanical_dir.substr(0, mechanical_dir.find_last_of('/')) +
228  "/EventInfo/reportSummaryContents/SiStrip_SToNFlag_" + name;
229  MonitorElement* me_ston = dqm_store.get(full_path);
230  me->Reset();
231  if (me_ston && me_ston->kind() == MonitorElement::Kind::REAL) {
232  float ston_flg = me_ston->getFloatValue();
233  sToNTot += ston_flg;
234  nSToNTot++;
235  me->Fill(fminf(fraction_subdet, ston_flg));
236  } else
237  me->Fill(fraction_subdet);
238  nDetTot += ndet_subdet;
239  nFaultyTot += nfaulty_subdet;
240  }
241  float fraction_global = -1.0;
242  if (nDetTot > 0)
243  fraction_global = 1.0 - ((nFaultyTot * 1.0) / nDetTot);
244  float ston_frac_global = 1.0;
245  if (nSToNTot > 0)
246  ston_frac_global = sToNTot / nSToNTot;
247  SiStripCertification->Fill(fminf(fraction_global, ston_frac_global));
248 }
249 //
250 // --Fill SiStrip Certification
251 //
254  bookSiStripCertificationMEs(dqm_store);
255  }
257 
259  for (auto const& pr : SubDetMEsMap) {
260  pr.second.det_fractionME->Reset();
261  }
263 }
264 //
265 // -- Fill Dummy SiStrip Certification
266 //
268  resetSiStripCertificationMEs(dqm_store);
270  SiStripCertification->Fill(-1.0);
271  for (auto const& pr : SubDetMEsMap) {
272  pr.second.det_fractionME->Reset();
273  pr.second.det_fractionME->Fill(-1.0);
274  }
275 
276  for (int xbin = 1; xbin < SiStripCertificationSummaryMap->getNbinsX() + 1; xbin++) {
277  for (int ybin = 1; ybin < SiStripCertificationSummaryMap->getNbinsY() + 1; ybin++) {
278  SiStripCertificationSummaryMap->Fill(xbin, ybin, -1.0);
279  }
280  }
281  }
282 }
283 //
284 // --Fill SiStrip Certification
285 //
288  edm::LogError("SiStripCertificationInfo")
289  << " SiStripCertificationInfo::fillSiStripCertificationMEsAtLumi : MEs missing ";
290  return;
291  }
292  resetSiStripCertificationMEs(dqm_store);
293  dqm_store.cd();
294  std::string strip_dir = "";
295  SiStripUtility::getTopFolderPath(dqm_store, "SiStrip", strip_dir);
296  if (strip_dir.empty())
297  strip_dir = "SiStrip";
298 
299  std::string full_path;
300  float dcs_flag = 1.0;
301  float dqm_flag = 1.0;
302  for (auto const& [type, subDetME] : SubDetMEsMap) {
303  full_path = strip_dir + "/EventInfo/DCSContents/SiStrip_" + type;
304  MonitorElement* me_dcs = dqm_store.get(full_path);
305  if (me_dcs && me_dcs->kind() == MonitorElement::Kind::REAL)
306  dcs_flag = me_dcs->getFloatValue();
307  full_path = strip_dir + "/EventInfo/reportSummaryContents/SiStrip_" + type;
308  MonitorElement* me_dqm = dqm_store.get(full_path);
309  if (me_dqm && me_dqm->kind() == MonitorElement::Kind::REAL)
310  dqm_flag = me_dqm->getFloatValue();
311  subDetME.det_fractionME->Reset();
312  subDetME.det_fractionME->Fill(fminf(dqm_flag, dcs_flag));
313  }
314  dcs_flag = 1.0;
315  dqm_flag = 1.0;
316  full_path = strip_dir + "/EventInfo/reportSummary";
317  MonitorElement* me_dqm = dqm_store.get(full_path);
318  if (me_dqm && me_dqm->kind() == MonitorElement::Kind::REAL)
319  dqm_flag = me_dqm->getFloatValue();
320  full_path = strip_dir + "/EventInfo/DCSSummary";
321  MonitorElement* me_dcs = dqm_store.get(full_path);
322  if (me_dcs && me_dcs->kind() == MonitorElement::Kind::REAL)
323  dcs_flag = me_dcs->getFloatValue();
325  SiStripCertification->Fill(fminf(dqm_flag, dcs_flag));
326 }
std::optional< T > tryToGet() const
Definition: EventSetup.h:109
MonitorElement * bookFloat(TString const &name, FUNC onbooking=NOOP())
Definition: DQMStore.h:80
edm::ESGetToken< TrackerTopology, TrackerTopologyRcd > tTopoToken_
virtual int getNbinsY() const
get # of bins in Y-axis
edm::ESGetToken< SiStripDetCabling, SiStripDetCablingRcd > detCablingToken_
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
void beginRun(edm::Run const &run, edm::EventSetup const &eSetup) override
virtual std::vector< dqm::harvesting::MonitorElement * > getContents(std::string const &path) const
Definition: DQMStore.cc:593
void setCurrentFolder(std::string const &fullpath) override
Definition: DQMStore.h:569
virtual int64_t getIntValue() const
Kind kind() const
Get the type of the monitor element.
const std::string & getName() const
get name of ME
edm::ESHandle< SiStripDetCabling > detCabling_
std::string pwd() override
Definition: DQMStore.h:567
Log< level::Error, false > LogError
assert(be >=bs)
void fillSiStripCertificationMEsAtLumi(DQMStore &dqm_store)
void Fill(long long x)
bool getData(T &iHolder) const
Definition: EventSetup.h:128
virtual void Reset()
Remove all data from the ME, keept the empty histogram with all its settings.
virtual int getNbinsX() const
get # of bins in X-axis
std::map< std::string, SubDetMEs > SubDetMEsMap
void resetSiStripCertificationMEs(DQMStore &dqm_store)
virtual MonitorElement * get(std::string const &fullpath) const
Definition: DQMStore.cc:673
SiStripCertificationInfo(const edm::ParameterSet &ps)
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
void fillDummySiStripCertification(DQMStore &dqm_store)
virtual void setBinLabel(int bin, const std::string &label, int axis=1)
set bin label for x, y or z axis (axis=1, 2, 3 respectively)
Log< level::Info, false > LogInfo
void endRun(edm::Run const &run, edm::EventSetup const &eSetup) override
void endLuminosityBlock(edm::LuminosityBlock const &lumiSeg, edm::EventSetup const &iSetup) override
void bookSiStripCertificationMEs(DQMStore &dqm_store)
edm::ESGetToken< RunInfo, RunInfoRcd > runInfoToken_
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
SiStripFolderOrganizer folder_organizer
std::pair< std::string, int32_t > GetSubDetAndLayer(const uint32_t &detid, const TrackerTopology *tTopo, bool ring_flag=false)
MonitorElement * SiStripCertificationSummaryMap
virtual double getFloatValue() const
void fillSiStripCertificationMEs(DQMStore &dqm_store, edm::EventSetup const &eSetup)
static bool goToDir(DQMStore &dqm_store, std::string const &name)
ESHandle< T > getHandle(const ESGetToken< T, R > &iToken) const
Definition: EventSetup.h:157
static void getTopFolderPath(DQMStore &dqm_store, std::string const &top_dir, std::string &path)
Definition: Run.h:45
void analyze(edm::Event const &, edm::EventSetup const &) override
#define LogDebug(id)
virtual void setAxisTitle(const std::string &title, int axis=1)
set x-, y- or z-axis title (axis=1, 2, 3 respectively)