Changeset 5469 for trunk/MagicSoft/Mars


Ignore:
Timestamp:
11/26/04 10:57:54 (20 years ago)
Author:
gaug
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r5468 r5469  
    2525   * mbase/MRunIter.[h,cc]
    2626     - 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
    2836
    2937 2004/11/23: Markus Gaug
  • trunk/MagicSoft/Mars/mbase/MRunIter.h

    r5461 r5469  
    4242
    4343public:
    44     MRunIter(const char *path=0) : fPath(path), fIsRawFile(0) { }
     44    MRunIter(const char *path=0) : fPath(path), fIsRawFile(0), fIsStandardFile(kFALSE) { }
    4545
    4646    void SetRawFile(Bool_t filetype) { fIsRawFile = filetype; }
  • trunk/MagicSoft/Mars/msignal/MExtractFixedWindowPeakSearch.h

    r5250 r5469  
    3939    MExtractFixedWindowPeakSearch(const char *name=NULL, const char *title=NULL);
    4040
     41    Byte_t GetHiGainWindowSize() const { return fHiGainWindowSize; }
     42    Byte_t GetLoGainWindowSize() const { return fLoGainWindowSize; }
     43
    4144    void SetRange(Byte_t hifirst=0, Byte_t hilast=0, Byte_t lofirst=0, Byte_t lolast=0);   
    4245    void SetWindows(Byte_t windowh=fgHiGainWindowSize, Byte_t windowl=fgLoGainWindowSize,
  • trunk/MagicSoft/Mars/msignal/MExtractTimeAndChargeSlidingWindow.h

    r5240 r5469  
    4343  ~MExtractTimeAndChargeSlidingWindow(); 
    4444
     45  Byte_t GetWindowSizeHiGain() const { return fWindowSizeHiGain; }
     46  Byte_t GetWindowSizeLoGain() const { return fWindowSizeLoGain; }
     47
    4548  void SetRange    ( Byte_t hifirst=0, Byte_t hilast=0, Byte_t lofirst=0, Byte_t lolast=0 ); 
    4649  void SetWindowSize(Byte_t windowh=fgHiGainWindowSize,
  • trunk/MagicSoft/Mars/msignal/MExtractTimeAndChargeSpline.h

    r5240 r5469  
    6262  ~MExtractTimeAndChargeSpline(); 
    6363
     64  Float_t GetRiseTime() const { return fRiseTime; }
     65  Float_t GetFallTime() const { return fFallTime; }
     66
    6467  void SetRange    ( Byte_t hifirst=0, Byte_t hilast=0, Byte_t lofirst=0, Byte_t lolast=0 ); 
    6568  void SetResolution   ( Float_t f=fgResolution  )  { fResolution  = f;  }
Note: See TracChangeset for help on using the changeset viewer.