Ignore:
Timestamp:
05/10/07 16:33:01 (18 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mimage/MCameraSmooth.cc

    r6855 r8489  
    120120                const UShort_t nid = gpix.GetNeighbor(j);
    121121
    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();
    128125                num++;
    129126            }
Note: See TracChangeset for help on using the changeset viewer.