Changeset 5401


Ignore:
Timestamp:
11/15/04 10:14:33 (20 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r5400 r5401  
    2121                                                 -*-*- END OF LINE -*-*-
    2222
     23 2004/11/15: Thomas Bretz
     24
     25   * mcalib/MCalibrationChargeCalc.cc:
     26     - reset logging stream to CORRECT one after redirection
     27     - do not redirect the logging stream if no output file is
     28       selected
     29
     30   * mhist/MHHadronness.cc:
     31     - fixed a type in the class description
     32
     33   * mjobs/MJCalibration.cc:
     34     - do not write miracle appearance files by MCalivrationChargeCalc
     35
     36
     37
    2338 2004/11/13: Hendrik Bartko
    24    * msignal/cosmics_weights.dat implemented low gain weights from pulpo
    25      data
    26    * msignal/cosmics_weights4.dat implemented low gain weights from
    27      pulpo data
     39
     40   * msignal/cosmics_weights.dat:
     41     - implemented low gain weights from pulpo data
     42
     43   * msignal/cosmics_weights4.dat:
     44     - implemented low gain weights from pulpo data
     45
    2846
    2947 2004/11/12: Thomas Bretz
  • trunk/MagicSoft/Mars/mcalib/MCalibrationChargeCalc.cc

    r5302 r5401  
    825825  // Re-direct the output to an ascii-file from now on:
    826826  //
     827  MLog *oldlog = fLog;
    827828  MLog asciilog;
    828   asciilog.SetOutputFile(GetOutputFile(),kTRUE);
    829   SetLogStream(&asciilog);
     829  if (!fOutputFile.IsNull())
     830  {
     831      asciilog.SetOutputFile(GetOutputFile(),kTRUE);
     832      SetLogStream(&asciilog);
     833  }
     834
    830835  //
    831836  // Finalize calibration statistics
     
    874879                    "Pixels with unsuccesful Gauss fit to the Lo Gain: ");
    875880
    876   SetLogStream(&gLog);
     881  if (!fOutputFile.IsNull())
     882      SetLogStream(oldlog);
    877883
    878884  return kTRUE;
  • trunk/MagicSoft/Mars/mhist/MHHadronness.cc

    r5375 r5401  
    4848//    Naive quality factor: Ag/sqrt(Ah)
    4949//  * Bottom Right Corner:
    50 //    - black: Acceprtance Gammas vs. Acceptance Hadrons
     50//    - black: Acceptance Gammas vs. Acceptance Hadrons
    5151//    - blue cross: minimum of distance to (0, 1)
    5252//
  • trunk/MagicSoft/Mars/mjobs/MJCalibration.cc

    r5391 r5401  
    16231623    MCalibrationChargeCalc   calcalc;
    16241624    MCalibrationRelTimeCalc  timecalc;
     1625    calcalc.SetOutputFile("");
    16251626
    16261627    if (!fSequence.IsValid())
Note: See TracChangeset for help on using the changeset viewer.