Changeset 3344 for trunk/MagicSoft
- Timestamp:
- 02/27/04 20:07:20 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r3343 r3344 5 5 -*-*- END OF LINE -*-*- 6 6 2004/02/27: Raducci Sebastian 7 7 8 * mhist/Makefile 8 9 - added mastro in the include list 9 10 11 10 12 2004/02/27: Abelardo Moralejo 13 11 14 * mmain/MEventDisplay.cc 12 15 - replaced in fill8 obsolete MArrivalTime with MArrivalTimeCam. 16 - Updated display of MC data: removed MCerPhotCalc, and replaced 17 it by MExtractSignal+MMcCalibrationUpdate+MCalibrate. Now 18 MPedPhotCam is filled and all the camera display tabs are shown 19 correctly (most were not working for MC events since a while 20 ago). 21 22 * manalysis/MMcCalibrationUpdate.[h,cc] 23 - Added member variable Bool_t fOuterPixelsScaling, which is 24 kTRUE by default. If set to kFALSE, MCalibrationCam is filled 25 such that MCerPhotEvt will later be filled with the signal as it 26 is, not corrected for the (possibly) different gain of the outer 27 pixels electronic chain. This option was necessary to allow for 28 the change in the camera display (see above). 29 30 * manalysis/Makefile 31 - Added mcalib to list of include directories. 13 32 14 33 * macros/starmc.C -
trunk/MagicSoft/Mars/manalysis/MMcCalibrationUpdate.cc
r3265 r3344 81 81 82 82 fFillCalibrationCam = kTRUE; 83 83 fOuterPixelsGainScaling = kTRUE; 84 84 } 85 85 … … 209 209 210 210 // 211 // Set the ADC to photons conversion factor for outer pixels: 212 // 213 fADC2PhOuter = fADC2PhInner * (fAmplitude / fAmplitudeOuter); 211 // Set the ADC to photons conversion factor for outer pixels. 212 // One can choose not to apply the known (in MC) gain factor between 213 // inner and outer pixels, (fOuterPixelsGainScaling = kFALSE), 214 // which may be useful for display purposes. 215 // 216 217 if (fOuterPixelsGainScaling) 218 fADC2PhOuter = fADC2PhInner * (fAmplitude / fAmplitudeOuter); 219 else 220 fADC2PhOuter = fADC2PhInner; 221 214 222 215 223 const int num = fCalCam->GetSize();
Note:
See TracChangeset
for help on using the changeset viewer.