00001 #include <list> 00002 #include <utility> 00003 00004 #include "SctApiFwd.h" 00005 00006 namespace SctApi { 00007 class RodInfo { 00008 public: 00010 int minLink; 00011 00013 00016 std::map<unsigned long, unsigned long> offRODTTC; 00017 00019 /* 00020 Key is mid on this ROD (ch >= 48) 00021 */ 00022 std::map<unsigned long, unsigned long> offRODRX; 00023 00025 00041 unsigned int linkErrorMasks[96]; 00042 00044 RodInfo() : minLink(97) { for(int l=0; l<96; l++) linkErrorMasks[l] = 0; } 00045 }; 00046 }