CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_6_2_5/src/CondFormats/HcalObjects/src/HcalCovarianceMatrix.cc

Go to the documentation of this file.
00001 #include "CondFormats/HcalObjects/interface/HcalCovarianceMatrix.h"
00002 
00003 HcalCovarianceMatrix::HcalCovarianceMatrix(int fId) : mId (fId)
00004 {
00005    for(int cap = 0; cap != 4; cap++)
00006       for(int i = 0; i != 10; i++)
00007          for(int j = 0; j != 10; j++)
00008          covariancematrix[cap][i][j] = 0;
00009 }
00010