Ignore:
Timestamp:
09/09/04 17:43:22 (20 years ago)
Author:
gaug
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/manalysis
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/manalysis/MHPedestalCam.cc

    r4317 r4905  
    2929//
    3030// Fills the extracted pedestals of MExtractedSignalCam into
    31 // the MHGausEvents-classes MHPedestalPix for every:
     31// the MHCalibrationPix-classes MHPedestalPix for every:
    3232//
    3333// - Pixel, stored in the TObjArray's MHCalibrationCam::fHiGainArray
     
    5555// the fit is declared valid.
    5656// Otherwise, the fit is repeated within ranges of the previous mean
    57 // +- MHGausEvents::fPickupLimit (default: 5) sigma (see MHGausEvents::RepeatFit())
     57// +- MHCalibrationPix::fPickupLimit (default: 5) sigma (see MHCalibrationPix::RepeatFit())
    5858// In case this does not make the fit valid, the histogram means and RMS's are
    59 // taken directly (see MHGausEvents::BypassFit()).
    60 //
    61 // Outliers of more than MHGausEvents::fPickupLimit (default: 5) sigmas
    62 // from the mean are counted as Pickup events (stored in MHGausEvents::fPickup)
     59// taken directly (see MHCalibrationPix::BypassFit()).
     60//
     61// Outliers of more than MHCalibrationPix::fPickupLimit (default: 5) sigmas
     62// from the mean are counted as Pickup events (stored in MHCalibrationPix::fPickup)
    6363//
    6464// The number of summed FADC slices is taken to re-normalize
     
    341341//
    342342// If MBadPixelsPix::IsBad():
    343 // - calls MHGausEvents::SetExcluded()
     343// - calls MHCalibrationPix::SetExcluded()
    344344//
    345345// Calls:
    346346// - MHGausEvents::InitBins()
    347 // - MHGausEvents::ChangeHistId(i)
    348 // - MHGausEvents::SetEventFrequency(fPulserFrequency)
     347// - MHCalibrationPix::ChangeHistId(i)
     348// - MHCalibrationPix::SetEventFrequency(fPulserFrequency)
    349349// - MHPedestalPix::SetNSlices(nslices)
    350350//
     
    401401  for (UInt_t i=0; i<npixels; i++)
    402402  {
    403       MHGausEvents &histhi = (*this)[i];
    404       MHGausEvents &histlo = (*this)(i);
     403      MHCalibrationPix &histhi = (*this)[i];
     404      MHCalibrationPix &histlo = (*this)(i);
    405405
    406406      if (histhi.IsExcluded())
     
    431431  for (UInt_t j=0; j<nareas; j++)
    432432    {
    433       MHGausEvents &histhi = GetAverageHiGainArea(j);
     433      MHCalibrationPix &histhi = GetAverageHiGainArea(j);
    434434      histhi.FillHistAndArray(numareahi[j] == 0 ? 0. : sumareahi[j]/numareahi[j]);
    435435
    436       MHGausEvents &histlo = GetAverageLoGainArea(j);
     436      MHCalibrationPix &histlo = GetAverageLoGainArea(j);
    437437      histlo.FillHistAndArray(numarealo[j] == 0 ? 0. : sumarealo[j]/numarealo[j]);
    438438    }
     
    440440  for (UInt_t j=0; j<nsectors; j++)
    441441    {
    442       MHGausEvents &histhi = GetAverageHiGainSector(j);
     442      MHCalibrationPix &histhi = GetAverageHiGainSector(j);
    443443      histhi.FillHistAndArray(numsectorhi[j] == 0 ? 0. : sumsectorhi[j]/numsectorhi[j]);
    444444
    445       MHGausEvents &histlo = GetAverageLoGainSector(j);
     445      MHCalibrationPix &histlo = GetAverageLoGainSector(j);
    446446      histlo.FillHistAndArray(numsectorlo[j] == 0 ? 0. : sumsectorlo[j]/numsectorlo[j]);
    447447    }
  • trunk/MagicSoft/Mars/manalysis/MHPedestalPix.cc

    r4317 r4905  
    3636// - Sigma Pedestal Error / slice = Sigma Pedestal Error / Sqrt (Number slices)
    3737//
    38 //  Derives from MHGausEvents, fits the pedestals to a Gaussian and performs
     38//  Derives from MHCalibrationPix, fits the pedestals to a Gaussian and performs
    3939//  a Fourier analysis.
    4040//
Note: See TracChangeset for help on using the changeset viewer.