Changeset 8489 for trunk/MagicSoft/Mars/mimage
- Timestamp:
- 05/10/07 16:33:01 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mimage/MCameraSmooth.cc
r6855 r8489 120 120 const UShort_t nid = gpix.GetNeighbor(j); 121 121 122 const MSignalPix *evtpix = fEvt->GetPixById(nid); 123 if (evtpix) 124 { 125 photons[i] += evtpix->GetNumPhotons(); 126 errors[i] += evtpix->GetErrorPhot(); 127 } 122 const MSignalPix &evtpix = (*fEvt)[nid]; 123 photons[i] += evtpix.GetNumPhotons(); 124 errors[i] += evtpix.GetErrorPhot(); 128 125 num++; 129 126 }
Note:
See TracChangeset
for help on using the changeset viewer.