Changeset 2921


Ignore:
Timestamp:
01/26/04 19:58:29 (21 years ago)
Author:
gaug
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r2920 r2921  
    3838       anymore
    3939     - TSpline5 now on stack.
     40     - function to set the stepsize
    4041
    4142   * mcalib/MHCalibrationBlindPixel.[h,cc]:
  • trunk/MagicSoft/Mars/manalysis/MArrivalTimeCalc.cc

    r2916 r2921  
    6262//
    6363MArrivalTimeCalc::MArrivalTimeCalc(const char *name, const char *title)
     64    : fStepSize(0.1)
    6465{
    6566
     
    202203          maxAb  = abscissa;
    203204        }
    204       abscissa += 0.1;
     205      abscissa += fStepSize;
    205206    }
    206207
  • trunk/MagicSoft/Mars/manalysis/MArrivalTimeCalc.h

    r2911 r2921  
    2424
    2525    Float_t Calc(const Byte_t *fadcSamples, const Short_t nslices);
     26
     27    Float_t fStepSize;           // The step size to evaluate the time
    2628   
    2729public:
     
    2931    ~MArrivalTimeCalc(){}
    3032
     33    void SetStepSize(Float_t s)      { fStepSize = s;   }
     34   
    3135    ClassDef(MArrivalTimeCalc, 0)   // Task to calculate Arrival Times from raw data
    3236};
Note: See TracChangeset for help on using the changeset viewer.