1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
/*
* See header file for a description of this class.
*
* \author G. Cerminara - INFN Torino
*
* threadsafe version (//-) oct/nov 2014 - WATWanAbdullah ncpp-um-my
*
*/
#include "DQM/DTMonitorClient/src/DTDAQInfo.h"
#include "DataFormats/FEDRawData/interface/FEDNumbering.h"
#include "FWCore/ServiceRegistry/interface/Service.h"
#include "FWCore/Framework/interface/ESHandle.h"
#include "FWCore/Framework/interface/EventSetup.h"
#include "DQMServices/Core/interface/DQMStore.h"
#include "CondFormats/RunInfo/interface/RunInfo.h"
#include "CondFormats/RunInfo/interface/RunSummary.h"
#include "CondFormats/DTObjects/interface/DTReadOutMapping.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
using namespace std;
using namespace edm;
DTDAQInfo::DTDAQInfo(const ParameterSet& pset)
: mappingToken_(esConsumes<edm::Transition::EndLuminosityBlock>()),
runInfoToken_(esConsumes<edm::Transition::EndLuminosityBlock>()) {
bookingdone = false;
checkUros = pset.getUntrackedParameter<bool>("checkUros", true);
}
DTDAQInfo::~DTDAQInfo() {}
void DTDAQInfo::dqmEndLuminosityBlock(DQMStore::IBooker& ibooker,
DQMStore::IGetter& igetter,
edm::LuminosityBlock const& lumiSeg,
edm::EventSetup const& setup) {
if (!bookingdone) {
// retrieve the mapping
mapping = &setup.getData(mappingToken_);
// book the ME
// global fraction
ibooker.setCurrentFolder("DT/EventInfo");
totalDAQFraction = ibooker.bookFloat("DAQSummary");
totalDAQFraction->Fill(-1);
// map
daqMap = ibooker.book2D("DAQSummaryMap", "DT Certification Summary Map", 12, 1, 13, 5, -2, 3);
daqMap->setAxisTitle("sector", 1);
daqMap->setAxisTitle("wheel", 2);
// Wheel "fractions" -> will be 0 or 1
ibooker.setCurrentFolder("DT/EventInfo/DAQContents");
for (int wheel = -2; wheel != 3; ++wheel) {
stringstream streams;
streams << "DT_Wheel" << wheel;
daqFractions[wheel] = ibooker.bookFloat(streams.str());
daqFractions[wheel]->Fill(-1);
}
bookingdone = true;
} //booking done
if (auto runInfoRec = setup.tryToGet<RunInfoRcd>()) {
// reset to 0
totalDAQFraction->Fill(0.);
daqFractions[-2]->Fill(0.);
daqFractions[-1]->Fill(0.);
daqFractions[-0]->Fill(0.);
daqFractions[1]->Fill(0.);
daqFractions[2]->Fill(0.);
daqMap->Reset();
//get fed summary information
auto sumFED = runInfoRec->get(runInfoToken_);
const vector<int> fedInIDs = sumFED.m_fed_in;
// the range of DT feds
static const int FEDIDmin = FEDNumbering::MINDTFEDID;
static const int FEDIDMax = FEDNumbering::MAXDTFEDID;
//FIXME for uROS FEDIDs once mapping has been defined
if (checkUros) {
LogTrace("DQM|DTMonitorClient|DTDAQInfo") << "Checking uROS FEDs as Legacy FEDs" << endl;
}
// loop on all active feds
for (vector<int>::const_iterator fed = fedInIDs.begin(); fed != fedInIDs.end(); ++fed) {
// check if the fed is in the DT range
if (!(*fed >= FEDIDmin && *fed <= FEDIDMax))
continue;
// check if the 12 channels are connected to any sector and fill the wheel percentage accordignly
int wheel = -99;
int sector = -99;
int dummy = -99;
for (int ros = 1; ros != 13; ++ros) {
if (!mapping->readOutToGeometry(*fed, ros, 2, 2, 2, wheel, dummy, sector, dummy, dummy, dummy)) {
LogTrace("DQM|DTMonitorClient|DTDAQInfo")
<< "FED: " << *fed << " Ch: " << ros << " wheel: " << wheel << " Sect: " << sector << endl;
daqFractions[wheel]->Fill(daqFractions[wheel]->getFloatValue() + 1. / 12.);
totalDAQFraction->Fill(totalDAQFraction->getFloatValue() + 1. / 60.);
daqMap->Fill(sector, wheel);
}
}
}
} else {
LogWarning("DQM|DTMonitorClient|DTDAQInfo") << "*** Warning: record key not found for RunInfoRcd" << endl;
totalDAQFraction->Fill(-1);
for (int wheel = -2; wheel != 3; ++wheel) {
daqFractions[wheel]->Fill(-1);
}
return;
}
}
void DTDAQInfo::dqmEndJob(DQMStore::IBooker& ibooker, DQMStore::IGetter& igetter) {}
|