00001 /* 00002 Tonko, 7/19/00 00003 00004 This board maps the DAQ's numbering scheme (sector,RB) to what 00005 SVT expects. 00006 Normally, they are the same but during the first phase of SVT 00007 test they may differ depending which fiber is plugged into which 00008 DAQ RB. 00009 */ 00010 #ifndef SVT_RB_MAP_H_ 00011 00012 /* 00013 The index of this table is the DAQ's RB number generated as 00014 00015 (svt_sector*6)+rb where svt_sector 0..3, RB 0..5 00016 00017 while the output is SVTs RB count from 0..23. 00018 Value 255 represents "not valid". 00019 Again, normally this map is 1:1 i.e. index 13 has value 13. 00020 */ 00021 00022 static unsigned char svt_rb_map[24] = { 00023 0,12,255,255,255,255, 00024 255,255,255,255,255,255, 00025 255,255,255,255,255,255, 00026 255,255,255,255,255,255 00027 } ; 00028 00029 #define SVT_RB_MAP_H_ 00030 #endif
1.5.9