Changeset 6689 for trunk/MagicSoft
- Timestamp:
- 02/28/05 19:18:13 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r6683 r6689 29 29 - fixed the situation where the maximum bin is already found in the 30 30 low-gain samples. 31 32 * mjobs/MJCalibration.cc 33 - write the MPedestalCams also to disk (needed for data-check). 34 31 35 32 36 2005/02/25 Abelardo Moralejo -
trunk/MagicSoft/Mars/mhcalib/MHCalibrationCam.cc
r6528 r6689 704 704 MBadPixelsPix &bad = fIntensBad ? (*fIntensBad)[i] : (*fBadPixels)[i]; 705 705 InitHists(pix,bad,i); 706 707 if (fCam) 708 (*fCam)[i].SetPixId(i); 706 709 } 707 710 } -
trunk/MagicSoft/Mars/mjobs/MJCalibration.cc
r6563 r6689 2104 2104 cont.Add(IsIntensity() ? (TObject*)&fIntensRelTimeCam : (TObject*)&fRelTimeCam); 2105 2105 2106 if (fExtractorCam.GetSize() != 0) 2107 cont.Add(&fExtractorCam); 2108 2109 TObject *pedcam = plist.FindObject("MPedestalCam"); 2110 if (!pedcam) 2111 *fLog << warn << " - WARNING - MPedestalCam (fundamental)... not found for writing!" << endl; 2112 else 2113 cont.Add(pedcam); 2114 2106 2115 TObject *geom = plist.FindObject("MGeomCam"); 2107 2116 if (!geom)
Note:
See TracChangeset
for help on using the changeset viewer.