Changeset 2997 for trunk/MagicSoft/Mars/manalysis
- Timestamp:
- 01/30/04 21:30:15 (22 years ago)
- Location:
- trunk/MagicSoft/Mars/manalysis
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/manalysis/MHPedestalPixel.h
r2973 r2997 53 53 void ChangeHistId(Int_t i); 54 54 55 // Setters56 const TH1F *GetHPedestalCharge() const { return fHPedestalCharge;}55 // Getters 56 const TH1F *GetHPedestalCharge() const { return fHPedestalCharge; } 57 57 58 Double_t GetChargeMean() const { return fChargeMean; } 59 Double_t GetChargeMeanErr() const { return fChargeMeanErr; } 60 Double_t GetChargeSigma() const { return fChargeSigma; } 61 Double_t GetChargeSigmaErr() const { return fChargeSigmaErr; } 62 Double_t GetChargeChiSquare() const { return fChargeChisquare; } 63 Double_t GetChargeProb() const { return fChargeProb; } 64 Int_t GetChargeNdf() const { return fChargeNdf; } 58 Double_t GetChargeMean() const { return fChargeMean; } 59 Double_t GetChargeMeanErr() const { return fChargeMeanErr; } 60 Double_t GetChargeSigma() const { return fChargeSigma; } 61 Double_t GetChargeSigmaErr() const { return fChargeSigmaErr; } 62 Double_t GetChargeChiSquare() const { return fChargeChisquare; } 63 Double_t GetChargeProb() const { return fChargeProb; } 64 Int_t GetChargeNdf() const { return fChargeNdf; } 65 66 Int_t GetTotalEntries() const { return fTotalEntries; } 65 67 66 68 Bool_t IsFitOK() const; -
trunk/MagicSoft/Mars/manalysis/MPedCalcPedRun.cc
r2991 r2997 39 39 // Actually, MPedCalcPedRun applies the following formula (1): 40 40 // 41 // PedRMS = Sqrt( (sum(x_i 2) - sum(x_i)/n) / n-1 / 14 )41 // PedRMS = Sqrt( (sum(x_i^2) - sum(x_i)/n) / n-1 / 14 ) 42 42 // 43 43 // where x_i is the sum of 14 FADC slices and sum means the sum over all -
trunk/MagicSoft/Mars/manalysis/MPedestalPix.h
r2969 r2997 47 47 48 48 // Getters 49 MHPedestalPixel *GetHist() const { return fHist; } 50 49 51 Float_t GetPedestal() const { return fPedestal; } 50 52 Float_t GetPedestalRms() const { return fPedestalRms; }
Note:
See TracChangeset
for help on using the changeset viewer.