34 FEDRawDataCollection_ = consumes<FEDRawDataCollection>(ps.
getParameter<
InputTag>(
"FEDRawDataCollection"));
51 sprintf(histo,
"ES L1A DCC errors");
52 meL1ADCCErrors_ = iBooker.
book1D(histo, histo, 56, 519.5, 575.5);
54 meL1ADCCErrors_->setAxisTitle(
"Num of Events", 2);
56 sprintf(histo,
"ES BX DCC errors");
57 meBXDCCErrors_ = iBooker.
book1D(histo, histo, 56, 519.5, 575.5);
59 meBXDCCErrors_->setAxisTitle(
"Num of Events", 2);
61 sprintf(histo,
"ES Orbit Number DCC errors");
62 meOrbitNumberDCCErrors_ = iBooker.
book1D(histo, histo, 56, 519.5, 575.5);
64 meOrbitNumberDCCErrors_->setAxisTitle(
"Num of Events", 2);
66 sprintf(histo,
"Difference between ES and GT L1A");
67 meL1ADiff_ = iBooker.
book1D(histo, histo, 201, -100.5, 100.5);
69 meL1ADiff_->setAxisTitle(
"Num of Events", 2);
71 sprintf(histo,
"Difference between ES and GT BX");
72 meBXDiff_ = iBooker.
book1D(histo, histo, 201, -100.5, 100.5);
74 meBXDiff_->setAxisTitle(
"Num of Events", 2);
76 sprintf(histo,
"Difference between ES and GT Orbit Number");
77 meOrbitNumberDiff_ = iBooker.
book1D(histo, histo, 201, -100.5, 100.5);
78 meOrbitNumberDiff_->
setAxisTitle(
"ES - GT orbit number", 1);
79 meOrbitNumberDiff_->setAxisTitle(
"Num of Events", 2);
84 LogInfo(
"ESRawDataTask") <<
"analyzed " << ievt_ <<
" events";
91 runNum_ = e.
id().
run();
93 int gt_L1A = 0, gt_OrbitNumber = 0, gt_BX = 0;
94 int esDCC_L1A_MostFreqCounts = 0;
95 int esDCC_BX_MostFreqCounts = 0;
96 int esDCC_OrbitNumber_MostFreqCounts = 0;
101 int gtFedDataSize = 0;
103 if ( e.
getByToken(FEDRawDataCollection_, allFedRawData) ) {
106 const FEDRawData& gtFedData = allFedRawData->FEDData(812);
110 if ( gtFedDataSize > 0 ) {
119 map<int, int> esDCC_L1A_FreqMap;
120 map<int, int> esDCC_BX_FreqMap;
121 map<int, int> esDCC_OrbitNumber_FreqMap;
127 esDCC_L1A_FreqMap[esdcc.
getLV1()]++;
128 esDCC_BX_FreqMap[esdcc.
getBX()]++;
131 if (esDCC_L1A_FreqMap[esdcc.
getLV1()] > esDCC_L1A_MostFreqCounts) {
132 esDCC_L1A_MostFreqCounts = esDCC_L1A_FreqMap[esdcc.
getLV1()];
136 if (esDCC_BX_FreqMap[esdcc.
getBX()] > esDCC_BX_MostFreqCounts) {
137 esDCC_BX_MostFreqCounts = esDCC_BX_FreqMap[esdcc.
getBX()];
138 gt_BX = esdcc.
getBX();
141 if (esDCC_OrbitNumber_FreqMap[esdcc.
getOrbitNumber()] > esDCC_OrbitNumber_MostFreqCounts) {
142 esDCC_OrbitNumber_MostFreqCounts = esDCC_OrbitNumber_FreqMap[esdcc.
getOrbitNumber()];
148 LogWarning(
"ESRawDataTask") <<
"dccCollections not available";
153 LogWarning(
"ESRawDataTask") <<
"FEDRawDataCollection not available";
157 vector<int> fiberStatus;
168 if (dcc.
getLV1() != gt_L1A) {
169 meL1ADCCErrors_->Fill(dcc.
fedId());
171 Float_t l1a_diff = dcc.
getLV1() - gt_L1A;
172 if (l1a_diff > 100) l1a_diff = 100;
173 else if (l1a_diff < -100) l1a_diff = -100;
174 meL1ADiff_->Fill(l1a_diff);
177 if (dcc.
getBX() != gt_BX) {
178 meBXDCCErrors_->Fill(dcc.
fedId());
180 Float_t bx_diff = dcc.
getBX() - gt_BX;
181 if (bx_diff > 100) bx_diff = 100;
182 else if (bx_diff < -100) bx_diff = -100;
183 meBXDiff_->Fill(bx_diff);
186 meOrbitNumberDCCErrors_->Fill(dcc.
fedId());
189 if (orbitnumber_diff > 100) orbitnumber_diff = 100;
190 else if (orbitnumber_diff < -100) orbitnumber_diff = -100;
191 meOrbitNumberDiff_->Fill(orbitnumber_diff);
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
bool getByToken(EDGetToken token, Handle< PROD > &result) const
#define DEFINE_FWK_MODULE(type)
std::vector< ESDCCHeaderBlock >::const_iterator const_iterator
int bunchCrossing() const
ESRawDataTask(const edm::ParameterSet &ps)
size_t size() const
Lenght of the data buffer in bytes.
void bookHistograms(DQMStore::IBooker &, edm::Run const &, edm::EventSetup const &) override
Setup.
MonitorElement * book1D(Args &&...args)
void setCurrentFolder(const std::string &fullpath)
unsigned long long uint64_t
void analyze(const edm::Event &e, const edm::EventSetup &c) override
Analyze.
const unsigned char * data() const
Return a const pointer to the beginning of the data buffer.
void setAxisTitle(const std::string &title, int axis=1)
set x-, y- or z-axis title (axis=1, 2, 3 respectively)