Ignore:
Timestamp:
08/27/04 20:14:56 (20 years ago)
Author:
gaug
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mpedestal/MPedestalCam.cc

    r4609 r4777  
    384384        return kFALSE;
    385385
     386    const Float_t ped      = (*this)[idx].GetPedestal();
     387    const Float_t rms      = (*this)[idx].GetPedestalRms();
     388
    386389    switch (type)
    387390    {
    388391    case 0:
    389         val = (*this)[idx].GetPedestal();
     392        val = ped;
    390393        break;
    391394    case 1:
    392395        val = fTotalEntries > 0 ?
    393             (*this)[idx].GetPedestalRms()/TMath::Sqrt((Float_t)fTotalEntries)
    394             : (*this)[idx].GetPedestalError();
     396            rms/TMath::Sqrt((Float_t)fTotalEntries)
     397          : (*this)[idx].GetPedestalError();
    395398        break;
    396399    case 2:
    397         val = (*this)[idx].GetPedestalRms();
     400        val = rms;
    398401        break;
    399402    case 3:
    400403        val = fTotalEntries > 0 ?
    401             (*this)[idx].GetPedestalRms()/TMath::Sqrt((Float_t)fTotalEntries)/2.
    402             : (*this)[idx].GetPedestalRmsError();
     404          rms/TMath::Sqrt((Float_t)fTotalEntries*2.)
     405          : (*this)[idx].GetPedestalRmsError();
    403406        break;
    404407    default:
Note: See TracChangeset for help on using the changeset viewer.