Changeset 5454 for trunk/MagicSoft/Mars
- Timestamp:
- 11/22/04 19:00:54 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r5452 r5454 20 20 21 21 -*-*- END OF LINE -*-*- 22 23 2004/11/22: Marcos Lopez 24 25 * mhist/MHFindSignificance.h: 26 - fixed the return type of some getter functions. Some was returning 27 Float_t instead of Int_t and other Float_t instead of Double_t. 28 - added more getter functions. 29 30 22 31 23 32 2004/11/22: Markus Gaug -
trunk/MagicSoft/Mars/mhist/MHFindSignificance.h
r2311 r5454 151 151 Bool_t DrawFit(Option_t *opt=NULL); 152 152 153 Float_t GetDegree() const { return fDegree; } 154 Float_t GetProb() const { return fProb; } 155 Float_t GetNdf() const { return fNdf; } 156 Float_t GetGamma() const { return fGamma; } 157 Float_t GetNon() const { return fNon; } 158 Float_t GetNex() const { return fNex; } 159 Float_t GetNbg() const { return fNbg; } 160 Float_t GetSigLiMa() const { return fSigLiMa; } 161 Float_t GetMbins() const { return fMbins; } 162 Float_t GetAlphasi() const { return fAlphasi; } 153 Int_t GetDegree() const { return fDegree; } 154 Double_t GetProb() const { return fProb; } 155 Int_t GetNdf() const { return fNdf; } 156 Double_t GetGamma() const { return fGamma; } 157 Double_t GetNon() const { return fNon; } 158 Double_t GetNex() const { return fNex; } 159 Double_t GetNbg() const { return fNbg; } 160 Double_t GetSigLiMa() const { return fSigLiMa; } 161 Int_t GetMbins() const { return fMbins; } 162 Double_t GetAlphasi() const { return fAlphasi; } 163 164 TH1* GetHist() const { return fHist;} 165 Double_t GetdNon() const { return fNon;} 166 Double_t GetdNbg() const {return fNbg; } 167 Double_t GetdNex() const { return fdNex; } 168 Double_t GetNoff() const {return fNoff;} 169 Double_t GetChisq() const {return fChisq;} 170 Double_t GetNbgtotFitted() const {return fNbgtotFitted;} 171 Double_t GetdNbgtotFitted() const {return fNbgtotFitted;} 172 Double_t GetNbgtot() const {return fNbgtot;} 173 Double_t GetSigmaGauss() const {return fSigmaGauss;} 174 Double_t GetdSigmaGauss() const {return fdSigmaGauss;} 175 Double_t GetNexGauss() const {return fNexGauss;} 176 Double_t GetdNexGauss() const {return fdNexGauss;} 177 TF1* GetGBackg() const { return fGBackg; } 178 TF1* GetGPoly() const { return fGPoly; } 179 TF1* GetPoly() const { return fPoly; } 180 163 181 164 182 void SetRebin(Bool_t b=kTRUE);
Note:
See TracChangeset
for help on using the changeset viewer.