File indexing completed on 2024-04-06 12:10:41
0001 #ifndef EventFilter_GEMRawToDigi_GEMRawToDigi_h
0002 #define EventFilter_GEMRawToDigi_GEMRawToDigi_h
0003
0004
0005
0006 #include <memory>
0007 #include "DataFormats/GEMDigi/interface/GEMAMC13.h"
0008
0009 class GEMRawToDigi {
0010 public:
0011 std::unique_ptr<GEMAMC13> convertWordToGEMAMC13(const uint64_t* word);
0012 bool vfatError() const { return vfatError_; }
0013 bool amcError() const { return amcError_; }
0014
0015 private:
0016 bool vfatError_;
0017 bool amcError_;
0018 };
0019 #endif