| Last change
 on this file since 2527 was             452, checked in by harald, 25 years ago | 
        
          | Further improvements in the layout of some guiclasses.
Know the fundament for calculating the pedestals is created with
the first implementation of the classes MPixPedest and MPedest.
A first task for calculating the pedestals is set up (MCalcPed1). | 
        
          | File size:
            764 bytes | 
      
      
| Line |  | 
|---|
| 1 | #ifndef MPEDEST_H | 
|---|
| 2 | #define MPEDEST_H | 
|---|
| 3 |  | 
|---|
| 4 | #include "TObject.h" | 
|---|
| 5 |  | 
|---|
| 6 | #include "Magic.h" | 
|---|
| 7 | #include "MPixPedest.h" | 
|---|
| 8 | #include "MParContainer.h" | 
|---|
| 9 |  | 
|---|
| 10 |  | 
|---|
| 11 | class MPedest : public MParContainer | 
|---|
| 12 | { | 
|---|
| 13 | private: | 
|---|
| 14 | Int_t       fNumPix ;        // number of pixels | 
|---|
| 15 | MPixPedest  *fHighPed ;     // an array with the data for all pixels of the high  gain | 
|---|
| 16 | MPixPedest  *fLowPed ;      // an array with the data for all pixels of the low gain | 
|---|
| 17 |  | 
|---|
| 18 | public: | 
|---|
| 19 |  | 
|---|
| 20 | MPedest( Int_t iPix = 577 ) ; | 
|---|
| 21 |  | 
|---|
| 22 | ~MPedest() ; | 
|---|
| 23 |  | 
|---|
| 24 | void SetAllHigh ( Int_t iPix, Float_t mean, Float_t errMean, Float_t sig, Float_t errSig ) ; | 
|---|
| 25 | void SetAllLow  ( Int_t iPix, Float_t mean, Float_t errMean, Float_t sig, Float_t errSig ) ; | 
|---|
| 26 |  | 
|---|
| 27 | void Print() ; | 
|---|
| 28 |  | 
|---|
| 29 | ClassDef(MPedest, 1) | 
|---|
| 30 | };                              // end of class definition of MRawPixel | 
|---|
| 31 |  | 
|---|
| 32 | #endif | 
|---|
       
      
  Note:
 See   
TracBrowser
 for help on using the repository browser.