Changeset 2843
- Timestamp:
- 01/19/04 11:49:55 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r2842 r2843 7 7 2004/01/19: Markus Gaug 8 8 9 * macros/dohtml.C 10 - include calibration.C 11 9 12 * manalysis/MExtractSignal.cc 10 13 - warning of logain saturation now only once per event (out of loop) -
trunk/MagicSoft/Mars/macros/dohtml.C
r2780 r2843 94 94 html.Convert("triglvl2.C", "MARS - Example to use MMcTriggerLvl2 class, using filters and creating histograms"); 95 95 html.Convert("status.C", "MARS - Example to use the online display"); 96 html.Convert("calibration.C", "MARS - Example to use the calibration"); 96 97 } -
trunk/MagicSoft/Mars/manalysis/MExtractSignal.cc
r2806 r2843 209 209 210 210 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++; 217 212 } 213 214 if (satLo) 215 *fLog << warn << "WARNING: Saturation of Lo Gain reached in " 216 << satLo << " time slices in pixel " << pixid << endl; 218 217 219 218 pix.SetExtractedSignal((Float_t)sumHi - pedes*(Float_t)fNumHiGainSamples,
Note:
See TracChangeset
for help on using the changeset viewer.