#include <RPCRawDataCounts.h>
Definition at line 15 of file RPCRawDataCounts.h.
◆ RPCRawDataCounts()
RPCRawDataCounts::RPCRawDataCounts |
( |
| ) |
|
|
inline |
◆ ~RPCRawDataCounts()
RPCRawDataCounts::~RPCRawDataCounts |
( |
| ) |
|
|
inline |
◆ addDccRecord()
◆ addReadoutError()
◆ fedBxRecords()
int RPCRawDataCounts::fedBxRecords |
( |
int |
fedId | ) |
const |
◆ fedErrorRecords()
int RPCRawDataCounts::fedErrorRecords |
( |
int |
fedId | ) |
const |
◆ fedFormatErrors()
int RPCRawDataCounts::fedFormatErrors |
( |
int |
fedId | ) |
const |
◆ operator+=()
Definition at line 75 of file RPCRawDataCounts.cc.
76 for (
IT irt =
o.theRecordTypes.begin(); irt !=
o.theRecordTypes.end(); ++irt) {
77 theRecordTypes[make_pair(irt->first.first, irt->first.second)] += irt->second;
80 for (
IT ire =
o.theReadoutErrors.begin(); ire !=
o.theReadoutErrors.end(); ++ire) {
81 theReadoutErrors[make_pair(ire->first.first, ire->first.second)] += ire->second;
84 for (
IT ire =
o.theGoodEvents.begin(); ire !=
o.theGoodEvents.end(); ++ire) {
85 theGoodEvents[make_pair(ire->first.first, ire->first.second)] += ire->second;
88 for (
IT ire =
o.theBadEvents.begin(); ire !=
o.theBadEvents.end(); ++ire) {
89 theBadEvents[make_pair(ire->first.first, ire->first.second)] += ire->second;
References EcalTangentSkim_cfg::o.
◆ print()
std::string RPCRawDataCounts::print |
( |
void |
| ) |
const |
Definition at line 93 of file RPCRawDataCounts.cc.
94 std::ostringstream
str;
96 str <<
"RECORD (" << irt->first.first <<
"," << irt->first.second <<
")" << irt->second;
99 str <<
"ERROR(" << ire->first.first <<
"," << ire->first.second <<
")=" << ire->second << endl;
References str.
◆ RPCMonitorRaw
◆ theBadEvents
std::map<std::pair<int, int>, int> RPCRawDataCounts::theBadEvents |
|
private |
◆ theGoodEvents
std::map<std::pair<int, int>, int> RPCRawDataCounts::theGoodEvents |
|
private |
◆ theReadoutErrors
std::map<std::pair<int, int>, int> RPCRawDataCounts::theReadoutErrors |
|
private |
◆ theRecordTypes
std::map<std::pair<int, int>, int> RPCRawDataCounts::theRecordTypes |
|
private |