Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 10:45:32

0001 #include "CommonTools/TrackerMap/interface/TmCcu.h"
0002 #include "CommonTools/TrackerMap/interface/TmModule.h"
0003 #include <string>
0004 
0005 TmCcu::TmCcu(int crate, int slot, int ring, int addr) {
0006   idex = crate * 10000000 + slot * 100000 + ring * 1000 + addr;
0007   this->crate = crate;
0008   value = 0;
0009   count = 0;
0010   red = -1;
0011   text = "";
0012   nmod = 0;
0013   cmodid = "";
0014   layer = 0;
0015 }
0016 
0017 TmCcu::~TmCcu() {}