Ignore:
Timestamp:
03/22/05 10:57:14 (20 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mjobs
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mjobs/MJCalibTest.cc

    r6858 r6872  
    327327        {
    328328          *fLog << err << "ERROR - Number of files found (" << n0 << ") doesn't match number of files in sequence (" << n1 << ")" << endl;
     329            if (fLog->GetDebugLevel()>4)
     330            {
     331                *fLog << dbg << "Files which are searched:" << endl;
     332                iter.Print("all");
     333            }
    329334          return kFALSE;
    330335        }
  • trunk/MagicSoft/Mars/mjobs/MJCalibrateSignal.cc

    r6859 r6872  
    327327          {
    328328            *fLog << err << "ERROR - Number of files found (" << n0 << ") doesn't match number of files in sequence (" << n1 << ")" << endl;
     329            if (fLog->GetDebugLevel()>4)
     330            {
     331                *fLog << dbg << "Files which are searched:" << endl;
     332                iter.Print("all");
     333            }
    329334            return kFALSE;
    330335          }
  • trunk/MagicSoft/Mars/mjobs/MJCalibration.cc

    r6870 r6872  
    14771477{
    14781478
    1479   if (!fIsHiLoCalibration)
     1479  if (!fIsHiLoCalibration || IsUseMC())
    14801480    return kTRUE;
    14811481
     
    17631763                  << n0 << ") doesn't match number of files in sequence ("
    17641764                  << n1 << ")" << endl;
     1765            if (fLog->GetDebugLevel()>4)
     1766            {
     1767                *fLog << dbg << "Files which are searched:" << endl;
     1768                iter.Print("all");
     1769            }
    17651770            return kFALSE;
    17661771        }
  • trunk/MagicSoft/Mars/mjobs/MJPedestal.cc

    r6870 r6872  
    9595const TString  MJPedestal::fgReferenceFile   = "mjobs/pedestalref.rc";
    9696const TString  MJPedestal::fgBadPixelsFile   = "mjobs/badpixels_0_559.rc";
    97 const Float_t  MJPedestal::fgExtractWinLeft  = 3.5;
     97const Float_t  MJPedestal::fgExtractWinLeft  = 2.5;
    9898const Float_t  MJPedestal::fgExtractWinRight = 4.5;
    9999
     
    976976        {
    977977            *fLog << err << "ERROR - Number of " << type << " files found (" << n0 << ") in " << (fPathData.IsNull()?"<default>":fPathData.Data())  << " doesn't match number of files in sequence (" << n1 << ")" << endl;
     978            if (fLog->GetDebugLevel()>4)
     979            {
     980                *fLog << dbg << "Files which are searched:" << endl;
     981                iter.Print("all");
     982            }
    978983            return kFALSE;
    979984        }
Note: See TracChangeset for help on using the changeset viewer.