Changeset 7845
- Timestamp:
- 08/04/06 10:40:48 (18 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r7844 r7845 68 68 - adapted handling of sat in hi-gain extraction to changes 69 69 above 70 71 * mjobs/MJCalibrateSignal.cc: 72 - replaced the hi-/lo-gain pulse plots by plots showing the 73 hi-/lo-gain intercalibration and the hi-/lo-gain offset 70 74 71 75 -
trunk/MagicSoft/Mars/NEWS
r7841 r7845 26 26 - callisto: Updated absolute calibration constants (muon calibration) 27 27 28 - callisto: fixed a bug which caused the hi-gain saturation not 29 to be handled properly 30 31 - callisto fixed a bug which gave weird results if hi- and lo-gain 32 could not be extracted properly 33 28 34 - callisto: Fixed a bug regarding the use of the QE which doesn't 29 35 effect the result because the default is used anyhow. 30 36 (The bug was there since 14/07/2005) 37 38 - callisto: Changed the default for fgLoGainStartShift 31 39 32 40 - callisto: Fixed a bug which caused all hi-/lo-gain calibration … … 38 46 mainly for timing studies, not for the automatic standard analysis. 39 47 40 - callisto: Implemented two new tabs, the pulse position of pulses 41 not saturating the hi-gain (and above 50phe) and the pulse-position 42 saturating the hi-gain (means the pulse position of signal extracted 43 from the lo-gain and above 320phe) This can be used to check (and/or 44 correct) the hi-/lo-gain offset. 48 - callisto: Now tab "HiLoCal" which shows the ratio between hi- and 49 lo-gain pulse for data pulses if hi- and lo-gain have saturated 50 and both were extracted because the hi-gain was above the 51 LoGainSwitch. 52 53 - callisto: Now tab "HiLoOff" which shows the offset between hi- and 54 lo-gain pulse position (after application of LoGainOffset, which 55 means in the ideal case it is 0) for data pulses if hi- and lo-gain 56 have saturated and both were extracted because the hi-gain was above 57 the LoGainSwitch. 45 58 46 59 - callisto: After extensive tests a new threshold level for determination … … 50 63 range and starts sticking to non-floating point numbers (5, 6, 7, ...) 51 64 52 - star: changed the fit for the ffective on time such that initial65 - star: changed the fit for the effective on time such that initial 53 66 values are calculated automatically now instead of using build 54 67 in values. This makes the fit more indepedant of the underlaying -
trunk/MagicSoft/Mars/mjobs/MJCalibrateSignal.cc
r7829 r7845 581 581 MHCamEvent evt7( 6, "Times", "Calibrated Arrival Time;;T [fadc sl]"); 582 582 MHCamEvent evt8( 0, "Conv", "Calibration Conv. Factors;;[phe/fadc cnts]"); 583 MHCamEvent evt9( 7, "PulsePos", "Pulse Position of cosmics (>15phe);;T"); 584 MHCamEvent evtH( 11, "PulseHi", "Pulse Position of Hi-Gain;;T"); 585 MHCamEvent evtL( 10, "PulseLo", "Pulse Position of Lo-Gain;;T"); 583 MHCamEvent evt9( 7, "PulsePos", "Pulse Position of cosmics (>20phe);;T"); 584 //MHCamEvent evtH( 11, "PulseHi", "Pulse Position of Hi-Gain;;T"); 585 //MHCamEvent evtL( 10, "PulseLo", "Pulse Position of Lo-Gain;;T"); 586 MHCamEvent evtR( 4, "HiLoCal", "Hi-Lo Gain ratio;;"); 587 MHCamEvent evtO( 7, "HiLoOff", "Hi-Lo Offset;;"); 586 588 evt6.SetThreshold(); 587 589 … … 596 598 MFillH fill8(&evt8, "MCalibrationIntensityConstCam", "FillConv"); 597 599 MFillH fill9(&evt9, "MSignalCam", "FillPulse"); 598 MFillH fillH(&evtH, "MSignalCam", "FillPulseHi"); 599 MFillH fillL(&evtL, "MSignalCam", "FillPulseLo"); 600 //MFillH fillH(&evtH, "MSignalCam", "FillPulseHi"); 601 //MFillH fillL(&evtL, "MSignalCam", "FillPulseLo"); 602 MFillH fillR(&evtR, "MExtractedSignalCam", "FillHiLoCal"); 603 MFillH fillO(&evtO, "MArrivalTimeCam", "FillHiLoOff"); 600 604 601 605 MTaskEnv fillflorian("FinalFantasy"); … … 726 730 tlist2.AddToList(&fill9); 727 731 tlist2.AddToList(&fillH); 728 tlist2.AddToList(&fillL); 732 //tlist2.AddToList(&fillL); 733 //tlist2.AddToList(&fillR); 734 tlist2.AddToList(&fillO); 729 735 730 736 tlist2.AddToList(&fillflorian);
Note:
See TracChangeset
for help on using the changeset viewer.