Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:02:09

0001 #ifndef EcalTPGLut_h
0002 #define EcalTPGLut_h
0003 
0004 #include "CondFormats/Serialization/interface/Serializable.h"
0005 
0006 class EcalTPGLut {
0007 public:
0008   EcalTPGLut();
0009   EcalTPGLut(const EcalTPGLut &);
0010   ~EcalTPGLut();
0011 
0012   EcalTPGLut &operator=(const EcalTPGLut &);
0013 
0014   const unsigned int *getLut() const;
0015   void setLut(const unsigned int *lut);
0016 
0017 private:
0018   unsigned int lut_[1024];
0019 
0020   COND_SERIALIZABLE;
0021 };
0022 
0023 #endif