Ignore:
Timestamp:
02/12/04 11:34:32 (21 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mcalib
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/MagicSoft/Mars/mcalib/MHCalibrationBlindPixel.cc

    r3108 r3112  
    268268  fPSDHiGain = fourier.PowerSpectrumDensity(fHiGains);
    269269
    270   fHPSD = MH::ProjectArray(fPSDHiGain, fPSDNbins,
    271                            "PSDProjectionBlindPixel",
    272                            "Power Spectrum Density Projection HiGain Blind Pixel");
     270  fHPSD = ProjectArray(*fPSDHiGain, fPSDNbins,
     271                       "PSDProjectionBlindPixel",
     272                       "Power Spectrum Density Projection HiGain Blind Pixel");
    273273
    274274  //
  • TabularUnified trunk/MagicSoft/Mars/mcalib/MHCalibrationPixel.cc

    r3108 r3112  
    269269
    270270  if (IsUseLoGain())
    271     fHPSD = MH::ProjectArray(fPSDLoGain, fPSDNbins,
    272                              Form("%s%d","PSDProjection",fPixId),
    273                              Form("%s%d","Power Spectrum Density Projection LoGain ",fPixId));
     271      fHPSD = ProjectArray(*fPSDLoGain, fPSDNbins,
     272                           Form("%s%d","PSDProjection",fPixId),
     273                           Form("%s%d","Power Spectrum Density Projection LoGain ",fPixId));
    274274  else
    275     fHPSD = MH::ProjectArray(fPSDHiGain, fPSDNbins,
    276                              Form("%s%d","PSDProjection",fPixId),
    277                              Form("%s%d","Power Spectrum Density Projection HiGain ",fPixId));
     275      fHPSD = ProjectArray(*fPSDHiGain, fPSDNbins,
     276                           Form("%s%d","PSDProjection",fPixId),
     277                           Form("%s%d","Power Spectrum Density Projection HiGain ",fPixId));
    278278
    279279  //
  • TabularUnified trunk/MagicSoft/Mars/mcalib/MHGausEvent.cc

    r3108 r3112  
    177177 
    178178  // This cuts only the non-used zero's, but MFFT will later cut the rest
    179   MArray::CutEdges(fEvents);
     179  MArray::CutEdges(*fEvents);
    180180
    181181  MFFT fourier;
    182182
    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");
    188187  //
    189188  // First guesses for the fit (should be as close to reality as possible,
Note: See TracChangeset for help on using the changeset viewer.