Changeset 3917
- Timestamp:
- 04/30/04 18:27:16 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r3915 r3917 28 28 29 29 2004/04/30: Markus Gaug 30 31 * mcalib/MCalibrationRelTimeCam.h 32 - new TArrayIs to store number of unsuitable and unreliable pixels 33 30 34 31 35 * mbadpixels/MBadPixelsPix.h -
trunk/MagicSoft/Mars/mcalib/CalibLinkDef.h
r3846 r3917 11 11 #pragma link C++ class MCalibrationCam+; 12 12 #pragma link C++ class MCalibrationPix+; 13 #pragma link C++ class MCalibrationRelTimeCalc+; 13 14 #pragma link C++ class MCalibrationRelTimeCam+; 14 15 #pragma link C++ class MCalibrationRelTimePix+; -
trunk/MagicSoft/Mars/mcalib/MCalibrationRelTimeCam.h
r3644 r3917 6 6 #endif 7 7 8 #ifndef ROOT_TArrayI 9 #include "TArrayI.h" 10 #endif 11 12 8 13 class MCalibrationRelTimeCam : public MCalibrationCam 9 14 { 10 15 private: 11 16 17 TArrayI fNumUncalibrated; 18 TArrayI fNumUnreliable; 19 12 20 public: 13 21 14 22 MCalibrationRelTimeCam(const char *name=NULL, const char *title=NULL); 15 23 ~MCalibrationRelTimeCam() {} 24 25 Int_t GetNumUncalibrated ( const Int_t aidx) const { return fNumUncalibrated[aidx]; } 26 Int_t GetNumUnreliable ( const Int_t aidx) const { return fNumUnreliable [aidx]; } 16 27 17 28 // Prints … … 21 32 Bool_t GetPixelContent(Double_t &val, Int_t idx, const MGeomCam &cam, Int_t type=0) const; 22 33 void DrawPixelContent(Int_t num) const; 34 35 void SetNumUncalibrated ( const Int_t i, const Int_t aidx) { fNumUncalibrated[aidx] = i; } 36 void SetNumUnreliable ( const Int_t i, const Int_t aidx) { fNumUnreliable [aidx] = i; } 23 37 24 38 ClassDef(MCalibrationRelTimeCam, 1) // Container Rel. Arrival Time Calibration Results Camera -
trunk/MagicSoft/Mars/mcalib/Makefile
r3846 r3917 45 45 MCalibrationRelTimeCam.cc \ 46 46 MCalibrationRelTimePix.cc \ 47 MCalibrationRelTimeCalc.cc \ 47 48 MCalibrationQECam.cc \ 48 49 MCalibrationQEPix.cc \
Note:
See TracChangeset
for help on using the changeset viewer.