Changeset 2921
- Timestamp:
- 01/26/04 19:58:29 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r2920 r2921 38 38 anymore 39 39 - TSpline5 now on stack. 40 - function to set the stepsize 40 41 41 42 * mcalib/MHCalibrationBlindPixel.[h,cc]: -
trunk/MagicSoft/Mars/manalysis/MArrivalTimeCalc.cc
r2916 r2921 62 62 // 63 63 MArrivalTimeCalc::MArrivalTimeCalc(const char *name, const char *title) 64 : fStepSize(0.1) 64 65 { 65 66 … … 202 203 maxAb = abscissa; 203 204 } 204 abscissa += 0.1;205 abscissa += fStepSize; 205 206 } 206 207 -
trunk/MagicSoft/Mars/manalysis/MArrivalTimeCalc.h
r2911 r2921 24 24 25 25 Float_t Calc(const Byte_t *fadcSamples, const Short_t nslices); 26 27 Float_t fStepSize; // The step size to evaluate the time 26 28 27 29 public: … … 29 31 ~MArrivalTimeCalc(){} 30 32 33 void SetStepSize(Float_t s) { fStepSize = s; } 34 31 35 ClassDef(MArrivalTimeCalc, 0) // Task to calculate Arrival Times from raw data 32 36 };
Note:
See TracChangeset
for help on using the changeset viewer.