- Timestamp:
- 09/03/04 22:12:57 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r4854 r4855 42 42 * mcalib/MCalibrationChargeCalc.[h,cc] 43 43 - fixed UpdateCombinedMethod, removed AddAverageCombinedQEs 44 45 * mcalib/MCalibrationQECam.[h,cc] 46 - new array with cornings, not included in the I/O 47 - added copy function 44 48 45 49 -
trunk/MagicSoft/Mars/mcalib/MCalibColorSet.cc
r4845 r4855 106 106 { 107 107 case 26402: 108 case 22246: 109 case 22253: 108 110 color = kBLUE; 109 111 break; -
trunk/MagicSoft/Mars/mcalib/MCalibrationCam.cc
r4670 r4855 154 154 } 155 155 156 // -------------------------------------------------------------------------- 157 // 158 // Copy 'constructor' 159 // 156 160 void MCalibrationCam::Copy(TObject& object) const 157 161 { -
trunk/MagicSoft/Mars/mcalib/MCalibrationQECam.cc
r4205 r4855 149 149 } 150 150 151 // -------------------------------------------------------------------------- 152 // 153 // Copy 'constructor' 154 // 155 void MCalibrationQECam::Copy(TObject& object) const 156 { 157 158 MCalibrationQECam &qecam = (MCalibrationQECam&)object; 159 160 MCalibrationCam::Copy(qecam); 161 162 qecam.fCorningBlues = fCorningBlues; 163 qecam.fCorningReds = fCorningReds; 164 165 } 166 151 167 152 168 // -------------------------------------------------------------------------- -
trunk/MagicSoft/Mars/mcalib/MCalibrationQECam.h
r3691 r4855 17 17 static const Float_t gkPlexiglassQEErr; //! Uncertainty QE Plexiglass (now set to: 0.01) 18 18 19 TArrayF fCorningBlues; //! Corning blues of the pixels (if available) 20 TArrayF fCorningReds; //! Corning reds of the pixels (if available) 21 19 22 TArrayC fFlags; 20 23 … … 28 31 29 32 void Clear( Option_t *o=""); 33 void Copy(TObject& object) const; 30 34 31 35 // Others -
trunk/MagicSoft/Mars/mjobs/MJCalibration.cc
r4854 r4855 1246 1246 case 20660: 1247 1247 case 20661: 1248 case 22247:1249 1248 case 26408: 1250 1249 case 26409:
Note:
See TracChangeset
for help on using the changeset viewer.