Changeset 3644 for trunk/MagicSoft/Mars/mcalib/MCalibrationQECam.h
- Timestamp:
- 04/04/04 19:06:45 (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mcalib/MCalibrationQECam.h
r3321 r3644 2 2 #define MARS_MCalibrationQECam 3 3 4 #ifndef MARS_MParContainer 5 #include "MParContainer.h" 6 #endif 7 #ifndef MARS_MCamEvent 8 #include "MCamEvent.h" 4 #ifndef MARS_MCalibrationCam 5 #include "MCalibrationCam.h" 9 6 #endif 10 7 11 class TClonesArray; 12 13 class MCalibrationQEPix; 14 class MCalibrationQECam : public MParContainer, public MCamEvent 8 class MCalibrationQECam : public MCalibrationCam 15 9 { 16 10 private: 17 18 Int_t fNumPixels;19 TClonesArray *fPixels; //-> Array of MCalibrationPix with fit results20 11 21 12 public: 22 13 23 14 MCalibrationQECam(const char *name=NULL, const char *title=NULL); 24 ~MCalibrationQECam(); 25 26 void Clear( Option_t *o="" ); 27 void InitSize( const UInt_t i ); 28 29 // Getters 30 Int_t GetSize() const; 31 UInt_t GetNumPixels() const { return fNumPixels; } 32 33 // Others 34 MCalibrationQEPix &operator[](UInt_t i); 35 const MCalibrationQEPix &operator[](UInt_t i) const; 15 ~MCalibrationQECam() {} 36 16 37 17 // Prints … … 42 22 void DrawPixelContent(Int_t num) const; 43 23 44 ClassDef(MCalibrationQECam, 1) // Container for calibration information of the camera24 ClassDef(MCalibrationQECam, 1) // Container for Quantum Efficieny Calibration Results Camera 45 25 }; 46 26
Note:
See TracChangeset
for help on using the changeset viewer.