#include <RpcByteStreamErrorContainer.h>
◆ rpcErrorIterator
◆ RpcByteStreamErrorContainer() [1/2]
| Muon::RpcByteStreamErrorContainer::RpcByteStreamErrorContainer |
( |
| ) |
|
◆ RpcByteStreamErrorContainer() [2/2]
| Muon::RpcByteStreamErrorContainer::RpcByteStreamErrorContainer |
( |
const DataVector< std::pair< IdentifierHash, int > > & | errorVector | ) |
|
◆ ~RpcByteStreamErrorContainer()
| Muon::RpcByteStreamErrorContainer::~RpcByteStreamErrorContainer |
( |
| ) |
|
◆ addError()
| void Muon::RpcByteStreamErrorContainer::addError |
( |
IdentifierHash | idh, |
|
|
int | type ) |
◆ clear()
| void Muon::RpcByteStreamErrorContainer::clear |
( |
| ) |
|
◆ getAllErrors()
◆ getError()
| int Muon::RpcByteStreamErrorContainer::getError |
( |
IdentifierHash | idh | ) |
const |
Definition at line 38 of file RpcByteStreamErrorContainer.cxx.
39{
40 int errorCode=-1;
44 for (;myIt!=myItE;++myIt)
45 {
46 IdentifierHash myPadId = (*myIt)->first;
47 if (myPadId==idh) {
48 errorCode= (*myIt)->second;
49 break;
50 }
51 }
52
53 return errorCode;
54}
DataVector< std::pair< IdentifierHash, int > >::const_iterator rpcErrorIterator
◆ getPadsWithError()
| std::vector< IdentifierHash > Muon::RpcByteStreamErrorContainer::getPadsWithError |
( |
| ) |
const |
Definition at line 56 of file RpcByteStreamErrorContainer.cxx.
57{
60 std::vector<IdentifierHash> myList;
61 for (;myIt!=myItE;++myIt)
62 {
63 IdentifierHash myPadId = (*myIt)->first;
64 myList.push_back(myPadId);
65 }
66 return myList;
67}
◆ m_errorVector
The documentation for this class was generated from the following files: