00001 #ifndef ALGO_XMIT_DECODER_CC 00002 #define ALGO_XMIT_DECODER_CC 00003 #include "algo_xmit_decoder.hh" 00004 00005 bool algo_xmit_decoder::process_header(PMT::word_t word){ 00006 00007 bool status=true; 00008 if(get_word_class(word)==PMT::EVENT_HEADER) 00009 { 00010 if(_verbosity[MSG::INFO]) { 00011 sprintf(_buf,"Found event header word: %x",word); 00012 Message::send(MSG::INFO,__FUNCTION__,_buf); 00013 } 00014 }else 00015 status = algo_slow_readout_decoder::process_header(word); 00016 return status; 00017 00018 } 00019 00020 00021 #endif
1.4.7