Changeset 3961 for trunk/MagicSoft/Mars
- Timestamp:
- 05/04/04 17:13:27 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r3959 r3961 62 62 * mastro/MAstroCatalog.h 63 63 - make AlignCoordinates() protected, in order to compile 64 65 * mcalib/MHGausEvents.cc 66 - took out fEvents(0) and fHGausHist() from constructor 64 67 65 68 2004/05/03: Thomas Bretz -
trunk/MagicSoft/Mars/mbadpixels/MBadPixelsPix.cc
r3937 r3961 87 87 // 88 88 MBadPixelsPix::MBadPixelsPix(const char* name, const char* title) 89 : fInfo(3)90 89 { 91 90 fName = name ? name : "MBadPixelsPix"; 92 91 fTitle = title ? title : "Container storing bad pixel information for a single pixel"; 93 92 94 fInfo[0] = 0; 95 fInfo[1] = 0; 96 fInfo[2] = 0; 93 fInfo.Set(3); 97 94 98 // memset(&fInfo,0,3*sizeof(Int_t));99 95 } 100 96 -
trunk/MagicSoft/Mars/mcalib/MHCalibrationChargeBlindPix.cc
r3955 r3961 128 128 MHCalibrationChargeBlindPix::MHCalibrationChargeBlindPix(const char *name, const char *title) 129 129 : fBlindPix(NULL), fSignal(NULL), fRawEvt(NULL), 130 fASinglePheFADCSlices(1), fAPedestalFADCSlices(1),131 130 fSinglePheFit(NULL), 132 131 fFitLegend(NULL), … … 141 140 SetLast ( fgChargeLast ); 142 141 142 fASinglePheFADCSlices.ResizeTo(1); 143 fAPedestalFADCSlices.ResizeTo(1); 144 143 145 SetSinglePheCut(); 144 146 SetNumSinglePheLimit(); … … 385 387 // 386 388 const Float_t signal = (Float_t)fSignal->GetExtractedSignal(); 387 FillHistAndArray(signal); 389 if (signal > -1) 390 FillHistAndArray(signal); 388 391 389 392 // -
trunk/MagicSoft/Mars/mcalib/MHGausEvents.cc
r3766 r3961 135 135 fPowerSpectrum(NULL), 136 136 fGraphEvents(NULL), fGraphPowerSpectrum(NULL), 137 f Events(0), fFGausFit(NULL), fFExpFit(NULL),138 fFirst(0.), f HGausHist(), fLast(100.),137 fFGausFit(NULL), fFExpFit(NULL), 138 fFirst(0.), fLast(100.), 139 139 fNbins(100), fPixId(-1) 140 140 {
Note:
See TracChangeset
for help on using the changeset viewer.