CMS 3D CMS Logo

EcalTPGLut.cc
Go to the documentation of this file.
2 
4 
6  const unsigned int* lut = tpgLut.getLut();
7  for (unsigned int i = 0; i < 1024; i++)
8  lut_[i] = lut[i];
9 }
10 
12 
13 const unsigned int* EcalTPGLut::getLut() const { return lut_; }
14 
15 void EcalTPGLut::setLut(const unsigned int* lut) {
16  for (unsigned int i = 0; i < 1024; i++)
17  lut_[i] = lut[i];
18 }
19 
21  const unsigned int* lut = tpgLut.getLut();
22  for (unsigned int i = 0; i < 1024; i++)
23  lut_[i] = lut[i];
24  return *this;
25 }
void setLut(const unsigned int *lut)
Definition: EcalTPGLut.cc:15
EcalTPGLut & operator=(const EcalTPGLut &)
Definition: EcalTPGLut.cc:20
const unsigned int * getLut() const
Definition: EcalTPGLut.cc:13
unsigned int lut_[1024]
Definition: EcalTPGLut.h:18