Changeset 4858
- Timestamp:
- 09/05/04 13:50:22 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r4855 r4858 46 46 - new array with cornings, not included in the I/O 47 47 - added copy function 48 49 * mcalib/Makefile 50 * mcalib/CalibLinkDef.h 51 * mcalib/MCalibrationQECamMagic.[h,cc] 52 - new class derived from MCalibrationQECam which intialized the 53 cornings for the Magic camera 48 54 49 55 -
trunk/MagicSoft/Mars/mcalib/CalibLinkDef.h
r4845 r4858 17 17 #pragma link C++ class MCalibrationRelTimePix+; 18 18 #pragma link C++ class MCalibrationPedCam+; 19 #pragma link C++ class MCalibrationQECamMagic+; 19 20 #pragma link C++ class MCalibrationQECam+; 20 21 #pragma link C++ class MCalibrationQEPix+; -
trunk/MagicSoft/Mars/mcalib/MCalibrationQECam.h
r4855 r4858 17 17 static const Float_t gkPlexiglassQEErr; //! Uncertainty QE Plexiglass (now set to: 0.01) 18 18 19 TArrayF fCorningBlues; //! Corning blues of the pixels (if available) 20 TArrayF fCorningReds; //! Corning reds of the pixels (if available) 21 22 TArrayC fFlags; 19 TArrayC fFlags; // Contains validity bits 23 20 24 21 enum { kBlindPixelMethodValid, kFFactorMethodValid, 25 kPINDiodeMethodValid, kCombinedMethodValid }; 22 kPINDiodeMethodValid, kCombinedMethodValid }; // Possible validity bits 23 24 protected: 25 26 TArrayF fCorningBlues; //! Corning blues of the pixels (if available) 27 TArrayF fCorningReds; //! Corning reds of the pixels (if available) 26 28 27 29 public: … … 30 32 ~MCalibrationQECam() {} 31 33 32 void Clear( Option_t *o="");33 void Copy (TObject& object) const;34 void Clear( Option_t *o="" ); 35 void Copy ( TObject& object ) const; 34 36 35 37 // Others … … 40 42 Float_t GetPlexiglassQERelVar () const; 41 43 44 const TArrayF &GetCorningBlues () const { return fCorningBlues; } 45 const TArrayF &GetCorningReds () const { return fCorningReds; } 46 42 47 Bool_t IsBlindPixelMethodValid () const; 43 48 Bool_t IsFFactorMethodValid () const; -
trunk/MagicSoft/Mars/mcalib/Makefile
r4845 r4858 40 40 MCalibrationRelTimePix.cc \ 41 41 MCalibrationRelTimeCalc.cc \ 42 MCalibrationQECamMagic.cc \ 42 43 MCalibrationQECam.cc \ 43 44 MCalibrationQEPix.cc \
Note:
See TracChangeset
for help on using the changeset viewer.