Changeset 3955
- Timestamp:
- 05/04/04 11:24:53 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r3952 r3955 18 18 19 19 -*-*- END OF LINE -*-*- 20 21 2004/05/04: Markus Gaug 22 23 * mcalib/MHCalibrationChargeBlindPix.cc 24 - intialized the 2 vectors differently, now they don't give 25 warnings any more. 26 20 27 21 28 2004/05/03: Thomas Bretz -
trunk/MagicSoft/Mars/mcalib/MHCalibrationChargeBlindPix.cc
r3953 r3955 128 128 MHCalibrationChargeBlindPix::MHCalibrationChargeBlindPix(const char *name, const char *title) 129 129 : fBlindPix(NULL), fSignal(NULL), fRawEvt(NULL), 130 fASinglePheFADCSlices(1), fAPedestalFADCSlices(1), 130 131 fSinglePheFit(NULL), 131 132 fFitLegend(NULL), … … 149 150 fHGausHist.SetXTitle("Sum FADC Slices"); 150 151 fHGausHist.SetYTitle("Nr. of events"); 151 152 fASinglePheFADCSlices(0);153 fAPedestalFADCSlices(0);154 152 155 153 Clear(); … … 361 359 362 360 const Int_t samples = (Int_t)fRawEvt->GetNumHiGainSamples()+(Int_t)fRawEvt->GetNumLoGainSamples(); 361 362 if (!fASinglePheFADCSlices.IsValid()) 363 { 364 fASinglePheFADCSlices.ResizeTo(samples); 365 fAPedestalFADCSlices.ResizeTo(samples); 366 } 363 367 364 368 if (fASinglePheFADCSlices.GetNrows() != samples) … … 984 988 pad->cd(3); 985 989 986 if (fASinglePheFADCSlices.GetNrows() != 0)990 if (fASinglePheFADCSlices.GetNrows()!=1) 987 991 { 988 992 if (fHSinglePheFADCSlices) … … 997 1001 998 1002 pad->cd(4); 999 if (fAPedestalFADCSlices.GetNrows() != 0)1003 if (fAPedestalFADCSlices.GetNrows()!=1) 1000 1004 { 1001 1005
Note:
See TracChangeset
for help on using the changeset viewer.