1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef EventFilter_GEMRawToDigi_GEMRawToDigi_h
#define EventFilter_GEMRawToDigi_GEMRawToDigi_h
/** \class GEMRawToDigi
* \author J. Lee, Yechan Kang - UoS
*/
#include <memory>
#include "DataFormats/GEMDigi/interface/GEMAMC13.h"
class GEMRawToDigi {
public:
std::unique_ptr<GEMAMC13> convertWordToGEMAMC13(const uint64_t* word);
bool vfatError() const { return vfatError_; }
bool amcError() const { return amcError_; }
private:
bool vfatError_;
bool amcError_;
};
#endif
|