Changeset 3074 for trunk


Ignore:
Timestamp:
02/09/04 18:38:15 (21 years ago)
Author:
gaug
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mcalib/MHCalibrationPixel.cc

    r3073 r3074  
    6161const Int_t   MHCalibrationPixel::fNDFLimit          = 5;
    6262
    63 const Axis_t  MHCalibrationPixel::fMaxFreq           = 3.5;
     63const Axis_t  MHCalibrationPixel::fMaxFreq           = 30.5;
    6464const Axis_t  MHCalibrationPixel::fMinFreq           = 0.;
    6565const Int_t   MHCalibrationPixel::fPSDNbins          = 30;
     
    248248    return IsOscillating();
    249249
     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
    250267  MFFT fourier;
    251268
     
    638655  fHAbsTimeLoGain->Draw(opt);
    639656
    640   //  CutArrayBorder(fHiGains);
    641657  CreateChargeXaxis(fHiGains->GetSize());
    642658
     
    650666  gr1->Draw("AL");
    651667 
    652   CutArrayBorder(fLoGains); 
    653668  CreateChargeXaxis(fLoGains->GetSize());
    654669
  • trunk/MagicSoft/Mars/mtools/MFFT.cc

    r3073 r3074  
    826826
    827827      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;
    830830      return;
    831831    }
Note: See TracChangeset for help on using the changeset viewer.