- Timestamp:
- 05/26/04 21:06:36 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r4199 r4205 52 52 - set extracted signal from UInt_t to Int_t (sometimes, less than 53 53 0) 54 55 * mcalib/MCalibrationCam.h 56 * mcalib/MHCalibrationCam.h 57 - make destructors virtual. 54 58 55 59 -
trunk/MagicSoft/Mars/mcalib/MCalibrationCam.h
r3936 r4205 44 44 45 45 MCalibrationCam(const char *name=NULL, const char *title=NULL); 46 ~MCalibrationCam();46 virtual ~MCalibrationCam(); 47 47 48 48 virtual void Clear ( Option_t *o=""); -
trunk/MagicSoft/Mars/mcalib/MCalibrationQECam.cc
r4204 r4205 106 106 // 107 107 MCalibrationQECam::MCalibrationQECam(const char *name, const char *title) 108 : fFlags(MCalibrationCam::gkNumPulserColors)109 108 { 110 109 fName = name ? name : "MCalibrationQECam"; … … 114 113 fAverageAreas = new TClonesArray("MCalibrationQEPix",1); 115 114 fAverageSectors = new TClonesArray("MCalibrationQEPix",1); 115 116 fFlags.Set(MCalibrationCam::gkNumPulserColors); 116 117 117 118 Clear(); -
trunk/MagicSoft/Mars/mcalib/MHCalibrationCam.h
r4128 r4205 109 109 110 110 MHCalibrationCam(const char *name=NULL, const char *title=NULL); 111 ~MHCalibrationCam();111 virtual ~MHCalibrationCam(); 112 112 113 113 virtual Bool_t SetupFill(const MParList *pList);
Note:
See TracChangeset
for help on using the changeset viewer.