- Timestamp:
- 05/07/04 15:25:32 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r4004 r4009 20 20 21 21 2004/05/07: Markus Gaug 22 23 * mjobs/MJCalibration.cc 24 - take runs 20660 and 20661 into the list of known runs with colour 25 green. 22 26 23 27 * mpedestal/MPedCalcPedRun.[h,cc] -
trunk/MagicSoft/Mars/mjobs/MJCalibration.cc
r3975 r4009 700 700 filenames.ToLower(); 701 701 702 // 703 // Here starts the list of runs where the shifters did not put 704 // a colour, but which have been found out by other means 705 // 706 if (filenames.Contains("_20660_")) 707 if (fColor == MCalibrationCam::kNONE) 708 { 709 *fLog << "Found colour: kGREEN in " << filenames << endl; 710 fColor = MCalibrationCam::kGREEN; 711 } 712 else if (fColor != MCalibrationCam::kGREEN) 713 { 714 *fLog << err << "Different colour found in " << filenames << "... abort" << endl; 715 return kFALSE; 716 } 717 718 if (filenames.Contains("_20661_")) 719 if (fColor == MCalibrationCam::kNONE) 720 { 721 *fLog << "Found colour: kGREEN in " << filenames << endl; 722 fColor = MCalibrationCam::kGREEN; 723 } 724 else if (fColor != MCalibrationCam::kGREEN) 725 { 726 *fLog << err << "Different colour found in " << filenames << "... abort" << endl; 727 return kFALSE; 728 } 729 730 // 731 // Here start the runs where the shifter put 732 // the colour 733 // 702 734 if (filenames.Contains("green")) 703 735 if (fColor == MCalibrationCam::kNONE)
Note:
See TracChangeset
for help on using the changeset viewer.