Changeset 4866
- Timestamp:
- 09/05/04 19:52:50 (20 years ago)
- Location:
- trunk/MagicSoft/Mars/mcalib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mcalib/MCalibColorSet.cc
r4864 r4866 123 123 enum ColorCode_t 124 124 { 125 k5LedGreen = BIT( 1),126 k5LedUV = BIT(1 2),127 k5LedBlue = BIT(1 4),128 kCT1Pulser = BIT(1 7)125 k5LedGreen = BIT(0 ), 126 k5LedUV = BIT(11), 127 k5LedBlue = BIT(13), 128 kCT1Pulser = BIT(16) 129 129 }; 130 130 -
trunk/MagicSoft/Mars/mcalib/MCalibrationQECam.h
r4858 r4866 8 8 #ifndef ROOT_TArrayC 9 9 #include "TArrayC.h" 10 #endif 11 12 #ifndef ROOT_TArrayD 13 #include "TArrayD.h" 10 14 #endif 11 15 … … 24 28 protected: 25 29 26 TArray FfCorningBlues; //! Corning blues of the pixels (if available)27 TArray FfCorningReds; //! Corning reds of the pixels (if available)30 TArrayD fCorningBlues; //! Corning blues of the pixels (if available) 31 TArrayD fCorningReds; //! Corning reds of the pixels (if available) 28 32 29 33 public: … … 42 46 Float_t GetPlexiglassQERelVar () const; 43 47 44 const TArray F&GetCorningBlues () const { return fCorningBlues; }45 const TArray F&GetCorningReds () const { return fCorningReds; }48 const TArrayD &GetCorningBlues () const { return fCorningBlues; } 49 const TArrayD &GetCorningReds () const { return fCorningReds; } 46 50 47 51 Bool_t IsBlindPixelMethodValid () const;
Note:
See TracChangeset
for help on using the changeset viewer.