LinkBoardElectronicIndex

Macros

Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#ifndef CondFormatsRPCObjectsLinkBoardElectronicIndex_H
#define CondFormatsRPCObjectsLinkBoardElectronicIndex_H

/* \class LinkBoardElectronicIndex
 * chamber location describtion as given by RawData, naming follows DB
 */

#include <string>

struct LinkBoardElectronicIndex {
  int dccId;
  int dccInputChannelNum;
  int tbLinkInputNum;
  int lbNumInLink;
  std::string print(int depth = 0) const;
};
#endif