- Timestamp:
- 12/18/03 20:15:25 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r2721 r2722 15 15 * manalysis/MCalibrate.cc 16 16 - Corrected variable names: Convertion -> Conversion, and also 17 removed the "f" in fromof local (non-member) variables.17 removed the "f" at the beginning of local (non-member) variables. 18 18 - Added fGeomCam, fPedPhotCam (created in the PreProcess). 19 19 -
trunk/MagicSoft/Mars/manalysis/MMcCalibrationCalc.h
r2669 r2722 7 7 8 8 class MCalibrationCam; 9 class MPedPhotCam; 10 class MGeomCam; 9 11 class MMcFadcHeader; 10 12 class MExtractedSignalCam; … … 19 21 20 22 MCalibrationCam *fCalCam; 23 MPedPhotCam *fPedPhotCam; 24 MGeomCam *fGeom; 21 25 MMcFadcHeader *fHeaderFadc; 22 26 MExtractedSignalCam *fSignalCam; 23 27 24 Float_t fADC2Ph eInner;25 Float_t fADC2Ph eOuter;28 Float_t fADC2PhInner; // Conversion factor from ADC counts to photons 29 Float_t fADC2PhOuter; // for inner and outer pixels. 26 30 27 31 public: 28 32 MMcCalibrationCalc(const char *name=NULL, const char *title=NULL); 29 33 30 void SetADC2Ph eInner(Float_t x) {fADC2PheInner = x; }31 void SetADC2Ph eOuter(Float_t x) {fADC2PheOuter = x; }34 void SetADC2PhInner(Float_t x) {fADC2PhInner = x; } 35 void SetADC2PhOuter(Float_t x) {fADC2PhOuter = x; } 32 36 33 37 ClassDef(MMcCalibrationCalc, 0) // Task which obtains, for MC files, the pedestal mean and rms, and the calibration factor from ADC counts to photons.
Note:
See TracChangeset
for help on using the changeset viewer.