Changeset 4765
- Timestamp:
- 08/27/04 16:24:23 (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/msignal/MExtractBlindPixel.cc
r4669 r4765 267 267 const Int_t diff = firstdesired - lastavailable; 268 268 *fLog << endl; 269 *fLog << warn << GetDescriptor() 270 << Form("%s%2i%s%2i%s",": Selected First Hi Gain FADC slice ", 271 (int)fHiGainFirst, 272 " ranges out of the available limits: [0,",lastavailable,"].") << endl; 273 *fLog << warn << GetDescriptor() 274 << Form("%s%2i%s",": Will start with slice ",diff," of the Low-Gain for the High-Gain extraction") 275 << endl; 269 *fLog << warn << "First Hi Gain slice " << (int)fHiGainFirst << " out of range [0,"; 270 *fLog << lastavailable << "]... start at " << diff << endl; 276 271 277 272 fHiLoFirst = diff; … … 288 283 { 289 284 *fLog << endl; 290 *fLog << warn << GetDescriptor() 291 << Form("%s%2i%s%2i%s",": Selected Last Hi Gain FADC slice ", 292 (int)fHiGainLast, 293 " ranges out of the available limits: [0,",lastavailable,"].") << endl; 294 *fLog << warn << GetDescriptor() 295 << Form("%s%2i",": Will reduce upper limit by ",diff) 296 << endl; 297 diff = (Int_t)fRunHeader->GetNumSamplesLoGain(); 285 *fLog << "Last Hi Gain slice " << (int)fHiGainLast << " out of range [0,"; 286 *fLog << lastavailable << "]... reduce upper limit by " << diff << endl; 287 diff = (Int_t)fRunHeader->GetNumSamplesLoGain(); 298 288 } 299 289 … … 312 302 313 303 *fLog << endl; 314 *fLog << inf << GetDescriptor() << ": Extracting "304 *fLog << inf << ": Extracting " 315 305 << Form("%s",IsExtractionType(kAmplitude) ? "Amplitude " : " Integral ") 316 306 << " using " << range << " FADC samples from "
Note:
See TracChangeset
for help on using the changeset viewer.