Changeset 2908 for trunk/MagicSoft
- Timestamp:
- 01/24/04 14:31:38 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r2907 r2908 6 6 7 7 2004/01/24: Abelardo Moralejo 8 9 * macros/starmcstereo.C 10 - Added. Example of how to run the analysis chain for MC files 11 containing simulation of stereo systems of 2 telescopes. 8 12 9 13 * mcalib/MCalibrate.cc -
trunk/MagicSoft/Mars/mcalib/MCalibrate.cc
r2896 r2908 144 144 else 145 145 { 146 signal = sig.GetExtractedSignalHiGain(); 146 if (sig.GetExtractedSignalHiGain() > 9999.) 147 { 148 signal = 0.; 149 signalErr = 0.; 150 } 151 else 152 signal = sig.GetExtractedSignalHiGain(); 147 153 } 148 154 149 155 // Float_t calibrationConversionFactor = pix.GetMeanConversionFFactorMethod(); 150 156 const Float_t calibrationConversionFactor = pix.GetMeanConversionBlindPixelMethod(); … … 162 168 163 169 MCerPhotPix *cpix = fCerPhotEvt->AddPixel(pixid, nphot, nphotErr); 164 170 165 171 if (sig.GetNumLoGainSaturated() > 0) 166 172 cpix->SetPixelSaturated();
Note:
See TracChangeset
for help on using the changeset viewer.