#include "geometry/GassiplexBoardBeta21.hh"
#include "geometry/GassiplexChip.hh"
#include "geometry/GassiplexChannel.hh"
#include <iostream>
#include "tools/Log.hh"
Include dependency graph for GassiplexBoardBeta21.cpp:
Go to the source code of this file.
Defines | |
#define | NBCHANNEL 96 |
Functions | |
static int | chMapBeta21 (const int chNum) |
#define NBCHANNEL 96 |
Definition at line 9 of file GassiplexBoardBeta21.cpp.
static int chMapBeta21 | ( | const int | chNum | ) | [static] |
Definition at line 14 of file GassiplexBoardBeta21.cpp.
Referenced by GassiplexBoardBeta21::init().
00015 { 00016 int mod = (chNum % 16) * 2; 00017 return((((chNum & 16) == 0) ? mod : 15 - mod) + (chNum / 16) * 16); 00018 }