Changeset 8776 for trunk/MagicSoft/Mars/mmuon/MMuonCalibPar.h
- Timestamp:
- 12/03/07 17:46:31 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mmuon/MMuonCalibPar.h
r7009 r8776 26 26 Float_t fPeakPhi; // The angle which indicates the peak position in the estimated circle 27 27 28 Float_t fRelTimeMean; // [ns] Result of the gaus fit to the arrival time 29 Float_t fRelTimeSigma; // [ns] Result of the gaus fit to the arrival time 30 28 31 public: 29 32 MMuonCalibPar(const char *name=NULL, const char *title=NULL); … … 41 44 //Bool_t IsUseUnmap() const { return fUseUnmap; } 42 45 Float_t GetPeakPhi() const { return fPeakPhi; } 46 Float_t GetRelTimeMean() const { return fRelTimeMean; } 47 Float_t GetRelTimeSigma() const { return fRelTimeSigma; } 43 48 44 49 // void SetArcLength(Float_t len) { fArcLength = len; } … … 51 56 //void SetUseUnmap() { fUseUnmap = kTRUE; } 52 57 void SetPeakPhi(Float_t phi) { fPeakPhi = phi; } 58 void SetTime(Float_t mean, Float_t sigma) { fRelTimeMean=mean; fRelTimeSigma=sigma; } 53 59 54 60 void Print(Option_t *opt=NULL) const; 55 61 56 ClassDef(MMuonCalibPar, 1) // Container to hold muon calibration parameters62 ClassDef(MMuonCalibPar, 2) // Container to hold muon calibration parameters 57 63 }; 58 64
Note:
See TracChangeset
for help on using the changeset viewer.