Ignore:
Timestamp:
05/11/07 16:47:18 (18 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

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

    r8364 r8498  
    1717class MRawRunHeader;
    1818
    19 class MPedestalCam;
    2019class MPedestalSubtractedEvt;
    2120class MExtractedSignalCam;
     
    3332protected:
    3433  static const UInt_t  fgSaturationLimit;  //! Default for fSaturationLimit (now set to: 254)
    35   static const TString fgNamePedestalCam;  //! "MPedestalCam"
    3634  static const TString fgNameSignalCam;    //! "MExtractedSignalCam"
    3735 
    3836  Float_t fOffsetLoGain;                   // Offset of the low-gain signal w.r.t. the High-Gain slices
    3937
    40   MPedestalCam        *fPedestals;         //! Pedestals of all pixels in the camera
    4138  MExtractedSignalCam *fSignals;           //! Extracted signal of all pixels in the camera
    42                                        
     39
    4340  MRawEvtData         *fRawEvt;            //! Raw event data (time slices)
    4441  MRawRunHeader       *fRunHeader;         //! RunHeader information
    4542
    4643  MPedestalSubtractedEvt *fSignal;         //!
    47                                        
     44
    4845  Byte_t   fHiGainFirst;                   // First FADC slice nr. to extract the High Gain signal
    4946  Byte_t   fHiGainLast;                    // Last FADC slice nr. to extract the High Gain signal
     
    6158  UInt_t   fSaturationLimit;               // Highest FADC slice value until being declared saturated
    6259
    63   TString  fNamePedestalCam;               // Name of the 'MPedestalCam' container
    6460  TString  fNameSignalCam;                 // Name of the 'MExtractedSignalCam' container
    6561
     
    107103  void SetOffsetLoGain    ( const Float_t  f=fgOffsetLoGain          ) { fOffsetLoGain     = f;    }
    108104  void SetSaturationLimit ( const UInt_t lim=fgSaturationLimit       ) { fSaturationLimit  = lim;  }
    109   void SetNamePedestalCam ( const char *name=fgNamePedestalCam.Data()) { fNamePedestalCam  = name; }
    110105  void SetNameSignalCam   ( const char *name=fgNameSignalCam.Data()  ) { fNameSignalCam    = name; }
    111106  void SetNoiseCalculation( const Bool_t   b=kTRUE                   ) { fNoiseCalculation = b;    }
    112 
    113   void SetPedestals (MPedestalCam *pedcam)   { fPedestals = pedcam; }
    114   MPedestalCam *GetPedestals()   { return fPedestals; }
    115107
    116108  // TObject
Note: See TracChangeset for help on using the changeset viewer.