CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes | Friends
RPCRawDataCounts Class Reference

#include <RPCRawDataCounts.h>

Public Member Functions

void addDccRecord (int fedId, const rpcrawtodigi::DataRecord &record, int weight=1)
 
void addReadoutError (int fedId, const rpcrawtodigi::ReadoutError &error, int weight=1)
 
int fedBxRecords (int fedId) const
 
int fedErrorRecords (int fedId) const
 
int fedFormatErrors (int fedId) const
 
void operator+= (const RPCRawDataCounts &)
 
std::string print () const
 
 RPCRawDataCounts ()
 
 ~RPCRawDataCounts ()
 

Private Attributes

std::map< std::pair< int, int >, int > theBadEvents
 
std::map< std::pair< int, int >, int > theGoodEvents
 
std::map< std::pair< int, int >, int > theReadoutErrors
 
std::map< std::pair< int, int >, int > theRecordTypes
 

Friends

class RPCMonitorRaw
 

Detailed Description

Definition at line 15 of file RPCRawDataCounts.h.

Constructor & Destructor Documentation

RPCRawDataCounts::RPCRawDataCounts ( )
inline

Definition at line 17 of file RPCRawDataCounts.h.

17 {}
RPCRawDataCounts::~RPCRawDataCounts ( )
inline

Member Function Documentation

void RPCRawDataCounts::addDccRecord ( int  fedId,
const rpcrawtodigi::DataRecord record,
int  weight = 1 
)

Definition at line 45 of file RPCRawDataCounts.cc.

References rpcrawtodigi::DataRecord::RCDM, rpcrawtodigi::DataRecord::RDDM, rpcrawtodigi::DataRecord::RDM, rpcrawtodigi::DataRecord::StartOfTbLinkInputNumberData, rpcrawtodigi::DataRecord::type(), and mps_merge::weight.

45  {
47  switch (type) {
48  case (DataRecord::StartOfTbLinkInputNumberData): {
49  theGoodEvents[make_pair(fed, RecordSLD(record).rmb())] += weight;
50  break;
51  }
52  case (DataRecord::RDDM): {
53  theBadEvents[make_pair(fed, ErrorRDDM(record).rmb())] += weight;
54  break;
55  }
56  case (DataRecord::RDM): {
57  theBadEvents[make_pair(fed, ErrorRDM(record).rmb())] += weight;
58  break;
59  }
60  case (DataRecord::RCDM): {
61  theBadEvents[make_pair(fed, ErrorRCDM(record).rmb())] += weight;
62  break;
63  }
64  default: {}
65  }
66 
67  theRecordTypes[make_pair(fed, type)] += weight;
68 }
type
Definition: HCALResponse.h:21
std::map< std::pair< int, int >, int > theRecordTypes
std::map< std::pair< int, int >, int > theGoodEvents
std::map< std::pair< int, int >, int > theBadEvents
DataRecordType type() const
Definition: DataRecord.cc:13
void RPCRawDataCounts::addReadoutError ( int  fedId,
const rpcrawtodigi::ReadoutError error,
int  weight = 1 
)

Definition at line 70 of file RPCRawDataCounts.cc.

References rpcrawtodigi::ReadoutError::rawCode().

Referenced by RPCRecordFormatter::recordUnpack().

70  {
71  theReadoutErrors[make_pair(fed, e.rawCode())] += weight;
72 }
std::map< std::pair< int, int >, int > theReadoutErrors
Definition: weight.py:1
int RPCRawDataCounts::fedBxRecords ( int  fedId) const

Definition at line 19 of file RPCRawDataCounts.cc.

References rpcrawtodigi::DataRecord::StartOfBXData.

Referenced by RPCFEDIntegrity::analyze().

19  {
20  int type = DataRecord::StartOfBXData;
21  IT im = theRecordTypes.find(make_pair(fedId, type));
22  return (im == theRecordTypes.end()) ? 0 : im->second;
23 }
type
Definition: HCALResponse.h:21
std::map< std::pair< int, int >, int > theRecordTypes
std::vector< LinkConnSpec >::const_iterator IT
int RPCRawDataCounts::fedErrorRecords ( int  fedId) const

Definition at line 35 of file RPCRawDataCounts.cc.

References rpcrawtodigi::DataRecord::Empty.

Referenced by RPCFEDIntegrity::analyze().

35  {
36  for (IT im = theRecordTypes.begin(); im != theRecordTypes.end(); ++im) {
37  if (im->first.first != fedId)
38  continue;
39  if (im->first.second > DataRecord::Empty)
40  return 1;
41  }
42  return 0;
43 }
std::map< std::pair< int, int >, int > theRecordTypes
std::vector< LinkConnSpec >::const_iterator IT
int RPCRawDataCounts::fedFormatErrors ( int  fedId) const

Definition at line 25 of file RPCRawDataCounts.cc.

References rpcrawtodigi::ReadoutError::InconsistentDataSize, and rpcrawtodigi::ReadoutError::NoProblem.

Referenced by RPCFEDIntegrity::analyze().

25  {
26  for (IT im = theReadoutErrors.begin(); im != theReadoutErrors.end(); ++im) {
27  if (im->first.first != fedId)
28  continue;
29  if (im->first.second > ReadoutError::NoProblem && im->first.second <= ReadoutError::InconsistentDataSize)
30  return 1;
31  }
32  return 0;
33 }
std::map< std::pair< int, int >, int > theReadoutErrors
std::vector< LinkConnSpec >::const_iterator IT
void RPCRawDataCounts::operator+= ( const RPCRawDataCounts o)

Definition at line 74 of file RPCRawDataCounts.cc.

References theBadEvents, theGoodEvents, theReadoutErrors, and theRecordTypes.

74  {
75  for (IT irt = o.theRecordTypes.begin(); irt != o.theRecordTypes.end(); ++irt) {
76  theRecordTypes[make_pair(irt->first.first, irt->first.second)] += irt->second;
77  }
78 
79  for (IT ire = o.theReadoutErrors.begin(); ire != o.theReadoutErrors.end(); ++ire) {
80  theReadoutErrors[make_pair(ire->first.first, ire->first.second)] += ire->second;
81  }
82 
83  for (IT ire = o.theGoodEvents.begin(); ire != o.theGoodEvents.end(); ++ire) {
84  theGoodEvents[make_pair(ire->first.first, ire->first.second)] += ire->second;
85  }
86 
87  for (IT ire = o.theBadEvents.begin(); ire != o.theBadEvents.end(); ++ire) {
88  theBadEvents[make_pair(ire->first.first, ire->first.second)] += ire->second;
89  }
90 }
std::map< std::pair< int, int >, int > theReadoutErrors
std::map< std::pair< int, int >, int > theRecordTypes
std::vector< LinkConnSpec >::const_iterator IT
std::map< std::pair< int, int >, int > theGoodEvents
std::map< std::pair< int, int >, int > theBadEvents
std::string RPCRawDataCounts::print ( void  ) const

Definition at line 92 of file RPCRawDataCounts.cc.

References str.

92  {
93  std::ostringstream str;
94  for (IT irt = theRecordTypes.begin(); irt != theRecordTypes.end(); ++irt) {
95  str << "RECORD (" << irt->first.first << "," << irt->first.second << ")" << irt->second;
96  }
97  for (IT ire = theReadoutErrors.begin(); ire != theReadoutErrors.end(); ++ire) {
98  str << "ERROR(" << ire->first.first << "," << ire->first.second << ")=" << ire->second << endl;
99  }
100  return str.str();
101 }
std::map< std::pair< int, int >, int > theReadoutErrors
std::map< std::pair< int, int >, int > theRecordTypes
std::vector< LinkConnSpec >::const_iterator IT
#define str(s)

Friends And Related Function Documentation

friend class RPCMonitorRaw
friend

Definition at line 29 of file RPCRawDataCounts.h.

Member Data Documentation

std::map<std::pair<int, int>, int> RPCRawDataCounts::theBadEvents
private

Definition at line 33 of file RPCRawDataCounts.h.

Referenced by RPCMonitorRaw::analyze(), and operator+=().

std::map<std::pair<int, int>, int> RPCRawDataCounts::theGoodEvents
private

Definition at line 32 of file RPCRawDataCounts.h.

Referenced by RPCMonitorRaw::analyze(), and operator+=().

std::map<std::pair<int, int>, int> RPCRawDataCounts::theReadoutErrors
private

Definition at line 31 of file RPCRawDataCounts.h.

Referenced by RPCMonitorRaw::analyze(), and operator+=().

std::map<std::pair<int, int>, int> RPCRawDataCounts::theRecordTypes
private

Definition at line 30 of file RPCRawDataCounts.h.

Referenced by RPCMonitorRaw::analyze(), and operator+=().