Changeset 3112 for trunk/MagicSoft/Mars/mcalib
- Timestamp:
- 02/12/04 11:34:32 (21 years ago)
- Location:
- trunk/MagicSoft/Mars/mcalib
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/MagicSoft/Mars/mcalib/MHCalibrationBlindPixel.cc ¶
r3108 r3112 268 268 fPSDHiGain = fourier.PowerSpectrumDensity(fHiGains); 269 269 270 fHPSD = MH::ProjectArray(fPSDHiGain, fPSDNbins,271 272 270 fHPSD = ProjectArray(*fPSDHiGain, fPSDNbins, 271 "PSDProjectionBlindPixel", 272 "Power Spectrum Density Projection HiGain Blind Pixel"); 273 273 274 274 // -
TabularUnified trunk/MagicSoft/Mars/mcalib/MHCalibrationPixel.cc ¶
r3108 r3112 269 269 270 270 if (IsUseLoGain()) 271 fHPSD = MH::ProjectArray(fPSDLoGain, fPSDNbins,272 273 271 fHPSD = ProjectArray(*fPSDLoGain, fPSDNbins, 272 Form("%s%d","PSDProjection",fPixId), 273 Form("%s%d","Power Spectrum Density Projection LoGain ",fPixId)); 274 274 else 275 fHPSD = MH::ProjectArray(fPSDHiGain, fPSDNbins,276 277 275 fHPSD = ProjectArray(*fPSDHiGain, fPSDNbins, 276 Form("%s%d","PSDProjection",fPixId), 277 Form("%s%d","Power Spectrum Density Projection HiGain ",fPixId)); 278 278 279 279 // -
TabularUnified trunk/MagicSoft/Mars/mcalib/MHGausEvent.cc ¶
r3108 r3112 177 177 178 178 // This cuts only the non-used zero's, but MFFT will later cut the rest 179 MArray::CutEdges( fEvents);179 MArray::CutEdges(*fEvents); 180 180 181 181 MFFT fourier; 182 182 183 fPowerSpectrum = fourier.PowerSpectrumDensity(fEvents); 184 185 fHPowerProbability = MH::ProjectArray(fPowerSpectrum, fPowerProbabilityBins, 186 "PowerProbability", 187 "Probability of Power occurrance"); 183 fPowerSpectrum = fourier.PowerSpectrumDensity(fEvents); 184 fHPowerProbability = ProjectArray(*fPowerSpectrum, fPowerProbabilityBins, 185 "PowerProbability", 186 "Probability of Power occurrance"); 188 187 // 189 188 // First guesses for the fit (should be as close to reality as possible,
Note:
See TracChangeset
for help on using the changeset viewer.