Changeset 2905
- Timestamp:
- 01/24/04 01:55:16 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r2904 r2905 13 13 * mcalib/MCalibrationBlindPix.h 14 14 * mcalib/MHCalibrationBlindPixel.[h,cc] 15 * mcalib/MCalibrationPINDiode.h 16 * mcalib/MHCalibrationPINDiode.[h,cc] 15 17 * mcalib/MCalibrationPix.[h,cc] 16 18 * mcalib/MHCalibrationPixel.[h,cc] … … 27 29 - clean up setters 28 30 - pass to bit-fields for all flags 31 32 * mcalib/MCalibrationCam.cc 33 - exclude Blind Pixel from Camera display 34 - do not fill &val when return kFALSE 29 35 30 36 -
trunk/MagicSoft/Mars/mcalib/MCalibrationCam.cc
r2884 r2905 341 341 return kFALSE; 342 342 343 if ( !(*this)[idx].IsFitValid())344 {345 val = -1.;346 return kFALSE;347 }348 343 if ( (!(*this)[idx].IsFitValid()) || (*this)[idx].IsExcluded()) 344 return kFALSE; 345 346 if (idx == gkCalibrationBlindPixelId) 347 return kFALSE; 348 349 349 switch (type) 350 350 { … … 474 474 475 475 *fLog << inf << endl; 476 *fLog << inf << mean << "Mean number of Photons for an Inner Pixel (inside Plexiglass): "476 *fLog << inf << "Mean number of Photons for an Inner Pixel (inside Plexiglass): " 477 477 << fMeanPhotInsidePlexiglass << endl; 478 *fLog << inf << endl;479 478 480 479 TIter Next(fPixels); -
trunk/MagicSoft/Mars/mcalib/MHCalibrationPINDiode.cc
r2885 r2905 78 78 Int_t nbins = 32; 79 79 80 fHPTime = new TH1 I("HPTime","Distribution of Mean Arrival Times",nbins,tfirst,tlast);80 fHPTime = new TH1F("HPTime","Distribution of Mean Arrival Times",nbins,tfirst,tlast); 81 81 fHPTime->SetXTitle("Mean Arrival Times [FADC slice nr]"); 82 82 fHPTime->SetYTitle("Nr. of events");
Note:
See TracChangeset
for help on using the changeset viewer.