Changeset 2544 for trunk


Ignore:
Timestamp:
11/20/03 16:14:31 (21 years ago)
Author:
gaug
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r2542 r2544  
    44
    55                                                 -*-*- END OF LINE -*-*-
     6
     7  2003/11/20: Markus Gaug
     8
     9   * manalysis/MCalibrationPix:
     10     - replaced fErrT by fSigmaT
     11
     12   * manalysis/MCalibrationCam.cc:
     13     - replaced fErrT by fSigmaT
     14
     15   * mhist/MHCalibrationPix.cc:
     16     - replaced GetErrT by GetSigmaT()
     17
    618
    719  2003/11/20: Wolfgang Wittek
  • trunk/MagicSoft/Mars/manalysis/MCalibrationCam.cc

    r2538 r2544  
    451451        break;
    452452    case 6:
    453        val = (*this)[idx].GetErrT();
     453       val = (*this)[idx].GetSigmaT();
    454454        break;
    455455    case 7:
  • trunk/MagicSoft/Mars/manalysis/MCalibrationPix.cc

    r2538 r2544  
    5656  fQ   = fErrQ     = 0.;
    5757  fPed = fPedRms   = 0.;
    58   fT   = fErrT  = 0.;
     58  fT   = fSigmaT  = 0.;
    5959  fRQ  = fErrRQ = 0.;
    6060  fSigmaQ = fErrSigmaQ = 0.;
     
    129129    }
    130130
    131   fT     = fHist->GetTMean();
    132   fErrT  = fHist->GetTSigma();
    133   fTProb = fHist->GetTProb();
     131  fT       = fHist->GetTMean();
     132  fSigmaT  = fHist->GetTSigma();
     133  fTProb   = fHist->GetTProb();
    134134
    135135  return kTRUE;
  • trunk/MagicSoft/Mars/manalysis/MCalibrationPix.h

    r2538 r2544  
    1919  Float_t fQ;                // The mean charge after the fit
    2020  Float_t fErrQ;             // The error of mean charge after the fit
     21  Float_t fSigmaQ;           // The sigma of the mean charge after the fit
     22  Float_t fErrSigmaQ;        // The error of the sigma of the mean charge after the fit
    2123  Float_t fQProb;            // The probability of the fit function
     24
    2225  Float_t fPed;              // The mean pedestal (from MPedestalPix)
    2326  Float_t fPedRms;           // The pedestal  RMS (from MPedestalPix)
    24   Float_t fSigmaQ;           // The sigma of the mean charge after the fit
    25   Float_t fErrSigmaQ;        // The error of the sigma of the mean charge after the fit
     27
    2628  Float_t fT;                // The mean arrival time after the fit 
    27   Float_t fErrT;             // The error of the mean arrival time after the fit
     29  Float_t fSigmaT;           // The error of the mean arrival time after the fit
    2830  Float_t fTProb;            // The probability of the fit function
    2931 
     
    5052  Float_t GetErrSigmaQ() const   { return fErrSigmaQ; }
    5153  Float_t GetT()         const   { return fT;         }
    52   Float_t GetErrT()      const   { return fErrT;      }
     54  Float_t GetSigmaT()    const   { return fSigmaT;    }
    5355  Float_t GetTProb()     const   { return fTProb;    }   
    5456 
  • trunk/MagicSoft/Mars/mhist/MHCalibrationPixel.cc

    r2525 r2544  
    401401  Int_t nbins = 100;
    402402
    403   //  *fLog << "New number of bins in HQ: " << CutEdges(fHQ,nbins) << endl;
     403  CutEdges(fHQ,nbins);
    404404
    405405  fQfirst = fHQ->GetBinLowEdge(fHQ->GetXaxis()->GetFirst());
Note: See TracChangeset for help on using the changeset viewer.