Changeset 5469 for trunk/MagicSoft/Mars
- Timestamp:
- 11/26/04 10:57:54 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r5468 r5469 25 25 * mbase/MRunIter.[h,cc] 26 26 - fixed the missing initialization of kIsStandardFile to kFALSE. 27 27 28 * msignal/MExtractTimeAndChargeSpline.h 29 - added Getter Functions for the variables fRiseTime and fFallTime 30 31 * msignal/MExtractTimeAndChargeSlidingWindow.h 32 * msignal/MExtractFixedWindowPeakSearch.h 33 - added Getter Functions for the variables fWindowSizeHiGain and 34 fWindowSizeLoGain 35 28 36 29 37 2004/11/23: Markus Gaug -
trunk/MagicSoft/Mars/mbase/MRunIter.h
r5461 r5469 42 42 43 43 public: 44 MRunIter(const char *path=0) : fPath(path), fIsRawFile(0) { }44 MRunIter(const char *path=0) : fPath(path), fIsRawFile(0), fIsStandardFile(kFALSE) { } 45 45 46 46 void SetRawFile(Bool_t filetype) { fIsRawFile = filetype; } -
trunk/MagicSoft/Mars/msignal/MExtractFixedWindowPeakSearch.h
r5250 r5469 39 39 MExtractFixedWindowPeakSearch(const char *name=NULL, const char *title=NULL); 40 40 41 Byte_t GetHiGainWindowSize() const { return fHiGainWindowSize; } 42 Byte_t GetLoGainWindowSize() const { return fLoGainWindowSize; } 43 41 44 void SetRange(Byte_t hifirst=0, Byte_t hilast=0, Byte_t lofirst=0, Byte_t lolast=0); 42 45 void SetWindows(Byte_t windowh=fgHiGainWindowSize, Byte_t windowl=fgLoGainWindowSize, -
trunk/MagicSoft/Mars/msignal/MExtractTimeAndChargeSlidingWindow.h
r5240 r5469 43 43 ~MExtractTimeAndChargeSlidingWindow(); 44 44 45 Byte_t GetWindowSizeHiGain() const { return fWindowSizeHiGain; } 46 Byte_t GetWindowSizeLoGain() const { return fWindowSizeLoGain; } 47 45 48 void SetRange ( Byte_t hifirst=0, Byte_t hilast=0, Byte_t lofirst=0, Byte_t lolast=0 ); 46 49 void SetWindowSize(Byte_t windowh=fgHiGainWindowSize, -
trunk/MagicSoft/Mars/msignal/MExtractTimeAndChargeSpline.h
r5240 r5469 62 62 ~MExtractTimeAndChargeSpline(); 63 63 64 Float_t GetRiseTime() const { return fRiseTime; } 65 Float_t GetFallTime() const { return fFallTime; } 66 64 67 void SetRange ( Byte_t hifirst=0, Byte_t hilast=0, Byte_t lofirst=0, Byte_t lolast=0 ); 65 68 void SetResolution ( Float_t f=fgResolution ) { fResolution = f; }
Note:
See TracChangeset
for help on using the changeset viewer.