CMS 3D CMS Logo

DTDAQInfo.cc
Go to the documentation of this file.
1 /*
2  * See header file for a description of this class.
3  *
4  * \author G. Cerminara - INFN Torino
5  *
6  * threadsafe version (//-) oct/nov 2014 - WATWanAbdullah ncpp-um-my
7  *
8  */
9 
10 
13 
17 
20 
24 
25 
28 
30 
31 
32 
33 using namespace std;
34 using namespace edm;
35 
36 
37 
39 
40  bookingdone = false;
41  checkUros = pset.getUntrackedParameter<bool>("checkUros",true);
42 }
43 
45 
47  edm::EventSetup const & setup) {
48 
49  if (!bookingdone) {
50  // retrieve the mapping
51  setup.get<DTReadOutMappingRcd>().get(mapping);
52 
53  // book the ME
54  // global fraction
55 
56  ibooker.setCurrentFolder("DT/EventInfo");
57 
58  totalDAQFraction = ibooker.bookFloat("DAQSummary");
59  totalDAQFraction->Fill(-1);
60 
61  // map
62  daqMap = ibooker.book2D("DAQSummaryMap","DT Certification Summary Map",12,1,13,5,-2,3);
63  daqMap->setAxisTitle("sector",1);
64  daqMap->setAxisTitle("wheel",2);
65 
66  // Wheel "fractions" -> will be 0 or 1
67 
68  ibooker.setCurrentFolder("DT/EventInfo/DAQContents");
69  for(int wheel = -2; wheel != 3; ++wheel) {
70  stringstream streams;
71  streams << "DT_Wheel" << wheel;
72 
73  daqFractions[wheel] = ibooker.bookFloat(streams.str());
74  daqFractions[wheel]->Fill(-1);
75  }
76  bookingdone = true;
77  } //booking done
78 
79  if(auto runInfoRec = setup.tryToGet<RunInfoRcd>()) {
80  // reset to 0
81  totalDAQFraction->Fill(0.);
82  daqFractions[-2]->Fill(0.);
83  daqFractions[-1]->Fill(0.);
84  daqFractions[-0]->Fill(0.);
85  daqFractions[1]->Fill(0.);
86  daqFractions[2]->Fill(0.);
87 
88 
89  daqMap->Reset();
90  //get fed summary information
91  ESHandle<RunInfo> sumFED;
92  runInfoRec->get(sumFED);
93  vector<int> fedInIDs = sumFED->m_fed_in;
94 
95  // the range of DT feds
96  static const int FEDIDmin = FEDNumbering::MINDTFEDID;
97  static const int FEDIDMax = FEDNumbering::MAXDTFEDID;
98 
99  //FIXME for uROS FEDIDs once mapping has been defined
100  if (checkUros) { LogTrace("DQM|DTMonitorClient|DTDAQInfo")
101  << "Checking uROS FEDs as Legacy FEDs"<< endl;}
102 
103  // loop on all active feds
104  for(vector<int>::const_iterator fed = fedInIDs.begin();
105  fed != fedInIDs.end();
106  ++fed) {
107  // check if the fed is in the DT range
108  if(!(*fed >= FEDIDmin && *fed <= FEDIDMax)) continue;
109 
110  // check if the 12 channels are connected to any sector and fill the wheel percentage accordignly
111  int wheel = -99;
112  int sector = -99;
113  int dummy = -99;
114  for(int ros = 1; ros != 13; ++ros) {
115  if(!mapping->readOutToGeometry(*fed,ros,2,2,2,wheel,dummy,sector,dummy,dummy,dummy)) {
116  LogTrace("DQM|DTMonitorClient|DTDAQInfo")
117  << "FED: " << *fed << " Ch: " << ros << " wheel: " << wheel << " Sect: " << sector << endl;
118  daqFractions[wheel]->Fill(daqFractions[wheel]->getFloatValue() + 1./12.);
119  totalDAQFraction->Fill(totalDAQFraction->getFloatValue() + 1./60.);
120  daqMap->Fill(sector,wheel);
121  }
122  }
123  }
124  } else {
125  LogWarning("DQM|DTMonitorClient|DTDAQInfo") << "*** Warning: record key not found for RunInfoRcd" << endl;
126  totalDAQFraction->Fill(-1);
127  for(int wheel = -2; wheel != 3; ++wheel) {
128  daqFractions[wheel]->Fill(-1);
129  }
130  return;
131  }
132 }
133 
T getUntrackedParameter(std::string const &, T const &) const
std::optional< T > tryToGet() const
Definition: EventSetup.h:92
void dqmEndLuminosityBlock(DQMStore::IBooker &, DQMStore::IGetter &, edm::LuminosityBlock const &, edm::EventSetup const &) override
Definition: DTDAQInfo.cc:46
def setup(process, global_tag, zero_tesla=False)
Definition: GeneralSetup.py:2
void Fill(long long x)
void setCurrentFolder(std::string const &fullpath)
Definition: DQMStore.cc:268
std::vector< int > m_fed_in
Definition: RunInfo.h:26
void dqmEndJob(DQMStore::IBooker &, DQMStore::IGetter &) override
Definition: DTDAQInfo.cc:134
~DTDAQInfo() override
Destructor.
Definition: DTDAQInfo.cc:44
#define LogTrace(id)
MonitorElement * book2D(Args &&...args)
Definition: DQMStore.h:109
HLT enums.
T get() const
Definition: EventSetup.h:71
DTDAQInfo(const edm::ParameterSet &pset)
Constructor.
Definition: DTDAQInfo.cc:38
MonitorElement * bookFloat(Args &&...args)
Definition: DQMStore.h:105
void setAxisTitle(const std::string &title, int axis=1)
set x-, y- or z-axis title (axis=1, 2, 3 respectively)