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

Legend:

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

    r3012 r3029  
    267267        {
    268268
    269           Float_t rsigma = pix->GetRSigmaSquare();
    270           if (rsigma > 0.)
    271             rsigma = TMath::Sqrt(rsigma);
    272 
    273269          *fLog << all << pix->GetPixId() << " Pedestals: " << pix->GetPed() << " +- "
    274270                << pix->GetPedRms() << " Reduced Charge: " << pix->GetCharge() << " +- "
    275                 << pix->GetSigmaCharge() << " Reduced Sigma: " << rsigma
     271                << pix->GetSigmaCharge() << " Reduced Sigma: " << pix->GetRSigmaCharge()
    276272                << " Nr Phe's: " << pix->GetPheFFactorMethod() << endl;
    277           id++;
     273          id++;
    278274        }
    279275    }
     
    293289          {
    294290
    295             Float_t rsigma = pix->GetRSigmaSquare();
    296             if (rsigma > 0.)
    297               rsigma = TMath::Sqrt(rsigma);
    298            
    299291            *fLog << all << pix->GetPixId() << " Pedestals: " << pix->GetPed() << " +- "
    300292                  << pix->GetPedRms() << " Reduced Charge: " << pix->GetCharge() << " +- "
    301                   << pix->GetSigmaCharge() << " Reduced Sigma: " << rsigma << endl;
     293                  << pix->GetSigmaCharge() << " Reduced Sigma: " << pix->GetRSigmaCharge() << endl;
    302294            id++;
    303295          }
     
    420412      if (!(*this)[idx].IsTimeFitValid())
    421413        return kFALSE;
    422       val = (*this)[idx].GetTime() * gkTimeSliceWidth;
     414      val = (*this)[idx].GetMeanTimeOffset() * gkTimeSliceWidth;
    423415      break;
    424416    case 6:
    425417      if (!(*this)[idx].IsTimeFitValid())
    426418        return kFALSE;
    427       val = (*this)[idx].GetSigmaTime() * gkTimeSliceWidth;
     419      val = (*this)[idx].GetTimingPrecision() * gkTimeSliceWidth;
    428420      break;
    429421    case 7:
     
    439431      break;
    440432    case 10:
    441       if ((*this)[idx].GetRSigmaSquare() > 0.)
    442         val = TMath::Sqrt((*this)[idx].GetRSigmaSquare());
    443       else
    444         val = -1.;
     433      val = (*this)[idx].GetRSigmaCharge();
    445434      break;
    446435    case 11:
     
    469458      break;
    470459    case 17:
    471       if ( (*this)[idx].GetRSigmaSquare() > 0. && (*this)[idx].GetCharge() > 0. )
    472         val = TMath::Sqrt((*this)[idx].GetRSigmaSquare()) / (*this)[idx].GetCharge();
    473       else
    474         val = -1.;
     460      val = (*this)[idx].GetRSigmaCharge() / (*this)[idx].GetCharge();
    475461      break;
    476462    case 18:
Note: See TracChangeset for help on using the changeset viewer.