CMS 3D CMS Logo

SiStripMonitorDigi.cc
Go to the documentation of this file.
1 // -*- c++ -*-
4 // Original Author: Dorian Kcira
5 // Created: Sat Feb 4 20:49:10 CET 2006
6 #include<fstream>
7 #include "TNamed.h"
27 
30 
31 #include "TMath.h"
33 
34 #include <iostream>
35 
42 
43 /* mia: but is there not a smarter way ?!?!?! */
44 const double NORBITS_PER_SECOND = 11223.;
45 const double NORBITS_PER_LS = 262144.;
46 
47 //--------------------------------------------------------------------------------------------
49  //dqmStore_(edm::Service<DQMStore>().operator->()),
50  conf_(iConfig),
51  show_mechanical_structure_view(true),
52  show_readout_view (false),
53  show_control_view (false),
54  select_all_detectors (true),
55  reset_each_run (false),
56  folder_organizer(),
57  m_cacheID_(0)
58 {
59  firstEvent = -1;
60  eventNb = 0;
61 
62  // Detector Partitions
63  SubDetPhasePartMap["TIB"] = "TI";
64  SubDetPhasePartMap["TID__MINUS"] = "TI";
65  SubDetPhasePartMap["TID__PLUS"] = "TI";
66  SubDetPhasePartMap["TOB"] = "TO";
67  SubDetPhasePartMap["TEC__MINUS"] = "TM";
68  SubDetPhasePartMap["TEC__PLUS"] = "TP";
69 
70  topFolderName_ = conf_.getParameter<std::string>("TopFolderName");
71 
72  // get Digi Producer List
73  digiProducerList = conf_.getParameter<std::vector<edm::InputTag> >("DigiProducersList");
74  for (auto const& tag : digiProducerList) {
76  }
77 
78  //get on/off option for every cluster from cfi
79  edm::ParameterSet ParametersNumberOfDigis = conf_.getParameter<edm::ParameterSet>("TH1NumberOfDigis");
80  layerswitchnumdigison = ParametersNumberOfDigis.getParameter<bool>("layerswitchon");
81  moduleswitchnumdigison = ParametersNumberOfDigis.getParameter<bool>("moduleswitchon");
82 
83  edm::ParameterSet ParametersNumberOfDigisPerStrip = conf_.getParameter<edm::ParameterSet>("TH1NumberOfDigisPerStrip");
84  moduleswitchnumdigispstripon = ParametersNumberOfDigisPerStrip.getParameter<bool>("moduleswitchon");
85 
86  edm::ParameterSet ParametersADCsHottestStrip = conf_.getParameter<edm::ParameterSet>("TH1ADCsHottestStrip");
87  layerswitchadchotteston = ParametersADCsHottestStrip.getParameter<bool>("layerswitchon");
88  moduleswitchadchotteston = ParametersADCsHottestStrip.getParameter<bool>("moduleswitchon");
89 
90  edm::ParameterSet ParametersADCsCoolestStrip = conf_.getParameter<edm::ParameterSet>("TH1ADCsCoolestStrip");
91  layerswitchadccooleston = ParametersADCsCoolestStrip.getParameter<bool>("layerswitchon");
92  moduleswitchadccooleston = ParametersADCsCoolestStrip.getParameter<bool>("moduleswitchon");
93 
94  edm::ParameterSet ParametersDigiADCs = conf_.getParameter<edm::ParameterSet>("TH1DigiADCs");
95  layerswitchdigiadcson = ParametersDigiADCs.getParameter<bool>("layerswitchon");
96  moduleswitchdigiadcson = ParametersDigiADCs.getParameter<bool>("moduleswitchon");
97 
98  edm::ParameterSet ParametersStripOccupancy = conf_.getParameter<edm::ParameterSet>("TH1StripOccupancy");
99  layerswitchstripoccupancyon = ParametersStripOccupancy.getParameter<bool>("layerswitchon");
100  moduleswitchstripoccupancyon = ParametersStripOccupancy.getParameter<bool>("moduleswitchon");
101 
102  edm::ParameterSet ParametersDigiProf = conf_.getParameter<edm::ParameterSet>("TProfNumberOfDigi");
103  layerswitchnumdigisprofon = ParametersDigiProf.getParameter<bool>("layerswitchon");
104 
105  edm::ParameterSet ParametersDigiADC = conf_.getParameter<edm::ParameterSet>("TProfDigiADC");
106  layerswitchdigiadcprofon = ParametersDigiProf.getParameter<bool>("layerswitchon");
107 
108  edm::ParameterSet ParametersTotDigiProf = conf_.getParameter<edm::ParameterSet>("TProfTotalNumberOfDigis");
109  subdetswitchtotdigiprofon = ParametersTotDigiProf.getParameter<bool>("subdetswitchon");
110 
111  edm::ParameterSet ParametersTotDigiFailure = conf_.getParameter<edm::ParameterSet>("TotalNumberOfDigisFailure");
112  subdetswitchtotdigifailureon = ParametersTotDigiFailure.getParameter<bool>("subdetswitchon");
113 
114  edm::ParameterSet ParametersDigiApvProf = conf_.getParameter<edm::ParameterSet>("TProfDigiApvCycle");
115  subdetswitchapvcycleprofon = ParametersDigiApvProf.getParameter<bool>("subdetswitchon");
116 
117  edm::ParameterSet ParametersDigiApvTH2 = conf_.getParameter<edm::ParameterSet>("TH2DigiApvCycle");
118  subdetswitchapvcycleth2on = ParametersDigiApvTH2.getParameter<bool>("subdetswitchon");
119 
120  edm::ParameterSet ParametersNApvShots = conf_.getParameter<edm::ParameterSet>("TH1NApvShots");
121  subdetswitchnapvshotson = ParametersNApvShots.getParameter<bool>("subdetswitchon");
122 
123  edm::ParameterSet ParametersNStripApvShots = conf_.getParameter<edm::ParameterSet>("TH1NStripsApvShots");
124  subdetswitchnstripsapvshotson = ParametersNStripApvShots.getParameter<bool>("subdetswitchon");
125 
126  edm::ParameterSet ParametersChargeMedianApvShots = conf_.getParameter<edm::ParameterSet>("TH1ChargeMedianApvShots");
127  subdetswitchchargemedianapvshotson = ParametersChargeMedianApvShots.getParameter<bool>("subdetswitchon");
128 
129  edm::ParameterSet ParametersApvNumberApvShots = conf_.getParameter<edm::ParameterSet>("TH1ApvNumApvShots");
130  subdetswitchapvshotsApvon = ParametersChargeMedianApvShots.getParameter<bool>("subdetswitchon");
131 
132  edm::ParameterSet ParametersNApvShotsProf = conf_.getParameter<edm::ParameterSet>("TProfNShotsVsTime");
133  subdetswitchapvshotsonprof = ParametersNApvShotsProf.getParameter<bool>("subdetswitchon");
134 
135  //Global Histograms
136 
137  edm::ParameterSet ParametersGlobalNApvShots = conf_.getParameter<edm::ParameterSet>("TH1NApvShots");
138  globalswitchnapvshotson = ParametersGlobalNApvShots.getParameter<bool>("globalswitchon");
139 
140  edm::ParameterSet ParametersGlobalNApvShotsProf = conf_.getParameter<edm::ParameterSet>("TProfGlobalNShots");
141  globalsummaryapvshotson = ParametersGlobalNApvShotsProf.getParameter<bool>("globalswitchon");
142 
143  edm::ParameterSet ParametersGlobalNStripApvShots = conf_.getParameter<edm::ParameterSet>("TH1NStripsApvShots");
144  globalswitchnstripsapvshotson = ParametersGlobalNStripApvShots.getParameter<bool>("globalswitchon");
145 
146  edm::ParameterSet ParametersGlobalApvNumApvShots = conf_.getParameter<edm::ParameterSet>("TH1ApvNumApvShots");
147  globalswitchapvshotsApvon = ParametersGlobalApvNumApvShots.getParameter<bool>("globalswitchon");
148 
149  edm::ParameterSet ParametersGlobalChargeMedianApvShots = conf_.getParameter<edm::ParameterSet>("TH1ChargeMedianApvShots");
150  globalswitchchargemedianapvshotson = ParametersGlobalChargeMedianApvShots.getParameter<bool>("globalswitchon");
151 
152  edm::ParameterSet ParametersGlobalNApvShotsTimeProf = conf_.getParameter<edm::ParameterSet>("TProfNShotsVsTime");
153  globalswitchapvshotsonprof = ParametersGlobalNApvShotsTimeProf.getParameter<bool>("globalswitchon");
154 
155  edm::ParameterSet ParametersGlobalNDigisFEDID = conf_.getParameter<edm::ParameterSet>("TProfNDigisFED");
156  globalswitchNDigisFEDID = ParametersGlobalNDigisFEDID.getParameter<bool>("globalswitchon");
157 
158  //Digi and APV Shots Maps
159 
160  digitkhistomapon = conf_.getParameter<bool>("TkHistoMap_On");
161 
162  shotshistomapon = conf_.getParameter<bool>("TkHistoMapNApvShots_On");
163  shotsstripshistomapon = conf_.getParameter<bool>("TkHistoMapNStripApvShots_On");
164  shotschargehistomapon = conf_.getParameter<bool>("TkHistoMapMedianChargeApvShots_On");
165 
166  createTrendMEs = conf_.getParameter<bool>("CreateTrendMEs");
167  Mod_On_ = conf_.getParameter<bool>("Mod_On");
168  m_trendVsLS = conf_.getParameter<bool>("TrendVsLS");
169  // xLumiProf = conf_.getParameter<int>("xLumiProf");
170  // Event History Producer
171  historyProducer_ = conf_.getParameter<edm::InputTag>("HistoryProducer");
172  historyProducerToken_ = consumes<EventWithHistory>(conf_.getParameter<edm::InputTag>("HistoryProducer") );
173 
174  // Apv Phase Producer
175  apvPhaseProducer_ = conf_.getParameter<edm::InputTag>("ApvPhaseProducer");
176  apvPhaseProducerToken_ = consumes<APVCyclePhaseCollection>(conf_.getParameter<edm::InputTag>("ApvPhaseProducer") );
177 
178  gtEvmToken_ = consumes<L1GlobalTriggerEvmReadoutRecord>(edm::InputTag("gtEvmDigis") );
179 
180  // Create DCS Status
181  bool checkDCS = conf_.getParameter<bool>("UseDCSFiltering");
182  if (checkDCS) dcsStatus_ = new SiStripDCSStatus(consumesCollector());
183  else dcsStatus_ = nullptr;
184 
185  //initialize boolean for the data-presence check (needed for TotalNumberOfDigisFailure histogram)
186  isStableBeams = false;
187  SBTransitionDone = false;
188  SBDeclaredAt = 0;
189  ignoreFirstNLumisections_ = TMath::Max ( 0 , ParametersTotDigiFailure.getParameter<int32_t>("ignoreFirstNLumisections") );
190  integrateNLumisections_ = TMath::Max ( 1 , ParametersTotDigiFailure.getParameter<int32_t>("integrateNLumisections") );
191 }
192 //------------------------------------------------------------------------------------------
193 
195  if (dcsStatus_) delete dcsStatus_;
196 }
197 
198 
200 {
202  unsigned long long cacheID = es.get<SiStripDetCablingRcd>().cacheIdentifier();
203  if (m_cacheID_ != cacheID) {
204  m_cacheID_ = cacheID;
205  edm::LogInfo("SiStripMonitorDigi") <<"SiStripMonitorDigi::bookHistograms: "
206  << " Creating MEs for new Cabling ";
207  createMEs( ibooker, es );
208  }
209  } else if (reset_each_run) {
210  edm::LogInfo("SiStripMonitorDigi") <<"SiStripMonitorDigi::bookHistograms: "
211  << " Resetting MEs ";
212  for (std::map<uint32_t, ModMEs >::const_iterator idet = DigiMEs.begin() ; idet!=DigiMEs.end() ; idet++) {
213  ResetModuleMEs(idet->first);
214  }
215  }
216 
217 }
218 
219 
220 
221 
222 
223 //--------------------------------------------------------------------------------------------
225 
227  //get FED cabling to know if SiStrip is in DAQ or no
228  unsigned long long cacheID = es.get<SiStripDetCablingRcd>().cacheIdentifier();
229  if (m_cacheID_ != cacheID) {
230  m_cacheID_ = cacheID;
231  }
233  es.get<SiStripDetCablingRcd>().get(detCabling_);
234 
235  //nFEDConnected = 0;
236  nFedTIB = 0;
237  nFedTIDm = 0;
238  nFedTIDp = 0;
239  nFedTECm = 0;
240  nFedTECp = 0;
241  nFedTOB = 0;
242 
243  //const int siStripFedIdMin = FEDNumbering::MINSiStripFEDID;
244  //const int siStripFedIdMax = FEDNumbering::MAXSiStripFEDID;
245 
247  if( es.find( recordKey ) != nullptr) {
248 
249  edm::ESHandle<RunInfo> sumFED;
250  es.get<RunInfoRcd>().get(sumFED);
251 
252  if ( sumFED.isValid() ) {
253  std::vector<int> FedsInIds= sumFED->m_fed_in;
254  for(unsigned int it = 0; it < FedsInIds.size(); ++it) {
255  int fedID = FedsInIds[it];
256  // if(fedID>=siStripFedIdMin && fedID<=siStripFedIdMax) ++nFEDConnected;
257  /* mia: but is there not a smarter way !?!?!? */
258  if ( fedID >= 50 && fedID <= 133 ) ++nFedTIB;
259  if ( fedID >= 134 && fedID <= 148 ) ++nFedTIDm;
260  if ( fedID >= 149 && fedID <= 163 ) ++nFedTIDp;
261  if ( fedID >= 164 && fedID <= 259 ) ++nFedTECm;
262  if ( fedID >= 260 && fedID <= 355 ) ++nFedTECp;
263  if ( fedID >= 356 && fedID <= 489 ) ++nFedTOB;
264 
265  }
266  }
267  }
268  }
269 
270 }
271 
272 //--------------------------------------------------------------------------------------------
274 }
275 
276 //--------------------------------------------------------------------------------------------
279  isStableBeams = false;
280  //integrate stats over several LS to prevent eventual low trigger rates
282  }
283 }
284 
285 //--------------------------------------------------------------------------------------------
287 
289  {
291  SBTransitionDone = true;
292  }
293 
295 
296  int nFeds [6] = { 96 , 96 , 84 , 15 , 15 , 134 }; // tec- , tec+ , tib , tid- , tid+ , tob
297  int nFedsConnected [6] = { nFedTECm , nFedTECp , nFedTIB , nFedTIDm , nFedTIDp , nFedTOB };
298 
300 
301  for (int ibin = 1; ibin<7;ibin++){
302 
304 
305  float fillvalue = 2;
306  if ( isStableBeams
307  // && (int)lb.id().luminosityBlock() > ignoreFirstNLumisections_ //ignore first X lumisections for HV rampup
309  && (float)nFedsConnected[ibin-1] / nFeds[ibin-1] > 0.5
310  && value < 50. ){
311 
312  fillvalue = 1.01;
313  }
314 
315  //account for integrated LS: fill previous bins as well
316  for ( int fillbin = (int)lb.id().luminosityBlock() - integrateNLumisections_ + 1 ; fillbin <= (int)lb.id().luminosityBlock() ; fillbin++ )
317  digiFailureMEs.SubDetDigiFailures2D->Fill( fillbin , ibin-1 , fillvalue );
318  }
319  }
320  }
321 
322 }
323 //--------------------------------------------------------------------------------------------
325 
327 
328  //Retrieve tracker topology from geometry
329  edm::ESHandle<TrackerTopology> tTopoHandle;
330  es.get<TrackerTopologyRcd>().get(tTopoHandle);
331  const TrackerTopology* const tTopo = tTopoHandle.product();
332 
333  // take from eventSetup the SiStripDetCabling object - here will use SiStripDetControl later on
335 
336  // get list of active detectors from SiStripDetCabling
337  std::vector<uint32_t> activeDets;
338  activeDets.clear(); // just in case
340 
341  SiStripSubStructure substructure;
342 
343  // remove any eventual zero elements - there should be none, but just in case
344  for(std::vector<uint32_t>::iterator idets = activeDets.begin(); idets != activeDets.end(); idets++){
345  if(*idets == 0) activeDets.erase(idets);
346  }
347 
348  // create SiStripFolderOrganizer
350 
351  // Create TkHistoMap for Digi and APV shots properies
352 
353  if (digitkhistomapon) tkmapdigi = new TkHistoMap(ibooker , topFolderName_,"TkHMap_NumberOfDigi", 0.0,true);
354  if (shotshistomapon) tkmapNApvshots = new TkHistoMap(ibooker , topFolderName_,"TkHMap_NApvShots", 0.0,true);
355  if (shotsstripshistomapon) tkmapNstripApvshot = new TkHistoMap(ibooker , topFolderName_,"TkHMap_NStripApvShots", 0.0,true);
356  if (shotschargehistomapon) tkmapMedianChargeApvshots= new TkHistoMap(ibooker , topFolderName_,"TkHMap_MedianChargeApvShots",0.0,true);
357 
358  std::vector<uint32_t> tibDetIds;
359 
360  // loop over detectors and book MEs
361  edm::LogInfo("SiStripTkDQM|SiStripMonitorDigi")<<"nr. of activeDets: "<<activeDets.size();
362  for(std::vector<uint32_t>::const_iterator detid_iterator = activeDets.begin(); detid_iterator!=activeDets.end(); detid_iterator++){
363 
364  uint32_t detid = (*detid_iterator);
365 
366  ModMEs local_modmes;
367 
368  local_modmes.NumberOfDigis = nullptr;
369  local_modmes.NumberOfDigisPerStrip = nullptr;
370  local_modmes.ADCsHottestStrip = nullptr;
371  local_modmes.ADCsCoolestStrip = nullptr;
372  local_modmes.DigiADCs = nullptr;
373  local_modmes.StripOccupancy = nullptr;
374 
375  if (Mod_On_) {
376 
377  // set appropriate folder using SiStripFolderOrganizer
378  folder_organizer.setDetectorFolder(detid, tTopo); // pass the detid to this method
379  if (reset_each_run) ResetModuleMEs(detid);
380  createModuleMEs( ibooker , local_modmes, detid );
381 
382  // append to DigiMEs
383  DigiMEs.insert( std::make_pair(detid, local_modmes));
384  }
385 
386  // Create Layer Level MEs if they are not created already
387  std::pair<std::string,int32_t> det_layer_pair = folder_organizer.GetSubDetAndLayer(detid, tTopo);
388  SiStripHistoId hidmanager;
389  std::string label = hidmanager.getSubdetid(detid,tTopo,false);
390 
391  // get detids for the layer
392  std::map<std::string, LayerMEs>::iterator iLayerME = LayerMEsMap.find(label);
393 
394  if(iLayerME==LayerMEsMap.end()) {
395  int32_t lnumber = det_layer_pair.second;
396  std::vector<uint32_t> layerDetIds;
397  if (det_layer_pair.first == "TIB") {
398  substructure.getTIBDetectors(activeDets,layerDetIds,lnumber,0,0,0);
399  } else if (det_layer_pair.first == "TOB") {
400  substructure.getTOBDetectors(activeDets,layerDetIds,lnumber,0,0);
401  } else if (det_layer_pair.first == "TID" && lnumber > 0) {
402  substructure.getTIDDetectors(activeDets,layerDetIds,2,abs(lnumber),0,0);
403  } else if (det_layer_pair.first == "TID" && lnumber < 0) {
404  substructure.getTIDDetectors(activeDets,layerDetIds,1,abs(lnumber),0,0);
405  } else if (det_layer_pair.first == "TEC" && lnumber > 0) {
406  substructure.getTECDetectors(activeDets,layerDetIds,2,abs(lnumber),0,0,0,0);
407  } else if (det_layer_pair.first == "TEC" && lnumber < 0) {
408  substructure.getTECDetectors(activeDets,layerDetIds,1,abs(lnumber),0,0,0,0);
409  }
410 
411  LayerDetMap[label] = layerDetIds;
412 
413  // book Layer plots
414  folder_organizer.setLayerFolder(detid,tTopo,det_layer_pair.second);
415  createLayerMEs( ibooker , label, layerDetIds.size() );
416  }
417 
418  // book sub-detector plots
419  auto sdet_pair = folder_organizer.getSubDetFolderAndTag(detid, tTopo);
420  if (SubDetMEsMap.find(sdet_pair.second) == SubDetMEsMap.end()){
421  ibooker.setCurrentFolder(sdet_pair.first);
422  createSubDetMEs( ibooker , sdet_pair.second );
423  }
424 
425  }//end of loop over detectors
426 
427  //book some Summary histograms on APV shots in the MechanicalView
428 
429  ibooker.setCurrentFolder(topFolderName_+"/MechanicalView/");
430 
432  const char* HistoName = "Summary Mean Apv shots for SubDets";
433  NApvShotsGlobalProf= ibooker.bookProfile(HistoName, HistoName,
434  6,0.5,6.5,
435  100, 0., 0., "" );
442  NApvShotsGlobalProf->setAxisTitle(" mean APV shots # / evt",2);
443  }
444 
445  //cumulative number of APV shots Vs Time
448  const char* HistoName = "NApv_Shots_vs_Time";
449  ShotsVsTimeApvShotsGlobal=ibooker.bookProfile(HistoName,HistoName,
450  Parameters.getParameter<int32_t>("Nbins"),
451  Parameters.getParameter<double>("xmin"),
452  Parameters.getParameter<double>("xmax"),
453  200, //that parameter should not be there !?
454  Parameters.getParameter<double>("ymin"),
455  Parameters.getParameter<double>("ymax"),
456  "" );
458  ShotsVsTimeApvShotsGlobal->setAxisTitle("# Apv Shots",2);
460  }
461 
462  //cumulative number of Strips in APV shots
465  const char* HistoName = "Number_of_Strips_in_Apv_Shots";
466  StripMultiplicityApvShotsGlobal=ibooker.book1D(HistoName,HistoName,
467  Parameters.getParameter<int32_t>("Nbins"),
468  Parameters.getParameter<double>("xmin"),
469  Parameters.getParameter<double>("xmax"));
470  StripMultiplicityApvShotsGlobal->setAxisTitle("# strips in Apv Shots",1);
471  }
472 
473  //cumulative number of APV shots
476  const char* HistoName = "Number_of_Apv_Shots";
477  NApvShotsGlobal=ibooker.book1D(HistoName,HistoName,
478  Parameters.getParameter<int32_t>("Nbins"),
479  Parameters.getParameter<double>("xmin"),
480  Parameters.getParameter<double>("xmax"));
481  NApvShotsGlobal->setAxisTitle("# Apv Shots",1);
482  }
483 
484  //cumulative Median Charge in APV shots
486  edm::ParameterSet Parameters = conf_.getParameter<edm::ParameterSet>("TH1ChargeMedianApvShots");
487  //dqmStore_->setCurrentFolder("SiStrip/MechanicalView/"+label);
488  const char* HistoName = "Apv_Shots_Charge_Median";
489  MedianChargeApvShotsGlobal=ibooker.book1D(HistoName,HistoName,
490  Parameters.getParameter<int32_t>("Nbins"),
491  Parameters.getParameter<double>("xmin"),
492  Parameters.getParameter<double>("xmax"));
493  MedianChargeApvShotsGlobal->setAxisTitle("Apv Shots Charge Median (ADC)",1);
494  }
495 
496  //cmulative APV number with shots
499  //dqmStore_->setCurrentFolder("SiStrip/MechanicalView/"+label);
500  const char* HistoName = "Apv_Shots_Apv_Number";
501  NApvApvShotsGlobal=ibooker.book1D(HistoName,HistoName,
502  Parameters.getParameter<int32_t>("Nbins"),
503  Parameters.getParameter<double>("xmin"),
504  Parameters.getParameter<double>("xmax"));
505  NApvApvShotsGlobal->setAxisTitle("Apv Number",1);
506  }
507 
509  // Number of digis per FED
510  edm::ParameterSet FEDDigi = conf_.getParameter<edm::ParameterSet>("TProfNDigisFED");
511  const char* HistoName = "NumberOfDigisinFED_v_FEDID";
512  //Using TProfile for average.
513  NumberOfFEDDigis = ibooker.bookProfile(HistoName,
514  HistoName,
515  FEDDigi.getParameter<int32_t>("Nbinsx"),
516  FEDDigi.getParameter<double>("xmin"),
517  FEDDigi.getParameter<double>("xmax"),
518  FEDDigi.getParameter<int32_t>("Nbinsy"),
519  FEDDigi.getParameter<double>("ymin"),
520  FEDDigi.getParameter<double>("ymax"));
521  NumberOfFEDDigis->setAxisTitle("FED ID",1);
522  NumberOfFEDDigis->setAxisTitle("Mean # of Digis in FED",2);
523  }
524 
525  //
526  // Book new histogram to monitor digi in last LS
527  //
528 
531 
532  std::stringstream ss;
533 
534  folder_organizer.getLayerFolderName(ss, 0, tTopo);
535  ibooker.setCurrentFolder(ss.str());
536 
538  const char* HistoName = "NumberOfDigisInLastLS";
539  digiFailureMEs.SubDetTotDigiProfLS= ibooker.bookProfile(HistoName, HistoName,
540  6,0.5,6.5,
541  0., 0., "" );
548  }
549 
551  std::string HistoName = "DataPresentInLS";
552  edm::ParameterSet Parameters = conf_.getParameter<edm::ParameterSet>("TotalNumberOfDigisFailure");
553 
554  digiFailureMEs.SubDetDigiFailures2D = ibooker.book2D(HistoName,HistoName,
555  Parameters.getParameter<int32_t>("Nbins"), //bins X
556  1, //xmin
557  Parameters.getParameter<int32_t>("Nbins") + 1, //xmax
558  6, //bins Y
559  0, //ymin
560  6); //ymax
561 
568  digiFailureMEs.SubDetDigiFailures2D->setAxisTitle("Luminosity Section");
569  }
570  }//end of if
571 
572 }//end of method
573 
574 //--------------------------------------------------------------------------------------------
576 
577  // Filter out events if DCS Event if requested
578  if (dcsStatus_ && !dcsStatus_->getStatus(iEvent, iSetup)) return;
579 
580  //Retrieve tracker topology from geometry
581  edm::ESHandle<TrackerTopology> tTopoHandle;
582  iSetup.get<TrackerTopologyRcd>().get(tTopoHandle);
583  const TrackerTopology* const tTopo = tTopoHandle.product();
584 
585  TotalNShots=0;
586 
587  runNb = iEvent.id().run();
588  eventNb++;
589 
590  float iOrbitVar = m_trendVsLS ? iEvent.orbitNumber()/NORBITS_PER_LS : iEvent.orbitNumber()/NORBITS_PER_SECOND ;
591 
592  digi_detset_handles.clear();
593 
594  std::vector<edm::EDGetTokenT<edm::DetSetVector<SiStripDigi> > >::const_iterator iToken = digiProducerTokenList.begin();
595  for(std::vector<edm::InputTag>::const_iterator iter = digiProducerList.begin(), iEnd = digiProducerList.end();
596  iter != iEnd; ++iter, ++iToken) {
598  iEvent.getByToken( *iToken, digi_handle );
599  if (digi_handle.isValid()) digi_detset_handles.push_back(digi_handle.product());
600  }
601 
602  // initialise # of clusters to zero
603  for (std::map<std::string, SubDetMEs>::iterator iSubdet = SubDetMEsMap.begin();
604  iSubdet != SubDetMEsMap.end(); iSubdet++) {
605  iSubdet->second.totNDigis = 0;
606  iSubdet->second.SubDetApvShots.clear();
607  }
608 
609  std::map<int,int> FEDID_v_digisum;
610 
611  for (std::map<std::string, std::vector< uint32_t > >::const_iterator iterLayer = LayerDetMap.begin();
612  iterLayer != LayerDetMap.end(); iterLayer++) {
613 
614  std::string layer_label = iterLayer->first;
615 
616  std::vector< uint32_t > layer_dets = iterLayer->second;
617  std::map<std::string, LayerMEs>::iterator iLayerME = LayerMEsMap.find(layer_label);
618 
619  //get Layer MEs
620  LayerMEs local_layermes;
621 
622  if(iLayerME == LayerMEsMap.end()) continue;
623  else local_layermes = iLayerME->second;
624 
625  int largest_adc_layer= 0;
626  int smallest_adc_layer= 99999;
627 
628  int ndigi_layer = 0;
629 
630  uint16_t iDet = 0;
631 
632  std::string subdet_label = "";
633 
634  // loop over all modules in the layer
635  for (std::vector< uint32_t >::const_iterator iterDets = layer_dets.begin() ;
636  iterDets != layer_dets.end() ; iterDets++) {
637  iDet++;
638 
639  // detid and type of ME
640  uint32_t detid = (*iterDets);
641 
642  // Get SubDet label once
643  if (subdet_label.empty()) subdet_label = folder_organizer.getSubDetFolderAndTag(detid, tTopo).second;
644 
645  // DetId and corresponding set of MEs
646 
647  std::map<uint32_t, ModMEs >::iterator pos = DigiMEs.find(detid);
648  ModMEs local_modmes = pos->second;
649 
650  // search digis of detid
651  int loc = getDigiSourceIndex(detid);
652 
653  int ndigi_det = 0;
654 
655  if (loc > -1) {
656  ndigi_det = (*(digi_detset_handles[loc]))[detid].size();
657 
659 
660 //Get all FED connections associated with given detID.
661 // All connections for a detid have same FED Id therefore one FEDID is associated with a given detID.
662 std::vector<const FedChannelConnection*> fedConnections = SiStripDetCabling_->getConnections(detid);
663 
664 // Filling FED Id associated clusters map.
665 
666 int good_fcc_index = -999;
667 for(unsigned int x=0;x<fedConnections.size();x++){
668  if(fedConnections[x]!=nullptr){
669  good_fcc_index = x;
670  break;
671  }
672 }
673 if(fedConnections[good_fcc_index]!=nullptr){
674  int temp_fedid = fedConnections[good_fcc_index]->fedId();
675  if(FEDID_v_digisum.find(temp_fedid) != FEDID_v_digisum.end()){
676  if(ndigi_det <1000 && ndigi_det>0){
677  FEDID_v_digisum[temp_fedid] = FEDID_v_digisum.find(temp_fedid)->second + ndigi_det;
678  }
679  }
680  else{
681  if(ndigi_det < 1000 && ndigi_det >0){
682  FEDID_v_digisum[temp_fedid] = ndigi_det;
683  }
684  }
685 }
686 else{
687  edm::LogInfo("SiStripMonitorDigi") << "SiStripMonitorDigi::analyze WARNING! no good connections for detid = " << detid << std::endl;
688 }
690 
691  APVShotFinder theShotFinder = APVShotFinder((*(digi_detset_handles[loc]))[detid]);
692  const std::vector<APVShot>& shots = theShotFinder.getShots();
693  AddApvShotsToSubDet(shots,SubDetMEsMap[subdet_label].SubDetApvShots);
694  if (shotshistomapon) tkmapNApvshots->fill(detid,shots.size());
697  }
698 
699  if(Mod_On_ && moduleswitchnumdigison && (local_modmes.NumberOfDigis != nullptr))
700  (local_modmes.NumberOfDigis)->Fill(ndigi_det);
701 
703  local_layermes.LayerNumberOfDigisProfile->Fill(iDet*1.0,ndigi_det);
704 
705  if (digitkhistomapon) tkmapdigi->fill(detid,ndigi_det);
706 
707  if (ndigi_det == 0) continue; // no digis for this detid => jump to next step of loop
708 
709  const edm::DetSet<SiStripDigi> & digi_detset = (*(digi_detset_handles[loc]))[detid];
710 
711  ndigi_layer += ndigi_det;
712 
713  // ADCs
714  int largest_adc=(digi_detset.data.begin())->adc();
715  int smallest_adc=(digi_detset.data.begin())->adc();
716 
717 
718  // Check if these parameters are really needed
719  float det_occupancy = 0.0;
720 
721  for(edm::DetSet<SiStripDigi>::const_iterator digiIter = digi_detset.data.begin();
722  digiIter!= digi_detset.data.end(); digiIter++ ){
723 
724  int this_adc = digiIter->adc();
725 
726  if (this_adc > 0.0) det_occupancy++;
727 
728  if(this_adc>largest_adc) largest_adc = this_adc;
729  if(this_adc<smallest_adc) smallest_adc = this_adc;
730 
731  if(Mod_On_ && moduleswitchnumdigispstripon && (local_modmes.NumberOfDigisPerStrip != nullptr) && (this_adc > 0.0) )
732  (local_modmes.NumberOfDigisPerStrip)->Fill(digiIter->strip());
733 
734  if(Mod_On_ && moduleswitchdigiadcson && (local_modmes.DigiADCs != nullptr) )
735  (local_modmes.DigiADCs)->Fill(static_cast<float>(this_adc));
736 
737  //Fill #ADCs for this digi at layer level
739  fillME(local_layermes.LayerDigiADCs , this_adc);
740  if (createTrendMEs) fillTrend(local_layermes.LayerDigiADCsTrend, this_adc, iOrbitVar);
741  }
742 
744  local_layermes.LayerDigiADCProfile->Fill(iDet*1.0,this_adc);
745 
746  }//end of loop over digis in this det
747 
748  // Occupancy
749  short nstrips = SiStripDetCabling_->nApvPairs(detid) * 2 * 128;
750  if (nstrips > 0 && det_occupancy > 0 ) {
751  det_occupancy = det_occupancy/nstrips;
752  if (Mod_On_ && moduleswitchstripoccupancyon && (local_modmes.StripOccupancy != nullptr))
753  (local_modmes.StripOccupancy)->Fill(det_occupancy);
755  fillME(local_layermes.LayerStripOccupancy, det_occupancy);
756  if (createTrendMEs) fillTrend(local_layermes.LayerStripOccupancyTrend, det_occupancy, iOrbitVar);
757  }
758  }
759 
760  if (largest_adc > largest_adc_layer) largest_adc_layer = largest_adc;
761  if (smallest_adc < smallest_adc_layer) smallest_adc_layer = smallest_adc;
762 
763  // nr. of adcs for hottest strip
764  if( Mod_On_ && moduleswitchadchotteston && (local_modmes.ADCsHottestStrip != nullptr))
765  (local_modmes.ADCsHottestStrip)->Fill(static_cast<float>(largest_adc));
766 
767  // nr. of adcs for coolest strip
768  if(Mod_On_ && moduleswitchadccooleston && (local_modmes.ADCsCoolestStrip != nullptr))
769  (local_modmes.ADCsCoolestStrip)->Fill(static_cast<float>(smallest_adc));
770 
771  }//end of loop over DetIds
772 
774  fillME(local_layermes.LayerNumberOfDigis,ndigi_layer);
775  if (createTrendMEs) fillTrend(local_layermes.LayerNumberOfDigisTrend, ndigi_layer, iOrbitVar);
776  }
778  fillME(local_layermes.LayerADCsHottestStrip,largest_adc_layer);
779  if (createTrendMEs) fillTrend(local_layermes.LayerADCsHottestStripTrend, largest_adc_layer, iOrbitVar);
780  }
782  fillME(local_layermes.LayerADCsCoolestStrip ,smallest_adc_layer);
783  if (createTrendMEs) fillTrend(local_layermes.LayerADCsCoolestStripTrend, smallest_adc_layer, iOrbitVar);
784  }
785 
786  std::map<std::string, SubDetMEs>::iterator iSubdet = SubDetMEsMap.find(subdet_label);
787  if(iSubdet != SubDetMEsMap.end()) {
788  iSubdet->second.totNDigis += ndigi_layer;
789  //std::cout << " totDigis" << iSubdet->second.totNDigis << " in " << subdet_label << std::endl;
790  }
791  }
792 
794 
795  //check Stable beams bit
797  iEvent.getByToken( gtEvmToken_, gtEvm_handle );
798  L1GlobalTriggerEvmReadoutRecord const* gtevm = gtEvm_handle.product();
799 
800  L1GtfeExtWord gtfeEvmExtWord;
801  if (gtevm)
802  {
803  gtfeEvmExtWord = gtevm->gtfeWord();
804  }
805  else
806  edm::LogInfo("DQMProvInfo") << " gtfeEvmWord inaccessible" ;
807 
808  /* mia: is there not a smarter way !?!?!?!? */
809  if ( gtfeEvmExtWord.beamMode() == 11 )
810  isStableBeams = true;
811  }
812 
813  for (std::map<std::string, SubDetMEs>::iterator it = SubDetMEsMap.begin();
814  it != SubDetMEsMap.end(); it++) {
815 
817  if (strcmp(it->first.c_str(),"TEC__MINUS")==0){
818  digiFailureMEs.SubDetTotDigiProfLS->Fill(1, it->second.totNDigis);
819  }else if (strcmp(it->first.c_str(),"TEC__PLUS")==0){
820  digiFailureMEs.SubDetTotDigiProfLS->Fill(2, it->second.totNDigis);
821  }else if (strcmp(it->first.c_str(),"TIB")==0){
822  digiFailureMEs.SubDetTotDigiProfLS->Fill(3, it->second.totNDigis);
823  }else if (strcmp(it->first.c_str(),"TID__MINUS")==0){
824  digiFailureMEs.SubDetTotDigiProfLS->Fill(4, it->second.totNDigis);
825  }else if (strcmp(it->first.c_str(),"TID__PLUS")==0){
826  digiFailureMEs.SubDetTotDigiProfLS->Fill(5, it->second.totNDigis);
827  }else if (strcmp(it->first.c_str(),"TOB")==0){
828  digiFailureMEs.SubDetTotDigiProfLS->Fill(6, it->second.totNDigis);
829  }
830  }
831 
833  if (strcmp(it->first.c_str(),"TEC__MINUS")==0){
834  NApvShotsGlobalProf->Fill(1,it->second.SubDetApvShots.size());
835  }else if (strcmp(it->first.c_str(),"TEC__PLUS")==0){
836  NApvShotsGlobalProf->Fill(2,it->second.SubDetApvShots.size());
837  }else if (strcmp(it->first.c_str(),"TIB")==0){
838  NApvShotsGlobalProf->Fill(3,it->second.SubDetApvShots.size());
839  }else if (strcmp(it->first.c_str(),"TID__MINUS")==0){
840  NApvShotsGlobalProf->Fill(4,it->second.SubDetApvShots.size());
841  }else if (strcmp(it->first.c_str(),"TID__PLUS")==0){
842  NApvShotsGlobalProf->Fill(5,it->second.SubDetApvShots.size());
843  }else if (strcmp(it->first.c_str(),"TOB")==0){
844  NApvShotsGlobalProf->Fill(6,it->second.SubDetApvShots.size());
845  }
846  }
847 
848  SubDetMEs subdetmes= it->second;
849  std::string subdet = it->first;
850 
851  // Fill APV shots histograms for SubDet
852 
853  uint ShotsSize=subdetmes.SubDetApvShots.size();
854  TotalNShots+=ShotsSize; //Counter for total Shots in the SiStrip Tracker
855 
856  if (subdetswitchnapvshotson ) subdetmes.SubDetNApvShotsTH1->Fill(ShotsSize);// N shots
857  if (subdetswitchapvshotsonprof) subdetmes.SubDetNApvShotsProf ->Fill(iOrbitVar,ShotsSize); //N shots vs time
858 
859  for (uint i=0; i< ShotsSize; ++i){ // Strip multiplicity, charge median and APV number distributions for APV shots
860 
861  if (subdetswitchapvshotsApvon) subdetmes.SubDetNApvShotsNApvTH1->Fill((subdetmes.SubDetApvShots[i].apvNumber()+1));//APV are defined by 0 to 5 I want 1 to 6
862  if (globalswitchapvshotsApvon) NApvApvShotsGlobal->Fill((subdetmes.SubDetApvShots[i].apvNumber()+1));
863 
864  if (subdetswitchnstripsapvshotson) subdetmes.SubDetNStripsApvShotsTH1->Fill(subdetmes.SubDetApvShots[i].nStrips());
866 
869 
870  }
871 
872  if (subdetswitchtotdigiprofon)subdetmes.SubDetTotDigiProf->Fill(iOrbitVar,subdetmes.totNDigis);
873  }
874 
877 
878 
880  std::map<int,int>::iterator it;
881  for(it=FEDID_v_digisum.begin(); it!=FEDID_v_digisum.end(); it++){
882  NumberOfFEDDigis->Fill(it->first,it->second);
883  }
884  }
885 
886  // get EventHistory
887 
888  edm::Handle<EventWithHistory> event_history;
889  iEvent.getByToken(historyProducerToken_,event_history);
890 
891  // get Phase of APV
892  edm::Handle<APVCyclePhaseCollection> apv_phase_collection;
893  iEvent.getByToken(apvPhaseProducerToken_,apv_phase_collection);
894 
895  if (event_history.isValid()
896  && !event_history.failedToGet()
897  && apv_phase_collection.isValid()
898  && !apv_phase_collection.failedToGet()) {
899 
900 
901  long long tbx = event_history->absoluteBX();
902 
903 
904  for (std::map<std::string, SubDetMEs>::iterator it = SubDetMEsMap.begin();
905  it != SubDetMEsMap.end(); it++) {
906 
907  SubDetMEs subdetmes;
908  std::string subdet = it->first;
909  subdetmes = it->second;
910 
911  int the_phase = APVCyclePhaseCollection::invalid;
912  long long tbx_corr = tbx;
913 
914  if (SubDetPhasePartMap.find(subdet) != SubDetPhasePartMap.end()) the_phase = apv_phase_collection->getPhase(SubDetPhasePartMap[subdet]);
915  if(the_phase==APVCyclePhaseCollection::nopartition ||
917  the_phase==APVCyclePhaseCollection::invalid) the_phase=30;
918  tbx_corr -= the_phase;
919 
920  if (subdetswitchapvcycleprofon)subdetmes.SubDetDigiApvProf->Fill(tbx_corr%70,subdetmes.totNDigis);
921  if (subdetswitchapvcycleth2on) subdetmes.SubDetDigiApvTH2->Fill(tbx_corr%70,subdetmes.totNDigis);
922  }
923  }
924 }//end of method analyze
925 //--------------------------------------------------------------------------------------------
927  std::map<uint32_t, ModMEs >::iterator pos = DigiMEs.find(idet);
928  ModMEs mod_me = pos->second;
929 
934  if(Mod_On_ && moduleswitchdigiadcson) mod_me.DigiADCs->Reset();
936 
937 }
938 //------------------------------------------------------------------------------------------
939 MonitorElement* SiStripMonitorDigi::bookMETrend(DQMStore::IBooker & ibooker , const char* ParameterSetLabel, const char* HistoName )
940 {
941  edm::ParameterSet ParametersTrend = conf_.getParameter<edm::ParameterSet>("Trending");
942  MonitorElement* me = ibooker.bookProfile(HistoName,HistoName,
943  ParametersTrend.getParameter<int32_t>("Nbins"),
944  // 0,
945  ParametersTrend.getParameter<double>("xmin"),
946  ParametersTrend.getParameter<double>("xmax"),
947  // ParametersTrend.getParameter<int32_t>("Nbins"),
948  100, //that parameter should not be there !?
949  ParametersTrend.getParameter<double>("ymin"),
950  ParametersTrend.getParameter<double>("ymax"),
951  "" );
952  if(!me) return me;
953 
954  if(m_trendVsLS ) me->setAxisTitle("Lumisection",1);
955  else me->setAxisTitle("Event Time in Seconds",1);
956  if (me->kind() == MonitorElement::DQM_KIND_TPROFILE) me->getTH1()->SetCanExtend(TH1::kAllAxes);
957  return me;
958 }
959 
960 //------------------------------------------------------------------------------------------
961 MonitorElement* SiStripMonitorDigi::bookME1D(DQMStore::IBooker & ibooker , const char* ParameterSetLabel, const char* HistoName )
962 {
964  return ibooker.book1D(HistoName,HistoName,
965  Parameters.getParameter<int32_t>("Nbinx"),
966  Parameters.getParameter<double>("xmin"),
967  Parameters.getParameter<double>("xmax")
968  );
969 }
970 
971 //--------------------------------------------------------------------------------
972 void SiStripMonitorDigi::fillTrend(MonitorElement* me ,float value, float timeinorbit)
973 {
974  if(!me) return;
975  me->Fill(timeinorbit,value);
976 }
977 
978 //
979 // -- Create Module Level MEs
980 //
981 void SiStripMonitorDigi::createModuleMEs(DQMStore::IBooker & ibooker , ModMEs& mod_single, uint32_t detid ) {
982 
983  // use SistripHistoId for producing histogram id (and title)
984  SiStripHistoId hidmanager;
985  std::string hid;
986 
987  //nr. of digis per module
989  hid = hidmanager.createHistoId("NumberOfDigis","det",detid);
990  mod_single.NumberOfDigis = ibooker.book1D(hid, hid, 21, -0.5, 20.5);
991  ibooker.tag(mod_single.NumberOfDigis, detid);
992  mod_single.NumberOfDigis->setAxisTitle("number of digis in one detector module");
993  mod_single.NumberOfDigis->getTH1()->StatOverflows(kTRUE); // over/underflows in Mean calculation
994  }
995 
996  //nr. of digis per strip in module
998  hid = hidmanager.createHistoId("NumberOfDigisPerStrip","det",detid);
999  short nstrips = SiStripDetCabling_->nApvPairs(detid) * 2 * 128;
1000  mod_single.NumberOfDigisPerStrip = ibooker.book1D(hid, hid, nstrips, -0.5, nstrips+0.5);
1001  ibooker.tag(mod_single.NumberOfDigisPerStrip, detid);
1002  mod_single.NumberOfDigisPerStrip->setAxisTitle("number of (digis > 0) per strip");
1003  mod_single.NumberOfDigisPerStrip->getTH1()->StatOverflows(kTRUE); // over/underflows in Mean calculation
1004  }
1005  //#ADCs for hottest strip
1007  hid = hidmanager.createHistoId("ADCsHottestStrip","det",detid);
1008  mod_single.ADCsHottestStrip = bookME1D(ibooker , "TH1ADCsHottestStrip", hid.c_str() );
1009  ibooker.tag(mod_single.ADCsHottestStrip, detid); // 6 APVs -> 768 strips
1010  mod_single.ADCsHottestStrip->setAxisTitle("number of ADCs for hottest strip");
1011  }
1012 
1013  //#ADCs for coolest strip
1015  hid = hidmanager.createHistoId("ADCsCoolestStrip","det",detid);
1016  mod_single.ADCsCoolestStrip = bookME1D(ibooker , "TH1ADCsCoolestStrip", hid.c_str() );
1017  ibooker.tag(mod_single.ADCsCoolestStrip, detid);
1018  mod_single.ADCsCoolestStrip->setAxisTitle("number of ADCs for coolest strip");
1019  }
1020 
1021  //#ADCs for each digi
1023  hid = hidmanager.createHistoId("DigiADCs","det",detid);
1024  mod_single.DigiADCs = bookME1D( ibooker , "TH1DigiADCs", hid.c_str() );
1025  ibooker.tag(mod_single.DigiADCs, detid);
1026  mod_single.DigiADCs->setAxisTitle("number of ADCs for each digi");
1027  }
1028 
1029  //Strip occupancy
1031  hid = hidmanager.createHistoId("StripOccupancy","det",detid);
1032  mod_single.StripOccupancy = bookME1D( ibooker , "TH1StripOccupancy", hid.c_str() );
1033  ibooker.tag(mod_single.StripOccupancy, detid);
1034  mod_single.StripOccupancy->setAxisTitle("strip occupancy");
1035  }
1036 
1037 }
1038 
1039 //
1040 // -- Create Module Level MEs
1041 //
1042 
1044 
1045  std::map<std::string, LayerMEs>::iterator iLayerME = LayerMEsMap.find(label);
1046  if(iLayerME==LayerMEsMap.end()){
1047  SiStripHistoId hidmanager;
1048  LayerMEs layerMEs;
1049  layerMEs.LayerNumberOfDigis = nullptr;
1050  layerMEs.LayerNumberOfDigisTrend = nullptr;
1051  layerMEs.LayerADCsHottestStrip = nullptr;
1052  layerMEs.LayerADCsHottestStripTrend = nullptr;
1053  layerMEs.LayerADCsCoolestStrip = nullptr;
1054  layerMEs.LayerADCsCoolestStripTrend = nullptr;
1055  layerMEs.LayerDigiADCs = nullptr;
1056  layerMEs.LayerDigiADCsTrend = nullptr;
1057  layerMEs.LayerStripOccupancy = nullptr;
1058  layerMEs.LayerStripOccupancyTrend = nullptr;
1059  layerMEs.LayerNumberOfDigisProfile = nullptr;
1060  layerMEs.LayerDigiADCProfile = nullptr;
1061 
1062 
1063  //#Digis
1064  if(layerswitchnumdigison) {
1065  layerMEs.LayerNumberOfDigis=bookME1D( ibooker , "TH1NumberOfDigis", hidmanager.createHistoLayer("Summary_TotalNumberOfDigis","layer",label,"").c_str() );
1066  if (createTrendMEs) layerMEs.LayerNumberOfDigisTrend=bookMETrend( ibooker , "TH1NumberOfDigis", hidmanager.createHistoLayer("Trend_NumberOfDigis","layer",label,"").c_str() );
1067  }
1068 
1069  //#ADCs for hottest strip
1071  layerMEs.LayerADCsHottestStrip=bookME1D( ibooker , "TH1ADCsHottestStrip", hidmanager.createHistoLayer("Summary_ADCsHottestStrip","layer",label,"").c_str() );
1072  if (createTrendMEs) layerMEs.LayerADCsHottestStripTrend=bookMETrend( ibooker , "TH1ADCsHottestStrip", hidmanager.createHistoLayer("Trend_ADCsHottestStrip","layer",label,"").c_str() );
1073  }
1074 
1075  //#ADCs for coolest strip
1077  layerMEs.LayerADCsCoolestStrip=bookME1D(ibooker , "TH1ADCsCoolestStrip", hidmanager.createHistoLayer("Summary_ADCsCoolestStrip","layer",label,"").c_str() );
1078  if (createTrendMEs) layerMEs.LayerADCsCoolestStripTrend=bookMETrend( ibooker , "TH1ADCsCoolestStrip", hidmanager.createHistoLayer("Trend_ADCsCoolestStrip","layer",label,"").c_str() );
1079  }
1080 
1081  //#ADCs for each digi
1082  if(layerswitchdigiadcson) {
1083  layerMEs.LayerDigiADCs=bookME1D( ibooker , "TH1DigiADCs", hidmanager.createHistoLayer("Summary_DigiADCs","layer",label,"").c_str() );
1084  if (createTrendMEs) layerMEs.LayerDigiADCsTrend=bookMETrend( ibooker , "TH1DigiADCs", hidmanager.createHistoLayer("Trend_DigiADCs","layer",label,"").c_str() );
1085  }
1086 
1087  //Strip Occupancy
1089  layerMEs.LayerStripOccupancy=bookME1D( ibooker , "TH1StripOccupancy", hidmanager.createHistoLayer("Summary_StripOccupancy","layer",label,"").c_str() );
1090  if (createTrendMEs) layerMEs.LayerStripOccupancyTrend=bookMETrend( ibooker , "TH1StripOccupancy", hidmanager.createHistoLayer("Trend_StripOccupancy","layer",label,"").c_str() );
1091 
1092  }
1093  // # of Digis
1095  std::string hid = hidmanager.createHistoLayer("NumberOfDigiProfile","layer",label,"");
1096  layerMEs.LayerNumberOfDigisProfile = ibooker.bookProfile(hid, hid, ndets, 0.5, ndets+0.5,21, -0.5, 200.5);
1097  }
1098 
1099  // # of Digis
1101  std::string hid = hidmanager.createHistoLayer("DigiADCProfile","layer",label,"");
1102  layerMEs.LayerDigiADCProfile = ibooker.bookProfile(hid, hid, ndets, 0.5, ndets+0.5, 64, -0.5, 255.5);
1103  }
1104 
1105  LayerMEsMap[label]=layerMEs;
1106  }
1107 }
1108 //
1109 // -- Create SubDetector MEs
1110 //
1112 
1113  SubDetMEs subdetMEs;
1114  subdetMEs.totNDigis = 0;
1115  subdetMEs.SubDetTotDigiProf = nullptr;
1116  subdetMEs.SubDetDigiApvProf = nullptr;
1117  subdetMEs.SubDetDigiApvTH2 = nullptr;
1118 
1119  subdetMEs.SubDetApvShots.clear();
1120  subdetMEs.SubDetNApvShotsTH1 = nullptr;
1121  subdetMEs.SubDetChargeMedianApvShotsTH1 = nullptr;
1122  subdetMEs.SubDetNStripsApvShotsTH1 = nullptr;
1123  subdetMEs.SubDetNApvShotsProf = nullptr;
1124 
1126 
1127  // Total Number of Digi - Profile
1129  edm::ParameterSet Parameters = conf_.getParameter<edm::ParameterSet>("TProfTotalNumberOfDigis");
1130  HistoName = "TotalNumberOfDigiProfile__" + label;
1131  subdetMEs.SubDetTotDigiProf=ibooker.bookProfile(HistoName,HistoName,
1132  Parameters.getParameter<int32_t>("Nbins"),
1133  Parameters.getParameter<double>("xmin"),
1134  Parameters.getParameter<double>("xmax"),
1135  100, //that parameter should not be there !?
1136  Parameters.getParameter<double>("ymin"),
1137  Parameters.getParameter<double>("ymax"),
1138  "" );
1139  if(m_trendVsLS) subdetMEs.SubDetTotDigiProf->setAxisTitle("Lumisection",1);
1140  else subdetMEs.SubDetTotDigiProf->setAxisTitle("Event Time in Seconds",1);
1141 
1142  if (subdetMEs.SubDetTotDigiProf->kind() == MonitorElement::DQM_KIND_TPROFILE) subdetMEs.SubDetTotDigiProf->getTH1()->SetCanExtend(TH1::kAllAxes);
1143  }
1144 
1145  // Number of Digi vs Bx - Profile
1148  HistoName = "Digi_vs_ApvCycle__" + label;
1149  subdetMEs.SubDetDigiApvProf=ibooker.bookProfile(HistoName,HistoName,
1150  Parameters.getParameter<int32_t>("Nbins"),
1151  Parameters.getParameter<double>("xmin"),
1152  Parameters.getParameter<double>("xmax"),
1153  200, //that parameter should not be there !?
1154  Parameters.getParameter<double>("ymin"),
1155  Parameters.getParameter<double>("ymax"),
1156  "" );
1157  subdetMEs.SubDetDigiApvProf->setAxisTitle("ApvCycle (Corrected Absolute Bx % 70)",1);
1158  }
1159 
1160  // Number of Digi vs Bx - TH2
1163  //dqmStore_->setCurrentFolder("SiStrip/MechanicalView/"+label);
1164  HistoName = "Digi_vs_ApvCycle_2D__" + label;
1165  // Adjusting the scale for 2D histogram
1166  double h2ymax = 9999.0;
1167  double yfact = Parameters.getParameter<double>("yfactor");
1168  if(label.find("TIB") != std::string::npos) h2ymax = (6984.*256.)*yfact;
1169  else if (label.find("TID") != std::string::npos) h2ymax = (2208.*256.)*yfact;
1170  else if (label.find("TOB") != std::string::npos) h2ymax = (12906.*256.)*yfact;
1171  else if (label.find("TEC") != std::string::npos) h2ymax = (7552.*2.*256.)*yfact;
1172  subdetMEs.SubDetDigiApvTH2=ibooker.book2D(HistoName,HistoName,
1173  Parameters.getParameter<int32_t>("Nbins"),
1174  Parameters.getParameter<double>("xmin"),
1175  Parameters.getParameter<double>("xmax"),
1176  Parameters.getParameter<int32_t>("Nbinsy"), //it was 100 that parameter should not be there !?
1177  Parameters.getParameter<double>("ymin"),
1178  h2ymax);
1179  subdetMEs.SubDetDigiApvTH2->setAxisTitle("absolute Bx mod(70)",1);
1180  }
1181 
1182  //Number of APV Shots
1185  //dqmStore_->setCurrentFolder("SiStrip/MechanicalView/"+label);
1186  HistoName = "Number_of_Apv_Shots_" + label;
1187  subdetMEs.SubDetNApvShotsTH1=ibooker.book1D(HistoName,HistoName,
1188  Parameters.getParameter<int32_t>("Nbins"),
1189  Parameters.getParameter<double>("xmin"),
1190  Parameters.getParameter<double>("xmax"));
1191  subdetMEs.SubDetNApvShotsTH1->setAxisTitle("# Apv Shots",1);
1192  }
1193 
1194  //Strip multiplicity of APV Shots
1197  //dqmStore_->setCurrentFolder("SiStrip/MechanicalView/"+label);
1198  HistoName = "Number_of_Strips_in_Apv_Shots_" + label;
1199  subdetMEs.SubDetNStripsApvShotsTH1=ibooker.book1D(HistoName,HistoName,
1200  Parameters.getParameter<int32_t>("Nbins"),
1201  Parameters.getParameter<double>("xmin"),
1202  Parameters.getParameter<double>("xmax"));
1203  subdetMEs.SubDetNStripsApvShotsTH1->setAxisTitle("# strips in Apv Shots",1);
1204  }
1205 
1206  //Charge median of APV Shots
1208  edm::ParameterSet Parameters = conf_.getParameter<edm::ParameterSet>("TH1ChargeMedianApvShots");
1209  //dqmStore_->setCurrentFolder("SiStrip/MechanicalView/"+label);
1210  HistoName = "Apv_Shots_Charge_Median_" + label;
1211  subdetMEs.SubDetChargeMedianApvShotsTH1=ibooker.book1D(HistoName,HistoName,
1212  Parameters.getParameter<int32_t>("Nbins"),
1213  Parameters.getParameter<double>("xmin"),
1214  Parameters.getParameter<double>("xmax"));
1215  subdetMEs.SubDetChargeMedianApvShotsTH1->setAxisTitle("Apv Shots Charge Median (ADC)",1);
1216  }
1217 
1218 
1221  //dqmStore_->setCurrentFolder("SiStrip/MechanicalView/"+label);
1222  HistoName = "Apv_Shots_Apv_Number_" + label;
1223  subdetMEs.SubDetNApvShotsNApvTH1=ibooker.book1D(HistoName,HistoName,
1224  Parameters.getParameter<int32_t>("Nbins"),
1225  Parameters.getParameter<double>("xmin"),
1226  Parameters.getParameter<double>("xmax"));
1227  subdetMEs.SubDetNApvShotsNApvTH1->setAxisTitle("Apv Number",1);
1228  }
1229 
1230 
1231 
1232 
1233 
1234  //APV Shots number Vs time
1237  HistoName = "NApv_Shots_vs_Time_" + label;
1238  subdetMEs.SubDetNApvShotsProf=ibooker.bookProfile(HistoName,HistoName,
1239  Parameters.getParameter<int32_t>("Nbins"),
1240  Parameters.getParameter<double>("xmin"),
1241  Parameters.getParameter<double>("xmax"),
1242  200, //that parameter should not be there !?
1243  Parameters.getParameter<double>("ymin"),
1244  Parameters.getParameter<double>("ymax"),
1245  "" );
1246  subdetMEs.SubDetNApvShotsProf->setAxisTitle("Time (s)",1);
1247  subdetMEs.SubDetNApvShotsProf->setAxisTitle("# Apv Shots",2);
1248  if (subdetMEs.SubDetNApvShotsProf->kind() == MonitorElement::DQM_KIND_TPROFILE) subdetMEs.SubDetNApvShotsProf->getTH1()->SetCanExtend(TH1::kAllAxes);
1249  }
1250 
1251 
1252 
1253 
1254 
1255 
1256 
1257  SubDetMEsMap[label]=subdetMEs;
1258 }
1259 //
1260 // -- Get DetSet vector for a given Detector
1261 //
1263  int location = -1;
1264  for (unsigned int ival = 0; ival < digi_detset_handles.size(); ++ival){
1266  if(isearch != digi_detset_handles[ival]->end()) {
1267  location = ival;
1268  break;
1269  }
1270  }
1271  return location;
1272 }
1273 
1274 void SiStripMonitorDigi::AddApvShotsToSubDet(const std::vector<APVShot> & moduleShots, std::vector<APVShot> & subdetShots){
1275 
1276  for (uint i=0; i<moduleShots.size(); i++){
1277  subdetShots.push_back(moduleShots[i]);
1278  }
1279 }
1280 
1281 void SiStripMonitorDigi::FillApvShotsMap(TkHistoMap* the_map, const std::vector<APVShot> & shots, uint32_t id ,int mode){
1282 
1283  for (uint i=0; i<shots.size(); i++){
1284  if (mode==1) the_map->fill(id,shots[i].nStrips()); //mode == 1 fill with strip multiplicity
1285  if (mode==2) the_map->fill(id,shots[i].median()); // mode == 2 fill with charge median
1286  }
1287 }
1288 
1289 //define this as a plug-in
int adc(sample_type sample)
get the ADC sample (12 bits)
RunNumber_t run() const
Definition: EventID.h:39
MonitorElement * bookME1D(DQMStore::IBooker &ibooker, const char *ParameterSetLabel, const char *HistoName)
LuminosityBlockID id() const
void ResetModuleMEs(uint32_t idet)
T getParameter(std::string const &) const
std::map< std::string, LayerMEs > LayerMEsMap
void addActiveDetectorsRawIds(std::vector< uint32_t > &) const
void createMEs(DQMStore::IBooker &ibooker, const edm::EventSetup &es)
MonitorElement * LayerNumberOfDigisTrend
std::pair< const std::string, const char * > getSubDetFolderAndTag(const uint32_t &detid, const TrackerTopology *tTopo)
MonitorElement * bookProfile(Args &&...args)
Definition: DQMStore.h:157
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:460
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
MonitorElement * LayerStripOccupancy
MonitorElement * LayerADCsHottestStrip
const double NORBITS_PER_LS
edm::InputTag historyProducer_
const L1GtfeExtWord gtfeWord() const
get / set GTFE word (record) in the GT readout record
MonitorElement * LayerADCsHottestStripTrend
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)
long long absoluteBX(const unsigned int ev1) const
MonitorElement * NApvShotsGlobalProf
static HCTypeTag findType(char const *iTypeName)
find a type based on the types name, if not found will return default HCTypeTag
std::map< uint32_t, ModMEs > DigiMEs
std::map< std::string, std::string > SubDetPhasePartMap
void getLayerFolderName(std::stringstream &ss, uint32_t rawdetid, const TrackerTopology *tTopo, bool ring_flag=false)
MonitorElement * MedianChargeApvShotsGlobal
MonitorElement * StripMultiplicityApvShotsGlobal
TkHistoMap * tkmapNstripApvshot
void setLayerFolder(uint32_t rawdetid, const TrackerTopology *tTopo, int32_t layer=0, bool ring_flag=false)
MonitorElement * LayerNumberOfDigisProfile
void bookHistograms(DQMStore::IBooker &, edm::Run const &, edm::EventSetup const &) override
const eventsetup::EventSetupRecord * find(const eventsetup::EventSetupRecordKey &) const
Definition: EventSetup.cc:91
void dqmBeginRun(const edm::Run &r, const edm::EventSetup &c) override
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
void Fill(long long x)
std::vector< APVShot > SubDetApvShots
void setDetectorFolder(uint32_t rawdetid, const TrackerTopology *tTopo)
unsigned long long m_cacheID_
MonitorElement * SubDetNApvShotsNApvTH1
void createSubDetMEs(DQMStore::IBooker &ibooker, std::string label)
const std::vector< const FedChannelConnection * > & getConnections(uint32_t det_id) const
bool getStatus(edm::Event const &e, edm::EventSetup const &eSetup)
MonitorElement * NumberOfDigisPerStrip
const std::vector< APVShot > & getShots() const
int iEvent
Definition: GenABIO.cc:230
MonitorElement * ADCsCoolestStrip
const int getPhase(const std::string partition) const
vector< ParameterSet > Parameters
SiStripDCSStatus * dcsStatus_
const double NORBITS_PER_SECOND
edm::ESHandle< SiStripDetCabling > SiStripDetCabling_
void getTOBDetectors(const std::vector< uint32_t > &inputDetRawIds, std::vector< uint32_t > &tobDetRawIds, uint32_t layer=0, uint32_t bkw_frw=0, uint32_t rod=0) const
MonitorElement * LayerADCsCoolestStripTrend
void Fill(HcalDetId &id, double val, std::vector< TH2F > &depth)
MonitorElement * SubDetNStripsApvShotsTH1
DigiFailureMEs digiFailureMEs
std::vector< int > m_fed_in
Definition: RunInfo.h:26
ConsumesCollector consumesCollector()
Use a ConsumesCollector to gather consumes information from helper functions.
void fill(uint32_t &detid, float value)
Definition: TkHistoMap.cc:180
edm::EDGetTokenT< EventWithHistory > historyProducerToken_
void fillME(MonitorElement *ME, float value1)
MonitorElement * NApvApvShotsGlobal
MonitorElement * book1D(Args &&...args)
Definition: DQMStore.h:115
std::vector< const edm::DetSetVector< SiStripDigi > * > digi_detset_handles
void tag(MonitorElement *, unsigned int)
Definition: DQMStore.cc:289
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
TH1 * getTH1(void) const
void endLuminosityBlock(const edm::LuminosityBlock &, const edm::EventSetup &) override
#define end
Definition: vmac.h:37
Definition: value.py:1
int orbitNumber() const
Definition: EventBase.h:67
Kind kind(void) const
Get the type of the monitor element.
std::map< std::string, SubDetMEs > SubDetMEsMap
std::string getSubdetid(uint32_t id, const TrackerTopology *tTopo, bool flag_ring)
MonitorElement * ADCsHottestStrip
bool isValid() const
Definition: HandleBase.h:74
void createLayerMEs(DQMStore::IBooker &ibooker, std::string label, int ndet)
void fillTrend(MonitorElement *me, float value, float timeinorbit)
edm::EDGetTokenT< L1GlobalTriggerEvmReadoutRecord > gtEvmToken_
MonitorElement * NApvShotsGlobal
std::vector< edm::EDGetTokenT< edm::DetSetVector< SiStripDigi > > > digiProducerTokenList
MonitorElement * LayerDigiADCProfile
T Max(T a, T b)
Definition: MathUtil.h:44
bool failedToGet() const
Definition: HandleBase.h:78
int getDigiSourceIndex(uint32_t id)
void analyze(const edm::Event &, const edm::EventSetup &) override
SiStripMonitorDigi(const edm::ParameterSet &)
edm::InputTag apvPhaseProducer_
void setCurrentFolder(const std::string &fullpath)
Definition: DQMStore.cc:277
std::map< std::string, std::vector< uint32_t > > LayerDetMap
T const * product() const
Definition: Handle.h:81
MonitorElement * book2D(Args &&...args)
Definition: DQMStore.h:133
std::string createHistoId(std::string description, std::string id_type, uint32_t component_id)
MonitorElement * SubDetChargeMedianApvShotsTH1
const T & get() const
Definition: EventSetup.h:55
LuminosityBlockNumber_t luminosityBlock() const
void beginLuminosityBlock(const edm::LuminosityBlock &, const edm::EventSetup &) override
std::string topFolderName_
edm::ParameterSet conf_
std::string HistoName
std::pair< std::string, int32_t > GetSubDetAndLayer(const uint32_t &detid, const TrackerTopology *tTopo, bool ring_flag=false)
void getTECDetectors(const std::vector< uint32_t > &inputDetRawIds, std::vector< uint32_t > &tecDetRawIds, uint32_t side=0, uint32_t wheel=0, uint32_t petal_bkw_frw=0, uint32_t petal=0, uint32_t ring=0, uint32_t ster=0) const
std::vector< edm::InputTag > digiProducerList
const uint16_t nApvPairs(uint32_t det_id) const
TkHistoMap * tkmapMedianChargeApvshots
edm::EDGetTokenT< APVCyclePhaseCollection > apvPhaseProducerToken_
double getBinContent(int binx) const
get content of bin (1-D)
edm::EventID id() const
Definition: EventBase.h:60
collection_type data
Definition: DetSet.h:78
TkHistoMap * tkmapNApvshots
MonitorElement * LayerStripOccupancyTrend
void getTIBDetectors(const std::vector< uint32_t > &inputDetRawIds, std::vector< uint32_t > &tibDetRawIds, uint32_t layer=0, uint32_t bkw_frw=0, uint32_t int_ext=0, uint32_t string=0) const
MonitorElement * LayerADCsCoolestStrip
MonitorElement * bookMETrend(DQMStore::IBooker &ibooker, const char *ParameterSetLabel, const char *HistoName)
void AddApvShotsToSubDet(const std::vector< APVShot > &, std::vector< APVShot > &)
SiStripFolderOrganizer folder_organizer
void getTIDDetectors(const std::vector< uint32_t > &inputDetRawIds, std::vector< uint32_t > &tidDetRawIds, uint32_t side=0, uint32_t wheel=0, uint32_t ring=0, uint32_t ster=0) const
MonitorElement * ShotsVsTimeApvShotsGlobal
std::string createHistoLayer(std::string description, std::string id_type, std::string path, std::string flag)
collection_type::const_iterator const_iterator
Definition: DetSet.h:33
bool isValid() const
Definition: ESHandle.h:47
collection_type::const_iterator const_iterator
Definition: DetSetVector.h:104
void setAxisTitle(const std::string &title, int axis=1)
set x-, y- or z-axis title (axis=1, 2, 3 respectively)
void Reset(void)
reset ME (ie. contents, errors, etc)
const cms_uint16_t beamMode() const
T const * product() const
Definition: ESHandle.h:86
void FillApvShotsMap(TkHistoMap *, const std::vector< APVShot > &, uint32_t id, int)
MonitorElement * NumberOfFEDDigis
void createModuleMEs(DQMStore::IBooker &ibooker, ModMEs &mod_single, uint32_t detid)
Definition: Run.h:42
void endRun(const edm::Run &, const edm::EventSetup &) override