Changeset 3269


Ignore:
Timestamp:
02/23/04 22:33:51 (21 years ago)
Author:
gaug
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r3268 r3269  
    1111     - include GetNumHiGainSamples and GetNumLoGainSamples
    1212
    13    * mcalib/MExtractBlindPixel.[h,cc]
    14      - included const Getter to MRawEvtPixelIter
    15      - included calculation of pedestals in PostProcess
     13   * mcalib/MExtractedSignalBlindPixel.h
     14     - included storage of pedestal
    1615
    1716
  • trunk/MagicSoft/Mars/mcalib/MExtractedSignalBlindPixel.h

    r3198 r3269  
    1616  Byte_t fNumSaturated;
    1717
     18  Float_t fPed;
     19  Float_t fPedErr;
     20  Float_t fPedRms;
     21  Float_t fPedRmsErr;
     22
    1823public:
    1924
     
    2530  // Setter
    2631  void SetExtractedSignal(const UInt_t sig)          { fExtractedSignal = sig;  }
    27   void SetNumSaturated(  const Byte_t numsat)       { fNumSaturated    = numsat;  }
     32  void SetNumSaturated(   const Byte_t numsat)       { fNumSaturated    = numsat;  }
    2833  void SetUsedFADCSlices( const Byte_t first, const Byte_t num);
    2934   
     35  void SetPed(      const Float_t f )     { fPed       = f; }
     36  void SetPedErr(   const Float_t f )     { fPedErr    = f; }
     37  void SetPedRms(   const Float_t f )     { fPedRms    = f; }
     38  void SetPedRmsErr(const Float_t f )     { fPedRmsErr = f; }
     39
    3040    // Getter
    3141  UInt_t GetExtractedSignal()    const { return fExtractedSignal; }
    3242
    33   Byte_t  GetNumFADCSamples()     const { return fNumFADCSamples;  }
     43  Byte_t GetNumFADCSamples()     const { return fNumFADCSamples;  }
    3444 
    3545  Bool_t IsValid() const;   
     46
     47  Float_t GetPed()       const { return fPed;       }
     48  Float_t GetPedErr()    const { return fPedErr;    }
     49  Float_t GetPedRms()    const { return fPedRms;    }
     50  Float_t GetPedRmsErr() const { return fPedRmsErr; }
    3651
    3752  ClassDef(MExtractedSignalBlindPixel, 0)       // Storage Container for Extracted Signal of the blind pixel
     
    3954
    4055#endif
     56
     57
     58
     59
Note: See TracChangeset for help on using the changeset viewer.