Changeset 3943 for trunk/MagicSoft/Mars/mjobs
- Timestamp:
- 05/03/04 15:22:08 (21 years ago)
- Location:
- trunk/MagicSoft/Mars/mjobs
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mjobs/MJCalibration.cc
r3925 r3943 42 42 // 43 43 // Different arrival time extractors can be set with the command SetTimeExtractor() 44 // Only extractors deriving from M TimeExtractorcan be set, default is MExtractTimeSpline44 // Only extractors deriving from MExtractTime can be set, default is MExtractTimeSpline 45 45 // 46 46 // At the end of the eventloop, plots and results are displayed, depending on … … 120 120 #include "MBadPixelsMerge.h" 121 121 #include "MBadPixelsCam.h" 122 #include "M TimeExtractor.h"122 #include "MExtractTime.h" 123 123 #include "MExtractor.h" 124 124 #include "MExtractPINDiode.h" … … 768 768 // 5) MExtractPINDiode 769 769 // 6) MExtractBlindPixel 770 // 7) M TimeExtractor(only if flag fRelTimes is chosen)770 // 7) MExtractTime (only if flag fRelTimes is chosen) 771 771 // 8) MContinue(MFCosmics) 772 772 // 9) MFillH("MHCalibrationChargePINDiode", "MExtractedSignalPINDiode") … … 828 828 MCalibrationChargePINDiode pindiode; 829 829 MCalibrationChargeBlindPix blindpix; 830 830 831 831 plist.AddToList(&pedcam); 832 832 plist.AddToList(&fBadPixels); … … 893 893 { 894 894 *fLog << warn << GetDescriptor() 895 << ": No extractor has been chosen, take default MTimeExtractSp ine " << endl;895 << ": No extractor has been chosen, take default MTimeExtractSpline " << endl; 896 896 tlist.AddToList(×pline); 897 897 } … … 925 925 926 926 tlist.PrintStatistics(); 927 928 MHCalibrationChargeCam *fllcm = (MHCalibrationChargeCam*)plist.FindObject("MHCalibrationChargeCam"); 929 (*fllcm)[100].DrawClone(); 927 930 928 931 DisplayResult(plist); -
trunk/MagicSoft/Mars/mjobs/MJCalibration.h
r3913 r3943 22 22 class MPedestalCam; 23 23 class MExtractor; 24 class M TimeExtractor;24 class MExtractTime; 25 25 class MJCalibration : public MParContainer, public MGCamDisplays 26 26 { … … 33 33 MRunIter *fRuns; // Calibration files 34 34 MExtractor *fExtractor; // Signal extractor 35 M TimeExtractor*fTimeExtractor; // Arrival Time extractor35 MExtractTime *fTimeExtractor; // Arrival Time extractor 36 36 37 37 MBadPixelsCam fBadPixels; // Bad Pixels cam, can be set from previous runs … … 70 70 void SetBadPixels(const MBadPixelsCam &bad) { bad.Copy(fBadPixels); } 71 71 void SetExtractor(MExtractor* ext) { fExtractor = ext; } 72 void SetTimeExtractor(M TimeExtractor* ext) { fTimeExtractor = ext; }72 void SetTimeExtractor(MExtractTime* ext) { fTimeExtractor = ext; } 73 73 void SetQECam (const MCalibrationQECam &qe) { qe.Copy(fQECam); } 74 74 void SetColor (const MCalibrationCam::PulserColor_t color) { fColor = color; }
Note:
See TracChangeset
for help on using the changeset viewer.