Changeset 4605 for trunk/MagicSoft/Mars/msignal/MExtractBlindPixel.cc
- Timestamp:
- 08/12/04 21:43:15 (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/msignal/MExtractBlindPixel.cc
r4399 r4605 74 74 using namespace std; 75 75 76 const Int_t MExtractBlindPixel::fgNumBlindPixels = 2; 76 77 const UInt_t MExtractBlindPixel::fgBlindPixelIds[3] = { 559, 560, 561 }; 77 78 const UInt_t MExtractBlindPixel::fgBlindPixelIdx = 559; 78 const Byte_t MExtractBlindPixel::fgFirst = 0;79 const Byte_t MExtractBlindPixel::fgLast = 7;80 79 const Byte_t MExtractBlindPixel::fgHiGainFirst = 10; 81 80 const Byte_t MExtractBlindPixel::fgHiGainLast = 19; … … 84 83 const Int_t MExtractBlindPixel::fgNSBFilterLimit = 70; 85 84 const Float_t MExtractBlindPixel::fgResolution = 0.003; 86 const UInt_t MExtractBlindPixel::gkModificationRun = 31693;87 85 const Float_t MExtractBlindPixel::gkOverflow = 300.; 88 86 // -------------------------------------------------------------------------- … … 114 112 SetRange(fgHiGainFirst, fgHiGainLast, fgLoGainFirst, fgLoGainLast); 115 113 116 SetFirst(); 117 SetLast(); 114 SetNumBlindPixels(); 118 115 119 116 Clear(); … … 206 203 // - MExtractor::PreProcess(pList) 207 204 // 208 // Sets fModified to kTRUE if the current run number is greater or equal gkModificationRun209 //210 205 // The following output containers are also searched and created if 211 206 // they were not found: 212 207 // 213 208 // - MExtractedBlindPixel 214 //215 //216 209 // 217 210 Int_t MExtractBlindPixel::PreProcess(MParList *pList) … … 255 248 delete [] fHiGainSecondDeriv; 256 249 257 if ( fRunHeader->GetRunNumber() >= gkModificationRun)250 if (fModified) 258 251 { 259 fModified = kTRUE; 260 SetExtractionType(kAmplitude); 261 SetRange(fFirst,fLast); 262 for (Int_t i=0;i<3;i++) 252 for (Int_t i=0;i<fNumBlindPixels;i++) 263 253 { 264 265 254 SetBlindPixelIdx(fgBlindPixelIds[i],i); 255 fBlindPixel->SetBlindPixelIdx(fgBlindPixelIds[i],i); 266 256 } 267 257 } 268 258 else 269 { 270 fBlindPixel->SetBlindPixelIdx(fBlindPixelIdx.At(0)); 271 SetExtractionType(kIntegral); 272 SetExtractionType(kFilter); 273 } 259 fBlindPixel->SetBlindPixelIdx(fBlindPixelIdx.At(0)); 274 260 275 261 fBlindPixel->SetExtractionType(fExtractionType); … … 351 337 fHiLoLast ? (Int_t)fHiLoLast-1 : (Int_t)fHiGainLast ) 352 338 << endl; 339 353 340 if (IsExtractionType(kFilter)) 354 341 *fLog << inf << GetDescriptor() << ": Will use Filter using " … … 377 364 378 365 Int_t summ = 0; 379 Byte_t *p 366 Byte_t *p = ptr; 380 367 Byte_t *end = ptr + fHiGainLast - fHiGainFirst + 1; 381 368 … … 694 681 Byte_t sat = 0; 695 682 696 if ( !fModified)683 if (IsExtractionType(kFilter)) 697 684 { 698 685 … … 706 693 continue; 707 694 } 695 696 sum = 0; 697 FindSignalFilter(pixel.GetLoGainSamples(), sum, sat); 698 699 /* 700 if (fModified) 701 { 702 if (sum > fNSBFilterLimit) 703 { 704 fBlindPixel->SetExtractedSignal(-1.,id); 705 fBlindPixel->SetNumSaturated(sat,id); 706 fBlindPixel->SetReadyToSave(); 707 continue; 708 } 709 } 710 */ 708 711 } 709 712 710 713 Float_t newsum = 0.; 711 714 sat = 0; … … 716 719 FindIntegral (pixel.GetHiGainSamples()+fHiGainFirst, pixel.GetLoGainSamples(), newsum, sat); 717 720 721 718 722 fBlindPixel->SetExtractedSignal(newsum,id); 719 723 fBlindPixel->SetNumSaturated(sat,id);
Note:
See TracChangeset
for help on using the changeset viewer.