Changeset 3438
- Timestamp:
- 03/07/04 21:11:42 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r3431 r3438 50 50 - add MBadPixelsCam 51 51 52 * mcalib/MCalibrate.[h,cc] 53 * mcalib/MCalibrateData.[h,cc] 54 - implemented calls to MBadPixelsCam 55 56 * macros/calibration.C 57 * macros/bootcampstandardanalysis.C 58 * macros/pedphotcalc.C 59 - implemented calls to MBadPixelsCam 60 61 * mjobs/MJCalibration.cc 62 - call to MBadPixelsCam 63 52 64 53 65 2004/03/05: Nadia Tonello -
trunk/MagicSoft/Mars/macros/pedphotcalc.C
r3298 r3438 17 17 ! Author(s): Josep Flix, 01/2004 <mailto:jflix@ifae.es> 18 18 ! Javier Rico, 01/2004 <mailto:jrico@ifae.es> 19 ! Markus Gaug, 03/2004 <mailto:markus@ifae.es> 19 20 ! 20 21 ! (based on bootcampstandardanalysis.C by Javier López) … … 51 52 #include "MPedPhotCalc.h" 52 53 #include "MPedPhotCam.h" 54 #include "MBadPixelsCam.h" 53 55 #include "MHCamera.h" 54 56 … … 120 122 MCalibrationChargeCam calcam; 121 123 MExtractedSignalCam sigcam; 124 MBadPixelsCam badcam; 122 125 123 126 MCalibrationChargeCam chargecam; … … 131 134 plist2.AddToList(&calcam); 132 135 plist2.AddToList(&sigcam); 136 plist2.AddToList(&badcam); 133 137 plist2.AddToList(&chargecam); 134 138 plist2.AddToList(&chargepin); -
trunk/MagicSoft/Mars/mjobs/MJCalibration.cc
r3387 r3438 17 17 ! 18 18 ! Author(s): Thomas Bretz, 1/2004 <mailto:tbretz@astro.uni-wuerzburg.de> 19 ! Markus Gaug, 02/2004 <mailto:markus@ifae.es> 19 20 ! 20 21 ! Copyright: MAGIC Software Development, 2000-2004 … … 55 56 #include "MGeomApply.h" 56 57 #include "MBadPixelsMerge.h" 58 #include "MBadPixelsCam.h" 57 59 #include "MExtractSignal.h" 58 60 #include "MExtractPINDiode.h" … … 498 500 plist.AddToList(&tlist); 499 501 500 MGeomApply apply; 501 MBadPixelsMerge merge(&fBadPixels); 502 // MExtractSignal extract; // Do not use this at the moment... 502 MGeomApply apply; 503 MBadPixelsMerge merge(&fBadPixels); 503 504 MExtractPINDiode pinext; 504 505 MExtractBlindPixel blindext; 506 // MExtractSignal extract; // Do not use this at the moment... 505 507 MExtractSignal2 extract; 506 508 MCalibrationChargeCalc calcalc;
Note:
See TracChangeset
for help on using the changeset viewer.