CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
DTDAQInfo.cc
Go to the documentation of this file.
1 
2 /*
3  * See header file for a description of this class.
4  *
5  * \author G. Cerminara - INFN Torino
6  *
7  * threadsafe version (//-) oct/nov 2014 - WATWanAbdullah ncpp-um-my
8  *
9  */
10 
11 
14 
18 
21 
25 
26 
29 
31 
32 
33 
34 using namespace std;
35 using namespace edm;
36 
37 
38 
40 
41  bookingdone = 0;
42 
43 }
44 
46 
48  edm::EventSetup const & setup) {
49 
50  if (!bookingdone) {
51  // retrieve the mapping
52  setup.get<DTReadOutMappingRcd>().get(mapping);
53 
54  // book the ME
55  // global fraction
56 
57  ibooker.setCurrentFolder("DT/EventInfo");
58 
59  totalDAQFraction = ibooker.bookFloat("DAQSummary");
60  totalDAQFraction->Fill(-1);
61 
62  // map
63  daqMap = ibooker.book2D("DAQSummaryMap","DT Certification Summary Map",12,1,13,5,-2,3);
64  daqMap->setAxisTitle("sector",1);
65  daqMap->setAxisTitle("wheel",2);
66 
67  // Wheel "fractions" -> will be 0 or 1
68 
69  ibooker.setCurrentFolder("DT/EventInfo/DAQContents");
70  for(int wheel = -2; wheel != 3; ++wheel) {
71  stringstream streams;
72  streams << "DT_Wheel" << wheel;
73 
74  daqFractions[wheel] = ibooker.bookFloat(streams.str());
75  daqFractions[wheel]->Fill(-1);
76  }
77 
78  //
79 
80  // create a record key for RunInfoRcd
82 
83  if(setup.find(recordKey) != 0) {
84 
85  //FR not sure that the lines below are still useful, we have just booked the histo!
86  // reset to 0
87  totalDAQFraction->Fill(0.);
88  daqFractions[-2]->Fill(0.);
89  daqFractions[-1]->Fill(0.);
90  daqFractions[-0]->Fill(0.);
91  daqFractions[1]->Fill(0.);
92  daqFractions[2]->Fill(0.);
93 
94  daqMap->Reset();
95  //get fed summary information
96  ESHandle<RunInfo> sumFED;
97  setup.get<RunInfoRcd>().get(sumFED);
98  vector<int> fedInIDs = sumFED->m_fed_in;
99 
100  // the range of DT feds
101  static int FEDIDmin = FEDNumbering::MINDTFEDID;
102  static int FEDIDMax = FEDNumbering::MAXDTFEDID;
103 
104  // loop on all active feds
105  for(vector<int>::const_iterator fed = fedInIDs.begin();
106  fed != fedInIDs.end();
107  ++fed) {
108  // check if the fed is in the DT range
109  if(!(*fed >= FEDIDmin && *fed <= FEDIDMax)) continue;
110 
111  // check if the 12 channels are connected to any sector and fill the wheel percentage accordignly
112  int wheel = -99;
113  int sector = -99;
114  int dummy = -99;
115 
116  for(int ros = 1; ros != 13; ++ros) {
117  if(!mapping->readOutToGeometry(*fed,ros,2,2,2,wheel,dummy,sector,dummy,dummy,dummy)) {
118  LogTrace("DQM|DTMonitorClient|DTDAQInfo")
119  << "FED: " << *fed << " Ch: " << ros << " wheel: " << wheel << " Sect: " << sector << endl;
120  daqFractions[wheel]->Fill(daqFractions[wheel]->getFloatValue() + 1./12.);
121  totalDAQFraction->Fill(totalDAQFraction->getFloatValue() + 1./60.);
122  daqMap->Fill(sector,wheel);
123  }
124  }
125  }
126  } else {
127 
128  LogWarning("DQM|DTMonitorClient|DTDAQInfo") << "*** Warning: record key not found for RunInfoRcd" << endl;
129  totalDAQFraction->Fill(-1);
130  for(int wheel = -2; wheel != 3; ++wheel) {
131  daqFractions[wheel]->Fill(-1);
132 
133  }
134  return;
135  }
136 
137  }
138  bookingdone = 1;
139 
140  // create a record key for RunInfoRcd
142 
143  if(setup.find(recordKey) != 0) {
144  // reset to 0
145  totalDAQFraction->Fill(0.);
146  daqFractions[-2]->Fill(0.);
147  daqFractions[-1]->Fill(0.);
148  daqFractions[-0]->Fill(0.);
149  daqFractions[1]->Fill(0.);
150  daqFractions[2]->Fill(0.);
151 
152 
153  daqMap->Reset();
154  //get fed summary information
155  ESHandle<RunInfo> sumFED;
156  setup.get<RunInfoRcd>().get(sumFED);
157  vector<int> fedInIDs = sumFED->m_fed_in;
158 
159  // the range of DT feds
160  static int FEDIDmin = FEDNumbering::MINDTFEDID;
161  static int FEDIDMax = FEDNumbering::MAXDTFEDID;
162 
163  // loop on all active feds
164  for(vector<int>::const_iterator fed = fedInIDs.begin();
165  fed != fedInIDs.end();
166  ++fed) {
167  // check if the fed is in the DT range
168  if(!(*fed >= FEDIDmin && *fed <= FEDIDMax)) continue;
169 
170  // check if the 12 channels are connected to any sector and fill the wheel percentage accordignly
171  int wheel = -99;
172  int sector = -99;
173  int dummy = -99;
174  for(int ros = 1; ros != 13; ++ros) {
175  if(!mapping->readOutToGeometry(*fed,ros,2,2,2,wheel,dummy,sector,dummy,dummy,dummy)) {
176  LogTrace("DQM|DTMonitorClient|DTDAQInfo")
177  << "FED: " << *fed << " Ch: " << ros << " wheel: " << wheel << " Sect: " << sector << endl;
178  daqFractions[wheel]->Fill(daqFractions[wheel]->getFloatValue() + 1./12.);
179  totalDAQFraction->Fill(totalDAQFraction->getFloatValue() + 1./60.);
180  daqMap->Fill(sector,wheel);
181  }
182  }
183  }
184  } else {
185  LogWarning("DQM|DTMonitorClient|DTDAQInfo") << "*** Warning: record key not found for RunInfoRcd" << endl;
186  totalDAQFraction->Fill(-1);
187  for(int wheel = -2; wheel != 3; ++wheel) {
188  daqFractions[wheel]->Fill(-1);
189  }
190  return;
191  }
192 }
193 
195 
196 
197 
198 
std::pair< const char *, const std::type_info * > findType(const char *iClassName)
Definition: typelookup.cc:76
const eventsetup::EventSetupRecord * find(const eventsetup::EventSetupRecordKey &) const
Definition: EventSetup.cc:91
void Fill(long long x)
void dqmEndJob(DQMStore::IBooker &, DQMStore::IGetter &)
Definition: DTDAQInfo.cc:194
#define LogTrace(id)
void dqmEndLuminosityBlock(DQMStore::IBooker &, DQMStore::IGetter &, edm::LuminosityBlock const &, edm::EventSetup const &)
Definition: DTDAQInfo.cc:47
void setCurrentFolder(const std::string &fullpath)
Definition: DQMStore.cc:277
MonitorElement * book2D(Args &&...args)
Definition: DQMStore.h:133
const T & get() const
Definition: EventSetup.h:56
virtual ~DTDAQInfo()
Destructor.
Definition: DTDAQInfo.cc:45
DTDAQInfo(const edm::ParameterSet &pset)
Constructor.
Definition: DTDAQInfo.cc:39
MonitorElement * bookFloat(Args &&...args)
Definition: DQMStore.h:109
tuple streams
Definition: HLT_ES_cff.py:11
void setAxisTitle(const std::string &title, int axis=1)
set x-, y- or z-axis title (axis=1, 2, 3 respectively)