Changeset 6039
- Timestamp:
- 01/27/05 10:56:51 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r6038 r6039 21 21 -*-*- END OF LINE -*-*- 22 22 2005/01/27 Daniel Mazin and Markus Gaug 23 24 * mcalib/MCalibrateData.[h,cc] 25 - derive this class from MCamEvent in order to be able to display 26 evolution of conversion factors in case of interlaced cal. 27 events 23 28 24 29 * mpointing/MInterpolatePointingPos.[h,cc] -
trunk/MagicSoft/Mars/mcalib/MCalibrateData.h
r5865 r6039 25 25 #endif 26 26 27 #ifndef MARS_MCamEvent 28 #include "MCamEvent.h" 29 #endif 30 27 31 class MGeomCam; 28 32 class MBadPixelsCam; … … 35 39 class MCerPhotEvt; 36 40 37 class MCalibrateData : public MTask 41 class MCalibrateData : public MTask, public MCamEvent 38 42 { 39 43 private: … … 107 111 void EnablePedestalType(PedestalType_t i) { fPedestalFlag |= i; } 108 112 113 Int_t GetSize() const { return fCalibConsts.GetSize(); } 114 109 115 void Print(Option_t *o="") const; 110 116 … … 118 124 119 125 Bool_t UpdateConversionFactors(); 126 127 Bool_t GetPixelContent ( Double_t &val, Int_t idx, const MGeomCam &cam, Int_t type=0 ) const; 128 void DrawPixelContent( Int_t num) const; 120 129 121 130 ClassDef(MCalibrateData, 1) // Task to calibrate FADC counts into Cherenkov photons
Note:
See TracChangeset
for help on using the changeset viewer.