Changeset 3072
- Timestamp:
- 02/09/04 16:13:36 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r3071 r3072 10 10 single and double phe events 11 11 12 * mcalib/MCalibrationCalc.cc 13 - fill histograms of single-phe events with higain and logain 14 sampls 12 15 13 16 -
trunk/MagicSoft/Mars/mcalib/MCalibrationCalc.cc
r3065 r3072 87 87 88 88 #include <TSystem.h> 89 #include <TH1.h> 89 90 90 91 #include "MLog.h" … … 527 528 "Overflow or Underflow occurred filling Blind Pixel sum = " << blindpixelsumhi << endl; 528 529 530 Byte_t *hiptr = pixel.GetHiGainSamples(); 531 Byte_t *loptr = pixel.GetHiGainSamples(); 532 533 TH1I *hist = blindpixel.GetSinglePheFADCSlices(); 534 535 if (blindpixelsumhi > 100.) 536 { 537 for (Int_t i=0;i<15;i++) 538 hist->Fill(i,*hiptr++); 539 for (Int_t i=15;i<30;i++) 540 hist->Fill(i,*loptr++); 541 } 542 529 543 } /* if use blind pixel */ 530 544
Note:
See TracChangeset
for help on using the changeset viewer.