CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
HcalCholeskyMatrix.h
Go to the documentation of this file.
1 #ifndef HcalCholeskyMatrix_h
2 #define HcalCholeskyMatrix_h
3 
4 #include <boost/cstdint.hpp>
6 #include <math.h>
7 
9  public:
10  HcalCholeskyMatrix(int fId=0);
11 
12  float getValue(int capid, int i,int j) const;// {return cmatrix[capid][i][j];}
13  void setValue(int capid, int i, int j, float val);// {cmatrix[capid][i][j] = val;}
14 
15  uint32_t rawId () const {return mId;}
16 
17  private:
18  signed short int cmatrix[4][55];
19  uint32_t mId;
20 // float cmatrix[4][10][10];
21 };
22 #endif
float getValue(int capid, int i, int j) const
int i
Definition: DBlmapReader.cc:9
void setValue(int capid, int i, int j, float val)
signed short int cmatrix[4][55]
int j
Definition: DBlmapReader.cc:9
HcalCholeskyMatrix(int fId=0)
uint32_t rawId() const