Changeset 7194 for trunk/MagicSoft/Mars/mcalib
- Timestamp:
- 07/15/05 13:25:57 (19 years ago)
- Location:
- trunk/MagicSoft/Mars/mcalib
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mcalib/MCalibrationCam.h
r6963 r7194 94 94 const MCalibrationPix &operator[] ( UInt_t i ) const; 95 95 96 static TString GetPulserColorStr(PulserColor_t col) { 97 TString str; 98 switch (col) 99 { 100 case kCT1: str += "CT1"; break; 101 case kGREEN: str += "Green"; break; 102 case kBLUE: str += "Blue"; break; 103 case kUV: str += "UV"; break; 104 case kNONE: str += "None"; break; 105 default: str += "Unknown"; break; 106 } 107 str += " ("; 108 str += (int)col; 109 str += ")"; 110 return str; 111 } 112 96 113 // Inits 97 114 void Init ( const MGeomCam &geom ); -
trunk/MagicSoft/Mars/mcalib/MCalibrationPattern.h
r6013 r7194 54 54 55 55 const MCalibrationCam::PulserColor_t GetPulserColor() const { return fPulserColor; } 56 TString GetPulserColorStr() const { return MCalibrationCam::GetPulserColorStr(fPulserColor); } 56 57 57 58 void SetPulserColor ( const MCalibrationCam::PulserColor_t col) { fPulserColor = col; } -
trunk/MagicSoft/Mars/mcalib/MCalibrationPatternDecode.cc
r6056 r7194 99 99 Int_t MCalibrationPatternDecode::Process() 100 100 { 101 // No setting necessary because MCalibrationPattern:: reset() has101 // No setting necessary because MCalibrationPattern::Reset() has 102 102 // been called just before 103 103 if (fRunHeader->GetFormatVersion()<5)
Note:
See TracChangeset
for help on using the changeset viewer.