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/mhcalib/MHCalibrationTestCam.cc

    r8339 r8489  
    230230    {
    231231
    232       MHCalibrationPix &histhi = (*this)[i];
    233 
    234       const MSignalPix *pix = calibration->GetPixById(i);
    235       if (!pix)
    236         continue;
    237 
    238       const Float_t   signal = pix->GetNumPhotons();
    239 
     232      const MSignalPix &pix = (*calibration)[i];
     233
     234      const Float_t signal = pix.GetNumPhotons();
    240235      if (signal < 0.0001)
    241         continue;
    242      
     236          continue;
     237
    243238      const Int_t aidx   = (*fGeom)[i].GetAidx();
    244239      const Int_t sector = (*fGeom)[i].GetSector();
    245240
    246       histhi.FillHistAndArray(signal) ;
     241      (*this)[i].FillHistAndArray(signal);
    247242
    248243      sumareahi  [aidx]   += signal;
Note: See TracChangeset for help on using the changeset viewer.