Changeset 3961


Ignore:
Timestamp:
05/04/04 17:13:27 (20 years ago)
Author:
gaug
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r3959 r3961  
    6262   * mastro/MAstroCatalog.h
    6363     - make AlignCoordinates() protected, in order to compile
     64
     65   * mcalib/MHGausEvents.cc
     66     - took out fEvents(0) and fHGausHist() from constructor
    6467 
    6568 2004/05/03: Thomas Bretz
  • trunk/MagicSoft/Mars/mbadpixels/MBadPixelsPix.cc

    r3937 r3961  
    8787//
    8888MBadPixelsPix::MBadPixelsPix(const char* name, const char* title)
    89     : fInfo(3)
    9089{
    9190    fName  = name  ? name  : "MBadPixelsPix";
    9291    fTitle = title ? title : "Container storing bad pixel information for a single pixel";
    9392
    94     fInfo[0] = 0;
    95     fInfo[1] = 0;
    96     fInfo[2] = 0;
     93    fInfo.Set(3);
    9794
    98     //    memset(&fInfo,0,3*sizeof(Int_t));
    9995}
    10096
  • trunk/MagicSoft/Mars/mcalib/MHCalibrationChargeBlindPix.cc

    r3955 r3961  
    128128MHCalibrationChargeBlindPix::MHCalibrationChargeBlindPix(const char *name, const char *title)
    129129    :  fBlindPix(NULL), fSignal(NULL), fRawEvt(NULL),
    130        fASinglePheFADCSlices(1), fAPedestalFADCSlices(1),
    131130       fSinglePheFit(NULL),
    132131       fFitLegend(NULL),
     
    141140    SetLast ( fgChargeLast  );
    142141   
     142    fASinglePheFADCSlices.ResizeTo(1);
     143    fAPedestalFADCSlices.ResizeTo(1);
     144
    143145    SetSinglePheCut();
    144146    SetNumSinglePheLimit();
     
    385387  //
    386388  const Float_t signal = (Float_t)fSignal->GetExtractedSignal();
    387   FillHistAndArray(signal);
     389  if (signal > -1)
     390    FillHistAndArray(signal);
    388391
    389392  //
  • trunk/MagicSoft/Mars/mcalib/MHGausEvents.cc

    r3766 r3961  
    135135      fPowerSpectrum(NULL),
    136136      fGraphEvents(NULL), fGraphPowerSpectrum(NULL),
    137       fEvents(0), fFGausFit(NULL), fFExpFit(NULL),
    138       fFirst(0.), fHGausHist(), fLast(100.),
     137      fFGausFit(NULL), fFExpFit(NULL),
     138      fFirst(0.), fLast(100.),
    139139      fNbins(100), fPixId(-1)
    140140{
Note: See TracChangeset for help on using the changeset viewer.