Changeset 2015 for trunk/MagicSoft/Mars/manalysis
- Timestamp:
- 04/28/03 09:52:57 (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/manalysis/MBlindPixelCalc.cc
r1966 r2015 185 185 nphot[i] = TESTBIT(fFlags, kUseCentralPixel) ? pix.GetNumPhotons() : 0; 186 186 perr[i] = TESTBIT(fFlags, kUseCentralPixel) ? pix.GetErrorPhot() : 0; 187 188 nphot[i] *= fGeomCam->GetPixRatio(id); 189 // FIXME: perr[i] ??? 190 187 191 for (int j=0; j<n; j++) 188 192 { … … 195 199 if (evtpix) 196 200 { 197 nphot[i] += evtpix->GetNumPhotons() ;201 nphot[i] += evtpix->GetNumPhotons()*fGeomCam->GetPixRatio(nid); 198 202 perr[i] += evtpix->GetErrorPhot(); 203 // FIXME: perr[i] ??? 199 204 } 200 205 num++; 201 206 } 202 207 203 nphot[i] /= num ;204 perr[i] /= num ;208 nphot[i] /= num*fGeomCam->GetPixRatio(id); 209 perr[i] /= num/*FIXME:???*/; 205 210 } 206 211
Note:
See TracChangeset
for help on using the changeset viewer.