1 #include "otsdaq-core/DataDecoders/DataTypes.h"
9 DataTypes::DataTypes(
void)
13 DataTypes::~DataTypes(
void)
17 bool DataTypes::isBCOHigh(uint32_t data)
20 int dataType = (data>>4)&0x0f;
21 if(type==9 && dataType==2)
return true;
26 bool DataTypes::isBCOLow(uint32_t data)
29 int dataType = (data>>4)&0x0f;
30 if(type==9 && dataType==1)
return true;
35 bool DataTypes::isTrigger(uint32_t data)
41 bool DataTypes::isFSSRData(uint32_t data)
44 if(type==1)
return true;
49 bool DataTypes::isPSI46Data(uint32_t data)