Changeset 2843


Ignore:
Timestamp:
01/19/04 11:49:55 (21 years ago)
Author:
gaug
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r2842 r2843  
    77 2004/01/19: Markus Gaug
    88
     9   * macros/dohtml.C
     10     - include calibration.C
     11       
    912   * manalysis/MExtractSignal.cc
    1013     - warning of logain saturation now only once per event (out of loop)
  • trunk/MagicSoft/Mars/macros/dohtml.C

    r2780 r2843  
    9494    html.Convert("triglvl2.C",      "MARS - Example to use MMcTriggerLvl2 class, using filters and creating histograms");
    9595    html.Convert("status.C",        "MARS - Example to use the online display");
     96    html.Convert("calibration.C",   "MARS - Example to use the calibration");
    9697}
  • trunk/MagicSoft/Mars/manalysis/MExtractSignal.cc

    r2806 r2843  
    209209
    210210            if (*ptr >= fSaturationLimit)
    211               {
    212                 *fLog << err << dbginf
    213                       << "Warning: Saturation of Lo Gain reached in pixel: "
    214                       << pixid << " " << "   sum = " << sumLo << endl;
    215                 satLo++;
    216               }
     211              satLo++;
    217212          }
     213
     214        if (satLo)
     215          *fLog << warn << "WARNING: Saturation of Lo Gain reached in "
     216                << satLo << " time slices in pixel " << pixid << endl;
    218217
    219218        pix.SetExtractedSignal((Float_t)sumHi - pedes*(Float_t)fNumHiGainSamples,
Note: See TracChangeset for help on using the changeset viewer.