source: trunk/MagicSoft/Mars/mcalib/MCalibConstPix.h@ 6073

Last change on this file since 6073 was 6073, checked in by gaug, 20 years ago
*** empty log message ***
File size: 893 bytes
Line 
1#ifndef MARS_MCalibConstPix
2#define MARS_MCalibConstPix
3
4#ifndef MARS_MParContainer
5#include "MParContainer.h"
6#endif
7
8class MCalibConstPix : public MParContainer
9{
10private:
11
12 Float_t fCalibConst; // conversion factor (modified after each interlaced cal. update)
13 Float_t fCalibFFactor; // global F-Factor (modified after each interlaced cal. update)
14
15public:
16
17 MCalibConstPix();
18
19 void Clear(Option_t *o="")
20 {
21 fCalibConst = -1.;
22 fCalibFFactor = -1.;
23 }
24
25 // Getters
26 Float_t GetCalibConst() const { return fCalibConst; }
27 Float_t GetCalibFFactor() const { return fCalibFFactor; }
28
29 // Setters
30 void SetCalibConst ( const Float_t f ) { fCalibConst = f; }
31 void SetCalibFFactor( const Float_t f ) { fCalibFFactor = f; }
32
33 ClassDef(MCalibConstPix, 0) // Temporay Storage Calibraion Constant of one pixel
34};
35
36#endif
Note: See TracBrowser for help on using the repository browser.