Changeset 6798 for trunk


Ignore:
Timestamp:
03/09/05 12:24:15 (20 years ago)
Author:
gaug
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
1 added
1 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r6797 r6798  
    2121
    2222                                                 -*-*- END OF LINE -*-*-
     23 2005/03/09 Markus Gaug
     24 
     25   * msignal/MExtractTimeAndCharge.cc
     26     - catch a (very unprobable) case in which the low-gain range could
     27       be negative
     28
    2329 2005/03/09 Thomas Hengstebeck
    2430
     
    2935     - changed check of energy rule (last col of MHMatrix) so, that
    3036       any rule containing "fEnergy" is accepted.
    31 
    3237
    3338 2005/03/08 Markus Gaug
  • trunk/MagicSoft/Mars/mjobs/MJCalibrateSignal.cc

    r6777 r6798  
    831831      }
    832832
     833    interlacedcont.Add(&pulcam);
     834
     835    if (fIsHiLoCalibration)
     836      interlacedcont.Add(&hilcam);
     837
    833838    if (!WriteResult(interlacedcont))
    834839      return kFALSE;
    835840
    836     TObjArray addcont;
    837     addcont.Add(&pulcam);
    838 
    839     if (fIsHiLoCalibration)
    840       addcont.Add(&hilcam);
    841 
    842     if (IsHistsStorage())
    843       {
    844         addcont.Add(plist.FindObject("MHCalibrationHiLoCam"));
    845         addcont.Add(plist.FindObject("MHCalibrationPulseTimeCam"));
    846       }
     841    //    if (IsHistsStorage())
     842    //      {
     843    //        addcont.Add(plist.FindObject("MHCalibrationHiLoCam"));
     844    //        addcont.Add(plist.FindObject("MHCalibrationPulseTimeCam"));
     845    //      }
    847846   
    848     if (!WriteResult(addcont))
    849       return kFALSE;
    850 
    851 
    852847    // return if job went ok
    853848    *fLog << all << GetDescriptor() << ": Done." << endl;
  • trunk/MagicSoft/Mars/msignal/MExtractTimeAndCharge.cc

    r6532 r6798  
    131131
    132132  *fLog << flush << inf;
    133   Print();
    134  
    135133  return kTRUE;
    136134}
     
    219217          fLoGainFirstSave = fLoGainFirst;
    220218          const Byte_t logainstart = sathi
    221             ? sathi + (Int_t)fLoGainStartShift
     219            ? (sathi > (Int_t)fLoGainStartShift ? sathi + (Int_t)fLoGainStartShift : fLoGainFirst)
    222220            : (Byte_t)(timehi + fLoGainStartShift);
    223221          fLoGainFirst = logainstart > fLoGainFirstSave ? logainstart : fLoGainFirstSave;
Note: See TracChangeset for help on using the changeset viewer.