CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
RPCRawDataCounts.cc
Go to the documentation of this file.
10 
11 #include <vector>
12 #include <sstream>
13 
14 using namespace rpcrawtodigi;
15 using namespace std;
16 
17 typedef std::map< std::pair<int,int>, int >::const_iterator IT;
18 
19 int RPCRawDataCounts::fedBxRecords(int fedId) const
20 {
22  IT im = theRecordTypes.find(make_pair(fedId,type));
23  return (im==theRecordTypes.end())? 0 : im->second;
24 }
25 
27 {
28  for (IT im=theReadoutErrors.begin(); im != theReadoutErrors.end(); ++im) {
29  if (im->first.first != fedId) continue;
30  if (im->first.second > ReadoutError::NoProblem && im->first.second <= ReadoutError::InconsistentDataSize) return 1;
31  }
32  return 0;
33 }
34 
36 {
37  for (IT im=theRecordTypes.begin(); im != theRecordTypes.end(); ++im) {
38  if (im->first.first != fedId) continue;
39  if (im->first.second > DataRecord::Empty) return 1;
40  }
41  return 0;
42 }
43 
45 {
47  switch (type) {
48  case (DataRecord::StartOfTbLinkInputNumberData) : { theGoodEvents[make_pair(fed, RecordSLD(record).rmb())] += weight; break; }
49  case (DataRecord::RDDM) : { theBadEvents[make_pair(fed,ErrorRDDM(record).rmb())] += weight; break;}
50  case (DataRecord::RDM) : { theBadEvents[make_pair(fed,ErrorRDM(record).rmb())] += weight; break;}
51  case (DataRecord::RCDM) : { theBadEvents[make_pair(fed,ErrorRCDM(record).rmb())] += weight; break;}
52  default : {}
53  }
54 
55  theRecordTypes[ make_pair(fed,type) ] += weight;
56 }
57 
58 
59 
60 
61 
63 {
64  theReadoutErrors[ make_pair(fed,e.rawCode()) ] += weight;
65 }
66 
68 {
69 
70  for (IT irt= o.theRecordTypes.begin(); irt != o.theRecordTypes.end(); ++irt) {
71  theRecordTypes[ make_pair(irt->first.first,irt->first.second) ] += irt->second;
72  }
73 
74  for (IT ire=o.theReadoutErrors.begin(); ire != o.theReadoutErrors.end();++ire) {
75  theReadoutErrors[ make_pair(ire->first.first,ire->first.second) ] += ire->second;
76  }
77 
78  for (IT ire=o.theGoodEvents.begin(); ire != o.theGoodEvents.end();++ire) {
79  theGoodEvents[ make_pair(ire->first.first,ire->first.second) ] += ire->second;
80  }
81 
82  for (IT ire=o.theBadEvents.begin(); ire != o.theBadEvents.end();++ire) {
83  theBadEvents[ make_pair(ire->first.first,ire->first.second) ] += ire->second;
84  }
85 }
86 
88 {
89  std::ostringstream str;
90  for (IT irt=theRecordTypes.begin(); irt != theRecordTypes.end(); ++irt) {
91  str << "RECORD ("<<irt->first.first<<","<<irt->first.second<<")"<<irt->second;
92  }
93  for (IT ire=theReadoutErrors.begin(); ire != theReadoutErrors.end();++ire) {
94  str <<"ERROR("<<ire->first.first<<","<<ire->first.second<<")="<<ire->second<<endl;
95  }
96  return str.str();
97 }
std::map< std::pair< int, int >, int > theReadoutErrors
type
Definition: HCALResponse.h:21
int fedErrorRecords(int fedId) const
int fedBxRecords(int fedId) const
int fedFormatErrors(int fedId) const
void addDccRecord(int fedId, const rpcrawtodigi::DataRecord &record, int weight=1)
std::string print() const
std::map< std::pair< int, int >, int > theGoodEvents
std::vector< LinkConnSpec >::const_iterator IT
std::map< std::pair< int, int >, int > theRecordTypes
void addReadoutError(int fedId, const rpcrawtodigi::ReadoutError &error, int weight=1)
unsigned int rawCode() const
Definition: ReadoutError.h:35
std::map< std::pair< int, int >, int > theBadEvents
DataRecordType type() const
Definition: DataRecord.cc:13
void operator+=(const RPCRawDataCounts &)
int weight
Definition: histoStyle.py:50