- Timestamp:
- 12/09/04 12:22:47 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r5573 r5574 25 25 * mbadpixels/MBadPixelsTreat.cc: 26 26 - set default in constructor to UseInterpolation, ProcessPedestalEvt 27 and ProcessTimes 27 and ProcessTimes which is the callisto default 28 28 - enhanced comments in output 29 29 -
trunk/MagicSoft/Mars/mbadpixels/MBadPixelsTreat.cc
r4770 r5574 106 106 fTitle = title ? title : gsDefTitle.Data(); 107 107 108 SetProcessPedestalRun(); 108 SetUseInterpolation(); 109 SetProcessPedestal(); 110 SetProcessTimes(); 109 111 } 110 112 … … 152 154 { 153 155 *fLog << err << AddSerialNumber("MGeomCam") << " not found - can't use interpolation... abort." << endl; 156 *fLog << " Use MBadPixelsTreat::SetUseInterpolation(kFALSE) to switch interpolation" << endl; 157 *fLog << " off and use unmapping instead." << endl; 154 158 return kFALSE; 155 159 } … … 162 166 { 163 167 *fLog << err << AddSerialNumber("MPedPhotCam") << " not found... aborting." << endl; 168 *fLog << " Use MBadPixelsTreat::SetProcessPedestalRun(kFALSE) and" << endl; 169 *fLog << " MBadPixelsTreat::SetProcessPedestalEvt(kFALSE) to switch" << endl; 170 *fLog << " Pedestal treatment off." << endl; 164 171 return kFALSE; 165 172 } … … 173 180 { 174 181 *fLog << err << AddSerialNumber("MArrivalTime") << " not found... aborting." << endl; 182 *fLog << " Use MBadPixelsTreat::SetProcessTimes(kFALSE) to switch time interpolation off." << endl; 175 183 return kFALSE; 176 184 }
Note:
See TracChangeset
for help on using the changeset viewer.