- Timestamp:
- 01/21/04 13:47:01 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 added
- 2 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r2865 r2867 5 5 -*-*- END OF LINE -*-*- 6 6 7 2004/01/21: Abelardo moralejo 8 9 * manalysis/MMcCalibrationUpdate.[h,cc] 10 - Added (see below). 11 12 * manalysis/MMcCalibrationCalc.[h,cc] 13 - Removed: changed name of this class to MMcCalibrationUpdate, 14 which is more representative of what it really does. Moved 15 the filling of the MCalibrationCam container from Process to 16 ReInit, since it does not change on an event by event basis. 17 Updated class description. 18 19 * manalysis/Makefile, AnalysisLinkDef.h 20 - Adapted to change above 21 22 * macros/starmc.C 23 - Adapted to change above 24 25 7 26 2004/01/21: Raquel de los Reyes 8 27 9 28 * mreport/MReportCC.h, mreport/MReportTrigger.h and 10 29 mcamera/MCameraCalibration.h 11 - Added the "Get" functions (e.g GetStatus() for fStatus) to access12 the private data members of the class.30 - Added the "Get" functions (e.g GetStatus() for fStatus) to access 31 the private data members of the class. 13 32 14 33 -
trunk/MagicSoft/Mars/macros/starmc.C
r2824 r2867 78 78 sigextract.SetRange(0, 5, 0, 5); 79 79 80 MMcCalibrationCalc mccalibcalc; 81 // Define conversion factor from ADC counts to photons before camera for 80 MMcCalibrationUpdate mccalibcalc; 81 82 // 83 // Now introduce conversion factor from ADC counts to photons before camera for 82 84 // inner pixels. The corresponding value for outer pixels is then calculated 83 85 // automatically. Bear in mind that the conversion factor depend both on the … … 86 88 // event loop, either from the same MC file or from a MC calibration file 87 89 // written on purpose. 90 // (FIXME: the conversion must be calculated automatically from the analyzed file) 91 // 88 92 mccalibcalc.SetADC2PhInner(1.2586); 89 93 … … 119 123 tlist.AddToList(&geom); 120 124 tlist.AddToList(&pcopy); 125 121 126 tlist.AddToList(&sigextract); 122 127 tlist.AddToList(&mccalibcalc); -
trunk/MagicSoft/Mars/manalysis/AnalysisLinkDef.h
r2837 r2867 75 75 #pragma link C++ class MArrivalTimeCalc+; 76 76 77 #pragma link C++ class MMcCalibration Calc+;77 #pragma link C++ class MMcCalibrationUpdate+; 78 78 79 79 #pragma link C++ class MPedPhotCam+; -
trunk/MagicSoft/Mars/manalysis/Makefile
r2855 r2867 84 84 MArrivalTime.cc \ 85 85 MArrivalTimeCalc.cc \ 86 MMcCalibration Calc.cc86 MMcCalibrationUpdate.cc 87 87 88 88 SRCS = $(SRCFILES)
Note:
See TracChangeset
for help on using the changeset viewer.