CMS 3D CMS Logo

GEMRawToDigi.h
Go to the documentation of this file.
1 #ifndef EventFilter_GEMRawToDigi_GEMRawToDigi_h
2 #define EventFilter_GEMRawToDigi_GEMRawToDigi_h
3 
6 #include <memory>
8 
9 class GEMRawToDigi {
10 public:
11  std::unique_ptr<GEMAMC13> convertWordToGEMAMC13(const uint64_t* word);
12  bool vfatError() const { return vfatError_; }
13  bool amcError() const { return amcError_; }
14 
15 private:
16  bool vfatError_;
17  bool amcError_;
18 };
19 #endif
uint64_t word
bool amcError() const
Definition: GEMRawToDigi.h:13
std::unique_ptr< GEMAMC13 > convertWordToGEMAMC13(const uint64_t *word)
Definition: GEMRawToDigi.cc:7
unsigned long long uint64_t
Definition: Time.h:13
bool vfatError() const
Definition: GEMRawToDigi.h:12