Changeset 7252 for trunk/MagicSoft/Mars/mmuon/MHMuonPar.h
- Timestamp:
- 08/02/05 13:41:41 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mmuon/MHMuonPar.h
r7015 r7252 19 19 { 20 20 private: 21 TH1F fHistRadius; // Radius 22 TH1F fHistArcWidth; // ArcWidth 23 24 TProfile fHistBroad; // ArcWidth/Radius Vs Radius 25 TProfile fHistSize; // MuonSize Vs Radius 21 static const Float_t fgIntegralLoLim; // lower limit of integral 22 static const Float_t fgIntegralUpLim; // upper limit of integral 26 23 27 24 MMuonSearchPar *fMuonSearchPar; //! 28 25 MMuonCalibPar *fMuonCalibPar; //! 29 26 27 TH1F fHistRadius; // Radius 28 TH1F fHistArcWidth; // ArcWidth 29 30 TProfile fHistBroad; // ArcWidth/Radius Vs Radius 31 TProfile fHistSize; // MuonSize Vs Radius 32 30 33 Float_t fMm2Deg; 34 35 Double_t Integral(const TProfile &p, Int_t a, Int_t b) const; 36 Double_t Integral(const TProfile &p, Float_t a=fgIntegralLoLim, Float_t b=fgIntegralUpLim) const; 31 37 32 38 public: … … 41 47 const TProfile& GetHistSize() const { return fHistSize; } 42 48 49 Double_t GetMeanSize() const { return Integral(fHistSize); } 50 Double_t GetMeanWidth() const { return Integral(fHistBroad); } 51 Stat_t GetEntries() const { return fHistBroad.GetEntries(); } 52 43 53 void Draw(Option_t *opt=""); 44 54 void Paint(Option_t *opt="");
Note:
See TracChangeset
for help on using the changeset viewer.