Ignore:
Timestamp:
02/28/04 04:37:49 (21 years ago)
Author:
gaug
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mcalib/MCalibrationChargeCalc.cc

    r3351 r3353  
    352352  Float_t avouterprms = 0;
    353353  Float_t avouternum  = 0;
     354
    354355  for (Int_t pixid=0; pixid<fPedestals->GetSize(); pixid++)
    355356    {
    356357
    357358      MCalibrationChargePix &pix = (*fCam)[pixid];
    358 
    359       //
    360       // Check if the pixel has been excluded from the fits
    361       //
    362       if (pix.IsExcluded())
    363         continue;
    364359
    365360      //
     
    370365      const Float_t num    = TMath::Sqrt((Float_t)fPedestals->GetTotalEntries());
    371366
     367      if (ped == -1.)
     368          pix.SetExcluded();
     369     
     370      //
     371      // Check if the pixel has been excluded from the fits
     372      //
     373      if (pix.IsExcluded())
     374        continue;
     375
    372376      if (fGeom->GetPixRatio(pixid) == 1.)
    373377      {
    374378          avinnerped  += ped;
    375379          avinnerprms += prms;
    376           avinnernum  += num;
     380          avinnernum++;
    377381      }
    378382      else
     
    380384          avouterped  += ped;
    381385          avouterprms += prms;
    382           avouternum  += num;
     386          avouternum++;
    383387      }
    384388      //
Note: See TracChangeset for help on using the changeset viewer.