Changeset 7188 for trunk/MagicSoft/Mars/mcalib/MCalibConstPix.h
- Timestamp:
- 07/13/05 19:06:26 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mcalib/MCalibConstPix.h
r6073 r7188 9 9 { 10 10 private: 11 12 11 Float_t fCalibConst; // conversion factor (modified after each interlaced cal. update) 13 12 Float_t fCalibFFactor; // global F-Factor (modified after each interlaced cal. update) 14 13 15 14 public: 16 17 15 MCalibConstPix(); 18 16 17 // TObject 19 18 void Clear(Option_t *o="") 20 { 21 fCalibConst = -1.; 22 fCalibFFactor = -1.; 23 } 24 19 { 20 fCalibConst = -1.; 21 fCalibFFactor = -1.; 22 } 23 24 void Copy(TObject &object) const 25 { 26 MCalibConstPix &pix = (MCalibConstPix&)object; 27 pix.fCalibConst = fCalibConst; 28 pix.fCalibFFactor = fCalibFFactor; 29 } 30 25 31 // Getters 26 32 Float_t GetCalibConst() const { return fCalibConst; } … … 31 37 void SetCalibFFactor( const Float_t f ) { fCalibFFactor = f; } 32 38 33 ClassDef(MCalibConstPix, 0) // Temporay Storage Calibraion Constant of one pixel39 ClassDef(MCalibConstPix, 1) // Temporay Storage Calibraion Constant of one pixel 34 40 }; 35 41
Note:
See TracChangeset
for help on using the changeset viewer.