![]() |
![]() |
#include <EventFilter/ESRawToDigi/interface/ESCrcKchipFast.h>
Public Member Functions | |
void | add (unsigned int data) |
ESCrcKchipFast () | |
uint32_t | get_crc () |
void | init () |
bool | isCrcOk (unsigned int crcin=0x0000) |
void | reset () |
~ESCrcKchipFast () | |
Private Attributes | |
uint32_t | crc |
Definition at line 4 of file ESCrcKchipFast.h.
ESCrcKchipFast::ESCrcKchipFast | ( | ) | [inline] |
ESCrcKchipFast::~ESCrcKchipFast | ( | ) | [inline] |
uint32_t ESCrcKchipFast::get_crc | ( | ) | [inline] |
Definition at line 36 of file ESCrcKchipFast.h.
References crc.
Referenced by isCrcOk().
00036 { 00037 return crc ; 00038 };
Definition at line 17 of file ESCrcKchipFast.h.
References crc.
Referenced by ESCrcKchipFast().
00017 { 00018 crc = 0x0ffff ; 00019 }
Definition at line 40 of file ESCrcKchipFast.h.
References get_crc().
00040 { 00041 return ((get_crc()==crcin) ? true : false ); 00042 };
Definition at line 21 of file ESCrcKchipFast.h.
References crc.
Referenced by ESCrcKchipFast().
00021 { 00022 crc = 0x0ffff ; 00023 } ;
uint32_t ESCrcKchipFast::crc [private] |