eiger mapping done

This commit is contained in:
Dhanya Maliakal
2015-03-27 17:42:23 +01:00
parent 7924989fb1
commit 70c98a663d
2 changed files with 45 additions and 34 deletions

View File

@ -25,7 +25,6 @@ public:
int **dMap;
uint32_t **dMask;
int ix, iy;
dMap=new int*[ypixels];
dMask=new uint32_t*[ypixels];
@ -70,9 +69,9 @@ public:
//Mask
for(ix=0; ix<ypixels; ++ix)
for(iy=0; iy<xpixels; ++iy)
dMask[ix][iy] = 0x0;
for(int ir=0; ir<ypixels; ++ir)
for(int ic=0; ic<xpixels; ++ic)
dMask[ir][ic] = 0x0;
setDataMap(dMap);
setDataMask(dMask);