Changeset 4688 for trunk/MagicSoft/Mars
- Timestamp:
- 08/19/04 15:04:18 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r4687 r4688 19 19 20 20 -*-*- END OF LINE -*-*- 21 22 2004/08/19: Marcos Lopez 23 24 * mjobs/MJCalibration.cc: 25 - In the function FindColor(), when looking for the calibration color in 26 the calibration file name, ignore the case, to deal with colors 27 written in capital letters. 28 21 29 22 30 2004/08/19: Thomas Bretz -
trunk/MagicSoft/Mars/mjobs/MJCalibration.cc
r4682 r4688 1172 1172 1173 1173 default: 1174 if (filenames.Contains("green" ))1174 if (filenames.Contains("green",TString::kIgnoreCase)) 1175 1175 newcolor = MCalibrationCam::kGREEN; 1176 if (filenames.Contains("blue" ))1176 if (filenames.Contains("blue",TString::kIgnoreCase)) 1177 1177 newcolor = MCalibrationCam::kBLUE; 1178 if (filenames.Contains("uv" ))1178 if (filenames.Contains("uv",TString::kIgnoreCase)) 1179 1179 newcolor = MCalibrationCam::kUV; 1180 if (filenames.Contains("ct1" ))1180 if (filenames.Contains("ct1",TString::kIgnoreCase)) 1181 1181 newcolor = MCalibrationCam::kCT1; 1182 1182 }
Note:
See TracChangeset
for help on using the changeset viewer.