Ignore:
Timestamp:
03/04/07 13:25:16 (18 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/msignal/MExtractTimeAndCharge.h

    r8304 r8362  
    1212private:
    1313  static const Float_t fgLoGainStartShift; //! Default for fLoGainStartShift (now set to: -2.8)
    14   static const Byte_t  fgLoGainSwitch;     //! Default for fLoGainSwitch     (now set to: 100)
     14  static const UInt_t  fgLoGainSwitch;     //! Default for fLoGainSwitch     (now set to: 100)
    1515 
    1616  Float_t fLoGainStartShift;      // Shift to start searching the low-gain signal obtained from the high-gain times.
    17   Byte_t  fLoGainSwitch;          // Limit for max. bin content before the low-gain gets extracted
     17  UInt_t  fLoGainSwitch;          // Limit for max. bin content before the low-gain gets extracted
    1818
    1919protected:
     
    3333  Int_t   GetWindowSizeLoGain  () const { return fWindowSizeLoGain; }
    3434  Float_t GetLoGainStartShift  () const { return fLoGainStartShift; }
    35   Byte_t  GetLoGainSwitch      () const { return fLoGainSwitch;     }
     35  UInt_t  GetLoGainSwitch      () const { return fLoGainSwitch;     }
    3636
    3737  void SetLoGainStartShift( const Float_t f=fgLoGainStartShift ) { fLoGainStartShift = f + fOffsetLoGain;  }
    38   void SetLoGainSwitch    ( const Byte_t  i=fgLoGainSwitch     ) { fLoGainSwitch     = i; }
     38  void SetLoGainSwitch    ( const UInt_t  i=fgLoGainSwitch     ) { fLoGainSwitch     = i; }
    3939
    4040  virtual void SetWindowSize(Int_t windowh, Int_t windowl) { fWindowSizeHiGain = windowh; fWindowSizeLoGain = windowl;  }
     
    5656  void Print(Option_t *o="") const; //*MENU*
    5757
    58   ClassDef(MExtractTimeAndCharge, 3)   // Time And Charge Extractor Base Class
     58  ClassDef(MExtractTimeAndCharge, 4)   // Time And Charge Extractor Base Class
    5959};
    6060
    6161#endif
    62 
    63 
    64 
Note: See TracChangeset for help on using the changeset viewer.