Changeset 4009 for trunk/MagicSoft


Ignore:
Timestamp:
05/07/04 15:25:32 (20 years ago)
Author:
gaug
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r4004 r4009  
    2020
    2121 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.
    2226
    2327   * mpedestal/MPedCalcPedRun.[h,cc]
  • trunk/MagicSoft/Mars/mjobs/MJCalibration.cc

    r3975 r4009  
    700700      filenames.ToLower();
    701701
     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      //
    702734      if (filenames.Contains("green"))
    703735        if (fColor == MCalibrationCam::kNONE)
Note: See TracChangeset for help on using the changeset viewer.