00001 // $Id: TTUPointingLogic.cc,v 1.1 2009/08/09 11:11:37 aosorio Exp $ 00002 // Include files 00003 00004 00005 00006 // local 00007 #include "L1Trigger/RPCTechnicalTrigger/interface/TTUPointingLogic.h" 00008 00009 //----------------------------------------------------------------------------- 00010 // Implementation file for class : TTUPointingLogic 00011 // 00012 // 2009-07-29 : Andres Felipe Osorio Oliveros 00013 //----------------------------------------------------------------------------- 00014 00015 //============================================================================= 00016 // Standard constructor, initializes variables 00017 //============================================================================= 00018 TTUPointingLogic::TTUPointingLogic( ) { 00019 00020 m_triggersignal = false; 00021 00022 m_debug = false; 00023 00024 00025 } 00026 //============================================================================= 00027 // Destructor 00028 //============================================================================= 00029 TTUPointingLogic::~TTUPointingLogic() { 00030 00031 } 00032 00033 //============================================================================= 00034 void TTUPointingLogic::setBoardSpecs( const TTUBoardSpecs::TTUBoardConfig & boardspecs ) 00035 { 00036 00037 m_wedgeLogic->setBoardSpecs( boardspecs ); 00038 00039 } 00040 00041 bool TTUPointingLogic::process( const TTUInput & inmap ) 00042 { 00043 00044 if( m_debug) std::cout << "TTUPointingLogic::process starts" << std::endl; 00045 00046 m_triggersignal = false; 00047 00048 //m_ttuLogic->process( inmap ); 00049 00050 if( m_debug ) std::cout << "TTUPointingLogic>process ends" << std::endl; 00051 00052 return true; 00053 00054 } 00055