#include <IOPool/Streamer/interface/HLTInfo.h>
Public Member Functions | |
FragKey (uint8 msgcode, uint32 run, uint32 event, uint32 secondaryId, uint32 originatorPid, uint32 originatorGuid) | |
FragKey (uint8 msgcode, uint32 run, uint32 event, uint32 secondaryId) | |
bool | operator< (FragKey const &b) const |
Public Attributes | |
uint8 | code_ |
uint32 | event_ |
uint32 | originatorGuid_ |
uint32 | originatorPid_ |
uint32 | run_ |
uint32 | secondaryId_ |
Definition at line 72 of file HLTInfo.h.
stor::FragKey::FragKey | ( | uint8 | msgcode, | |
uint32 | run, | |||
uint32 | event, | |||
uint32 | secondaryId, | |||
uint32 | originatorPid, | |||
uint32 | originatorGuid | |||
) | [inline] |
Definition at line 77 of file HLTInfo.h.
00078 : 00079 code_(msgcode), run_(run), event_(event), secondaryId_(secondaryId), 00080 originatorPid_(originatorPid), originatorGuid_(originatorGuid) {} bool operator<(FragKey const& b) const {
Definition at line 81 of file HLTInfo.h.
References code_, event_, originatorGuid_, originatorPid_, run_, and secondaryId_.
00081 { 00082 if(code_ != b.code_) return code_ < b.code_; 00083 if(run_ != b.run_) return run_ < b.run_; 00084 if(event_ != b.event_) return event_ < b.event_; 00085 if(originatorPid_ != b.originatorPid_) return originatorPid_ < b.originatorPid_; 00086 if(originatorGuid_ != b.originatorGuid_) return originatorGuid_ < b.originatorGuid_; 00087 return secondaryId_ < b.secondaryId_; 00088 }