2 #include "otsdaq-core/ConfigurationPluginDataFormats/FETable.h"
3 #include "otsdaq-coreMacros/TablePluginMacros.h"
8 FEConfiguration::FEConfiguration(
void) :
TableBase(
"FEConfiguration")
31 FEConfiguration::~FEConfiguration(
void) {}
37 unsigned int tmpInstance;
39 for(
unsigned int row = 0; row < TableBase::activeTableView_->getNumberOfRows(); row++)
41 TableBase::activeTableView_->getValue(tmpType, row, SupervisorType);
42 TableBase::activeTableView_->getValue(tmpInstance, row, SupervisorInstance);
43 TableBase::activeTableView_->getValue(tmpID, row, FrontEndId);
44 std::cout << __COUT_HDR_FL__ <<
"Type: " << tmpType <<
" Name: " << tmpInstance
45 <<
" row: " << row << std::endl;
46 typeNameToRow_[composeUniqueName(tmpType, tmpInstance)][tmpID] = row;