Changeset 3074
- Timestamp:
- 02/09/04 18:38:15 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mcalib/MHCalibrationPixel.cc
r3073 r3074 61 61 const Int_t MHCalibrationPixel::fNDFLimit = 5; 62 62 63 const Axis_t MHCalibrationPixel::fMaxFreq = 3 .5;63 const Axis_t MHCalibrationPixel::fMaxFreq = 30.5; 64 64 const Axis_t MHCalibrationPixel::fMinFreq = 0.; 65 65 const Int_t MHCalibrationPixel::fPSDNbins = 30; … … 248 248 return IsOscillating(); 249 249 250 // 251 // The number of entries HAS to be a potence of 2, 252 // so we can only cut out from the last potence of 2 to the rest. 253 // Another possibility would be to fill everything with 254 // zeros, but that gives a low frequency peak, which we would 255 // have to cut out later again. 256 // 257 // So, we have to live with the possibility that at the end 258 // of the calibration run, something has happened without noticing 259 // it... 260 // 261 262 // This cuts only the non-used zero's, but MFFT will cut the rest 263 CutArrayBorder(fHiGains); 264 CutArrayBorder(fLoGains); 265 266 250 267 MFFT fourier; 251 268 … … 638 655 fHAbsTimeLoGain->Draw(opt); 639 656 640 // CutArrayBorder(fHiGains);641 657 CreateChargeXaxis(fHiGains->GetSize()); 642 658 … … 650 666 gr1->Draw("AL"); 651 667 652 CutArrayBorder(fLoGains);653 668 CreateChargeXaxis(fLoGains->GetSize()); 654 669 -
trunk/MagicSoft/Mars/mtools/MFFT.cc
r3073 r3074 826 826 827 827 fDim = b; 828 gLog << warn << "Dimension of Data is not a multiple of 2, will take only first "829 << fDim << " entries! " << endl;828 // gLog << warn << "Dimension of Data is not a multiple of 2, will take only first " 829 // << fDim << " entries! " << endl; 830 830 return; 831 831 }
Note:
See TracChangeset
for help on using the changeset viewer.