#ifndef MARS_MExtractFixedWindowPeakSearch #define MARS_MExtractFixedWindowPeakSearch #ifndef MARS_MExtractor #include "MExtractor.h" #endif class MExtractFixedWindowPeakSearch : public MExtractor { private: static const Byte_t fgHiGainFirst; static const Byte_t fgHiGainLast; static const Byte_t fgLoGainFirst; static const Byte_t fgLoGainLast; static const Byte_t fgHiGainWindowSize; // Default for fWindowSizeHiGain (now set to: 6) static const Byte_t fgLoGainWindowSize; // Default for fWindowSizeLoGain (now set to: 6) static const Byte_t fgPeakSearchWindowSize; // Default for fPeakSearchWindowSize (now set to: 4) static const Byte_t fgOffsetFromWindow; // Default for fOffsetFromWindow (now set to: 1) static const Byte_t fgLowGainPeakShift; // Default for fLowGainPeakShift (now set to: 0) Byte_t fWindowSizeHiGain; // Number of Hi Gain slices in window Byte_t fWindowSizeLoGain; // Number of Lo Gain slices in window Byte_t fPeakSearchWindowSize; // Size of FADC window in the search for the highest peak of all pixels. Byte_t fOffsetFromWindow; // Number of slices to start extraction before search window Byte_t fLowGainPeakShift; // Shift of the low gain pulse with respect to the high gain pulse, in slices: it is 0 if the low gain is delayed with respect to HG by 15 slices. void FindSignalHiGain(Byte_t *ptr, Byte_t *logain, Float_t &sum, Byte_t &sat) const; void FindSignalLoGain(Byte_t *ptr, Float_t &sum, Byte_t &sat) const; void FindPeak(Byte_t *ptr, Byte_t window, Byte_t &startslice, Int_t &signal, Int_t &sat) const; Bool_t ReInit(MParList *pList); Int_t Process(); public: MExtractFixedWindowPeakSearch(const char *name=NULL, const char *title=NULL); void SetRange(Byte_t hifirst=0, Byte_t hilast=0, Byte_t lofirst=0, Byte_t lolast=0); void SetWindows(Byte_t windowh=fgHiGainWindowSize, Byte_t windowl=fgLoGainWindowSize, Byte_t peaksearchwindow=fgPeakSearchWindowSize); void SetOffsetFromWindow(Byte_t offset=fgOffsetFromWindow) { fOffsetFromWindow = offset; } void SetLowGainPeakShift(Byte_t shift=fgLowGainPeakShift) { fLowGainPeakShift = shift; } ClassDef(MExtractFixedWindowPeakSearch, 0) // Signal Extractor for fixed size trigger-corrected extraction window }; #endif