#include "geometry/DiracBoard.hh"#include "geometry/DiracChip.hh"#include <iostream>#include "tools/Log.hh"Include dependency graph for DiracBoard.cpp:

Go to the source code of this file.
Functions | |
| static int | HRChipMap (const int chNum) |
| static int HRChipMap | ( | const int | chNum | ) | [static] |
Definition at line 13 of file DiracBoard.cpp.
00013 { 00014 int div = chNum / 6, mod = chNum % 6; 00015 return ( (((div & 1) == 0) ? mod : (6 - mod)) + (div * 6) + 1); 00016 } // HRChipMap
1.4.7