Changeset 8939 for trunk/MagicSoft/Mars
- Timestamp:
- 06/12/08 14:51:20 (16 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r8935 r8939 20 20 21 21 22 2008/06/12 Thomas Bretz 23 24 * datacenter/macros/plotdb.C: 25 - improved some titles 26 - added the new rates 27 - added the new values from the star-files 28 29 * mbase/MStatusDisplay.cc: 30 - removing the canvases from the global list didn't work 31 because some RecursiveRemovs rely on gROOT->FindObject to work 32 (adding them to another list didn't work either) 33 34 * mhflux/MHEnergyEst.cc: 35 - renamed the "Resolution" Histogram accordingly. 36 37 * mjobs/MJCalibrateSignal.cc: 38 - added a histogram showing the arrival time of 39 extracted interleaved calibration events 40 41 * mraw/MRawEvtData.[h,cc]: 42 - fixed the Draw function. It was broken since the latest changes 43 - added fNumBytesPerSample to the Copy-function 44 - fixed the GetSample-function 45 - added a new member funtion to return the maximu possible 46 47 * mars.rc: 48 - changed the default for the MUX spline to the 50 sl window 49 50 * msignal/MSignalCalc.cc: 51 - scale the pedestal correctly with the scale 52 53 54 22 55 2008/06/11 Thomas Bretz 23 56 … … 30 63 - remove the embedded canvas from the global list to prevent 31 64 global access to it 65 66 * mhbase/MH3.cc: 67 - fixed a bug if in a 2D constructor a 1D profile was created 68 69 * mreport/MReportPyrometer.cc: 70 - tiny changes to the comments 32 71 33 72 -
trunk/MagicSoft/Mars/NEWS
r8935 r8939 109 109 * Added a new command line option --dev-null to suppress output of 110 110 Y-files (this is useful for test cases) 111 112 * added a new tab "CalPos" showing the arrival time of extracted 113 interleaved calibration events 111 114 112 115 ;star -
trunk/MagicSoft/Mars/mars.rc
r8652 r8939 59 59 #ExtractSignal.RiseTimeHiGain: 4.3 60 60 #ExtractSignal.FallTimeHiGain: 5.1 61 #ExtractSignal.HiGainFirst: 1562 #ExtractSignal.HiGainLast: 6561 #ExtractSignal.HiGainFirst: 0 62 #ExtractSignal.HiGainLast: 49 63 63 64 64 # ------------------------------------------------------------------------- -
trunk/MagicSoft/Mars/msignal/MSignalCalc.cc
r8573 r8939 125 125 // pixel in the MSignalCam container. 126 126 // 127 #include <TSystem.h>128 127 Int_t MSignalCalc::Process() 129 128 { … … 261 260 // MMcPedestalCopy and MMcPedestalNSBAdd 262 261 if (fPedestals) 263 (*fPedestals)[i].Set(b , sigb);262 (*fPedestals)[i].Set(b/fRunHeader->GetScale(), sigb/fRunHeader->GetScale()); 264 263 } 265 264
Note:
See TracChangeset
for help on using the changeset viewer.