|
||||
File indexing completed on 2024-04-06 12:04:39
0001 #include "DataFormats/L1Trigger/interface/L1TriggerError.h" 0002 0003 L1TriggerError::L1TriggerError(unsigned short prod, unsigned short code) : code_(prod << 16 & code) {} 0004 0005 L1TriggerError::~L1TriggerError() {} 0006 0007 unsigned L1TriggerError::prodID() { return (code_ >> 16) & 0xffff; } 0008 0009 unsigned L1TriggerError::prodErr() { return code_ & 0xffff; }
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.2.1 LXR engine. The LXR team |