source: trunk/MagicSoft/Mars/mcalib/MCalibrationRelTimePix.h@ 4033

Last change on this file since 4033 was 3644, checked in by gaug, 20 years ago
*** empty log message ***
File size: 697 bytes
Line 
1#ifndef MARS_MCalibrationRelTimePix
2#define MARS_MCalibrationRelTimePix
3
4#ifndef MARS_MCalibrationPix
5#include "MCalibrationPix.h"
6#endif
7
8class MCalibrationRelTimePix : public MCalibrationPix
9{
10private:
11
12public:
13
14 MCalibrationRelTimePix(const char *name=NULL, const char *title=NULL);
15 ~MCalibrationRelTimePix() {}
16
17 Float_t GetTimeOffset() const { return GetMean(); }
18 Float_t GetTimeOffsetErr() const { return GetMeanErr(); }
19 Float_t GetTimePrecision() const { return GetSigma(); }
20 Float_t GetTimePrecisionErr() const { return GetSigmaErr(); }
21
22 ClassDef(MCalibrationRelTimePix, 1) // Container Rel. Arrival Time Calibration Results Pixel
23};
24
25#endif
26
Note: See TracBrowser for help on using the repository browser.