Changeset 3624 for trunk/MagicSoft/Mars/mcalib/MCalibrationChargeCam.h
- Timestamp:
- 04/01/04 14:52:32 (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mcalib/MCalibrationChargeCam.h
r3623 r3624 33 33 34 34 TClonesArray *fPixels; //-> Array of MCalibrationChargePix, one per pixel 35 TClonesArray *fAveragePixels; //-> Array of MCalibrationChargePix, one per pixel area 36 TClonesArray *fAverageBadPixels; //-> Array of MBadPixelsPix, one per pixel area 35 TClonesArray *fAverageAreas; //-> Array of MCalibrationChargePix, one per pixel area 36 TClonesArray *fAverageSectors; //-> Array of MCalibrationChargePix, one per camera sector 37 TClonesArray *fAverageBadAreas; //-> Array of MBadPixelsPix, one per pixel area 38 TClonesArray *fAverageBadSectors; //-> Array of MBadPixelsPix, one per camera sector 37 39 38 40 TH1D* fOffsets; //! … … 62 64 void Clear( Option_t *o="" ); 63 65 void InitSize( const UInt_t i ); 64 void InitAverageSize( const UInt_t i ); 66 void InitAverageAreas( const UInt_t i ); 67 void InitAverageSectors( const UInt_t i ); 65 68 66 69 // Setters … … 77 80 // Getters 78 81 Int_t GetSize() const; 79 Int_t GetAverageSize() const; 82 Int_t GetAverageAreas() const; 83 Int_t GetAverageSectors() const; 80 84 81 85 Bool_t GetConversionFactorFFactor( Int_t ipx, Float_t &mean, Float_t &err, Float_t &sigma ); … … 101 105 const MCalibrationChargePix &operator[](UInt_t i) const; 102 106 103 MCalibrationChargePix &GetAverage Pix(UInt_t i);104 const MCalibrationChargePix &GetAverage Pix(UInt_t i) const;107 MCalibrationChargePix &GetAverageArea(UInt_t i); 108 const MCalibrationChargePix &GetAverageArea(UInt_t i) const; 105 109 106 MBadPixelsPix &GetAverageBadPix(UInt_t i); 107 const MBadPixelsPix &GetAverageBadPix(UInt_t i) const; 110 MBadPixelsPix &GetAverageBadArea(UInt_t i); 111 const MBadPixelsPix &GetAverageBadArea(UInt_t i) const; 112 113 MCalibrationChargePix &GetAverageSector(UInt_t i); 114 const MCalibrationChargePix &GetAverageSector(UInt_t i) const; 115 116 MBadPixelsPix &GetAverageBadSector(UInt_t i); 117 const MBadPixelsPix &GetAverageBadSector(UInt_t i) const; 108 118 109 119 // Prints
Note:
See TracChangeset
for help on using the changeset viewer.