![]() |
|
|||
File indexing completed on 2023-03-17 10:59:25
0001 #include "EventFilter/CSCRawToDigi/interface/CSCBadCFEBTimeSlice.h" 0002 #include <cassert> 0003 0004 const CSCBadCFEBWord& CSCBadCFEBTimeSlice::word(int i) const { 0005 assert(i >= 0 && i < 4); 0006 return theWords[i]; 0007 } 0008 0009 bool CSCBadCFEBTimeSlice::check() const { 0010 // demand all four words check out 0011 bool result = true; 0012 for (int i = 0; i < 4; ++i) { 0013 result &= theWords[i].check(); 0014 } 0015 return result; 0016 }
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.2.1 LXR engine. The LXR team |
![]() ![]() |