CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
EcalTPGLut.cc
Go to the documentation of this file.
2 
4 { }
5 
7 {
8  const unsigned int * lut = tpgLut.getLut() ;
9  for (unsigned int i=0 ; i<1024 ; i++) lut_[i] = lut[i] ;
10 }
11 
13 { }
14 
15 const unsigned int * EcalTPGLut::getLut() const
16 {
17  return lut_ ;
18 }
19 
20 void EcalTPGLut::setLut(const unsigned int * lut)
21 {
22  for (unsigned int i=0 ; i<1024 ; i++) lut_[i] = lut[i] ;
23 }
24 
26  const unsigned int * lut = tpgLut.getLut() ;
27  for (unsigned int i=0 ; i<1024 ; i++) lut_[i] = lut[i] ;
28  return *this;
29 }
int i
Definition: DBlmapReader.cc:9
void setLut(const unsigned int *lut)
Definition: EcalTPGLut.cc:20
EcalTPGLut & operator=(const EcalTPGLut &)
Definition: EcalTPGLut.cc:25
tuple lut
Definition: lumiPlot.py:244
unsigned int lut_[1024]
Definition: EcalTPGLut.h:20
const unsigned int * getLut() const
Definition: EcalTPGLut.cc:15