Changeset 3269
- Timestamp:
- 02/23/04 22:33:51 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r3268 r3269 11 11 - include GetNumHiGainSamples and GetNumLoGainSamples 12 12 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 16 15 17 16 -
trunk/MagicSoft/Mars/mcalib/MExtractedSignalBlindPixel.h
r3198 r3269 16 16 Byte_t fNumSaturated; 17 17 18 Float_t fPed; 19 Float_t fPedErr; 20 Float_t fPedRms; 21 Float_t fPedRmsErr; 22 18 23 public: 19 24 … … 25 30 // Setter 26 31 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; } 28 33 void SetUsedFADCSlices( const Byte_t first, const Byte_t num); 29 34 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 30 40 // Getter 31 41 UInt_t GetExtractedSignal() const { return fExtractedSignal; } 32 42 33 Byte_t 43 Byte_t GetNumFADCSamples() const { return fNumFADCSamples; } 34 44 35 45 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; } 36 51 37 52 ClassDef(MExtractedSignalBlindPixel, 0) // Storage Container for Extracted Signal of the blind pixel … … 39 54 40 55 #endif 56 57 58 59
Note:
See TracChangeset
for help on using the changeset viewer.