//============================================================================ /*! \file Feb1nxGenC.cxx * \author W.F.J.Mueller/GSI, significant adaptions * \author Norbert Abel/KIP, initial version */ //============================================================================ #include "roc/defines_roc.h" #include "nxyter/Feb1nxGenC.h" /*! * \class nxyter::Feb1nxGenC * \brief Represents a FEB Rev C with 1 nXYTER * */ //---------------------------------------------------------------------------- //! Constructor with full addressing path information. /*! * Sets up \c Feb1nxGenC object with full addressing information * \param board ROC board pointer * \param port the \ref glo_roc_port */ nxyter::Feb1nxGenC::Feb1nxGenC(roc::Board* board, int port) : nxyter::FebBase(board, port, kFeb1nxGenC) { int nxnum = (port==CON19) ? 0 : 2; // addr, nxnum, adc addNxChip( 8, nxnum, 1); // data taken from 2nd ADC channel } //---------------------------------------------------------------------------- nxyter::Feb1nxGenC::~Feb1nxGenC() { }