#include <TTUPointingLogic.h>
Public Member Functions | |
bool | process (const TTUInput &) |
void | setBoardSpecs (const TTUBoardSpecs::TTUBoardConfig &) |
TTUPointingLogic () | |
Standard constructor. | |
virtual | ~TTUPointingLogic () |
Destructor. | |
Private Attributes | |
bool | m_debug |
TTUWedgeORLogic * | m_wedgeLogic |
Definition at line 21 of file TTUPointingLogic.h.
TTUPointingLogic::TTUPointingLogic | ( | ) |
Standard constructor.
Definition at line 18 of file TTUPointingLogic.cc.
References m_debug, and TTULogic::m_triggersignal.
{ m_triggersignal = false; m_debug = false; }
TTUPointingLogic::~TTUPointingLogic | ( | ) | [virtual] |
bool TTUPointingLogic::process | ( | const TTUInput & | inmap | ) | [virtual] |
Implements TTULogic.
Definition at line 41 of file TTUPointingLogic.cc.
References gather_cfg::cout, m_debug, and TTULogic::m_triggersignal.
{ if( m_debug) std::cout << "TTUPointingLogic::process starts" << std::endl; m_triggersignal = false; //m_ttuLogic->process( inmap ); if( m_debug ) std::cout << "TTUPointingLogic>process ends" << std::endl; return true; }
void TTUPointingLogic::setBoardSpecs | ( | const TTUBoardSpecs::TTUBoardConfig & | boardspecs | ) | [virtual] |
Implements TTULogic.
Definition at line 34 of file TTUPointingLogic.cc.
References m_wedgeLogic, and TTUWedgeORLogic::setBoardSpecs().
{ m_wedgeLogic->setBoardSpecs( boardspecs ); }
bool TTUPointingLogic::m_debug [private] |
Definition at line 40 of file TTUPointingLogic.h.
Referenced by process(), and TTUPointingLogic().
TTUWedgeORLogic* TTUPointingLogic::m_wedgeLogic [private] |
Definition at line 42 of file TTUPointingLogic.h.
Referenced by setBoardSpecs().