Ignore:
Timestamp:
06/23/04 01:24:19 (20 years ago)
Author:
gaug
Message:
*** empty log message ***
File:
1 edited

Legend:

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

    r4326 r4336  
    522522      const Float_t sumlo  = pix.GetExtractedSignalLoGain();
    523523     
    524       histhi.FillHistAndArray(sumhi);
    525       histlo.FillHistAndArray(sumlo);
     524      if (!histhi.FillHistAndArray(sumhi))
     525        fHiGainOverflow++;
     526      if (!histlo.FillHistAndArray(sumlo))
     527        fLoGainOverflow++;
    526528
    527529      const Int_t sathi = (Int_t)pix.GetNumHiGainSaturated();
     
    634636{
    635637
     638  if (fHiGainOverflow)
     639    *fLog << warn << GetDescriptor()
     640          << ": WARNING: Histogram Overflow has occurred " << fHiGainOverflow << " in the High-Gain! " << endl;
     641  if (fLoGainOverflow)
     642    *fLog << warn << GetDescriptor()
     643          << ": WARNING: Histogram Overflow has occurred " << fLoGainOverflow << " in the Low-Gain! " << endl;
     644
    636645  for (Int_t i=0; i<fHiGainArray->GetSize(); i++)
    637646    {
Note: See TracChangeset for help on using the changeset viewer.