Changeset 14922 for trunk/Mars/mdrs
- Timestamp:
- 02/13/13 16:47:35 (12 years ago)
- Location:
- trunk/Mars/mdrs
- Files:
-
- 14 added
- 4 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/Mars/mdrs/MCalibrateDrsTimes.cc
r14896 r14922 16 16 ! 17 17 ! 18 ! Author(s): Markus Gaug 04/2004 <mailto:markus@ifae.es>18 ! Author(s): Thomas Bretz 2013 <mailto:thomas.bretz@epfl.ch> 19 19 ! 20 ! Copyright: MAGIC Software Development, 2000-20 0620 ! Copyright: MAGIC Software Development, 2000-2013 21 21 ! 22 22 ! … … 27 27 // MCalibrateDrsTimes 28 28 // 29 // This task takes the extracted arrival times from MArrivalTimeCam for each30 // pixel and applies the offset calibrated in MCalibrationRelTimeCam31 // The calibrated arrival time and its error gets stored in MSignalCam.32 //33 // Input Containers:34 // MArrivalTimeCam35 // MCalibrationRelTimeCam36 //37 // Output Containers:38 // MSignalCam39 //40 29 ////////////////////////////////////////////////////////////////////////////// 41 30 #include "MCalibrateDrsTimes.h" 42 31 43 #include "MLog.h"44 #include "MLogManip.h"45 46 32 #include "MParList.h" 47 48 #include "MGeomCam.h"49 50 #include "MCalibrationRelTimeCam.h"51 #include "MCalibrationRelTimePix.h"52 33 53 34 #include "MArrivalTimeCam.h" … … 58 39 59 40 #include "MSignalCam.h" 60 #include "MSignalPix.h"61 41 62 42 #include "MRawRunHeader.h" 63 43 #include "MRawEvtData.h" 64 #include "MHDrsCalib.h" 44 45 #include "MDrsCalibrationTime.h" 65 46 66 47 ClassImp(MCalibrateDrsTimes); 67 48 68 49 using namespace std; 50 69 51 // -------------------------------------------------------------------------- 70 52 // -
trunk/Mars/mdrs/MDrsCalibApply.cc
r14920 r14922 16 16 ! 17 17 ! 18 ! Author(s): Thomas Bretz, 10/2006 <mailto:tbretz@astro.uni-wuerzburg.de>19 ! 20 ! Copyright: MAGIC Software Development, 20 00-200818 ! Author(s): Thomas Bretz, 2013<mailto:thomas.bretz@epfl.ch> 19 ! 20 ! Copyright: MAGIC Software Development, 2013 21 21 ! 22 22 ! … … 26 26 // 27 27 // MDrsCalibApply 28 //29 // This class merges hi- and lo-gain samples into one array and30 // subtracts the pedestal (including the AB-offset) from the31 // data and stores the result in MDrsCalibApplyedEvt.32 //33 // Input Containers:34 // MRawEvtData35 // MRawRunHeader36 // MPedestalCam37 //38 // Output Containers:39 // MDrsCalibApplyedEvt40 28 // 41 29 ////////////////////////////////////////////////////////////////////////////// … … 56 44 #include "MPedestalPix.h" 57 45 58 #include " ../mhist/MHDrsCalib.h"46 #include "MDrsCalibration.h" 59 47 #include "MPedestalSubtractedEvt.h" 60 48 … … 62 50 #include "MExtractedSignalPix.h" 63 51 64 ClassImp(MDrsCalibResult);65 52 ClassImp(MDrsCalibApply); 66 53
Note:
See TracChangeset
for help on using the changeset viewer.