Changeset 8207 for trunk/MagicSoft
- Timestamp:
- 11/02/06 17:44:10 (18 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r8206 r8207 45 45 - small changes to output 46 46 - changes to comments 47 48 * datacenter/macros/plotstat.C: 49 - changed division of pad, we have already too much periods 50 51 * mfilter/MFCosmics.cc: 52 - do not take invalid pixels into account 53 54 * mmain/MEventDisplay.cc: 55 - removed obsolete include of MExtractSignal 56 57 * msignal/MExtractTimeAndCharge.cc: 58 - in a possible case that the hi-gain etraction failed but the 59 lo-gain should be extracted we start one slice in front 60 of the lowest possible hi-gain time. 61 47 62 48 63 -
trunk/MagicSoft/Mars/datacenter/macros/plotstat.C
r7558 r8207 1 1 /* ======================================================================== *\ 2 ! $Name: not supported by cvs2svn $:$Id: plotstat.C,v 1.4 2006-11-02 17:44:08 tbretz Exp $ 3 ! -------------------------------------------------------------------------- 2 4 ! 3 5 ! * … … 443 445 cx.SetFrameBorderMode(0); 444 446 cx.SetFillColor(kWhite); 445 cx.Divide( 8,4);447 cx.Divide(9,5); 446 448 cx.cd(1); 447 449 DrawLegend(h); -
trunk/MagicSoft/Mars/mmain/MEventDisplay.cc
r8188 r8207 1 1 /* ======================================================================== *\ 2 ! $Name: not supported by cvs2svn $:$Id: MEventDisplay.cc,v 1.56 2006-11-02 17:44:09 tbretz Exp $ 3 ! -------------------------------------------------------------------------- 2 4 ! 3 5 ! * … … 18 20 ! Author(s): Thomas Bretz, 10/2001 <mailto:tbretz@astro.uni-wuerzburg.de> 19 21 ! 20 ! Copyright: MAGIC Software Development, 2000-200 322 ! Copyright: MAGIC Software Development, 2000-2006 21 23 ! 22 24 ! … … 82 84 #include "MBadPixelsTreat.h" // MBadPixelsTreat 83 85 #include "MFillH.h" // MFillH 84 #include "MExtractSignal.h" // MExtractsignal85 86 #include "MMcCalibrationUpdate.h" // MMcCalibrationUpdate 86 87 #include "MCalibrateData.h" // MCalibrateData -
trunk/MagicSoft/Mars/msignal/MExtractTimeAndCharge.cc
r8192 r8207 1 1 /* ======================================================================== *\ 2 ! $Name: not supported by cvs2svn $:$Id: MExtractTimeAndCharge.cc,v 1.5 8 2006-11-01 15:48:31tbretz Exp $2 ! $Name: not supported by cvs2svn $:$Id: MExtractTimeAndCharge.cc,v 1.59 2006-11-02 17:44:09 tbretz Exp $ 3 3 ! -------------------------------------------------------------------------- 4 4 ! … … 294 294 // 295 295 // The jitter in the hi-/lo-gain offset ssems to be around +/-0.5 296 if (deltatimehi>-0.5) 297 first = TMath::FloorNint(timehi+numh+fOffsetLoGain+fLoGainStartShift); 298 //else ??? 296 const Float_t tm = deltatimehi<0 ? -1.+fHiGainFirst : timehi; 297 first = TMath::FloorNint(tm+numh+fOffsetLoGain+fLoGainStartShift); 299 298 300 299 if (first<0)
Note:
See TracChangeset
for help on using the changeset viewer.