Changeset 6191 for trunk/MagicSoft/Mars/mjobs/MJCalibrateSignal.cc
- Timestamp:
- 02/02/05 10:12:41 (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mjobs/MJCalibrateSignal.cc
r6182 r6191 114 114 // Default constructor. 115 115 // 116 // Sets fRuns to 0, fExtractor to NULL, 116 // Sets: 117 // - fIsInterlaced to kTRUE 118 // - fIsRelTimesUpdate to kFALSE 119 // - fIsHiLoCalibration to kFALSE 117 120 // 118 121 MJCalibrateSignal::MJCalibrateSignal(const char *name, const char *title) 119 : fRuns(0), fIsInterlaced(kTRUE), fIsRelTimesUpdate(kFALSE), fIsHiLoCalibration(kFALSE), 120 fDataFlag(0) 122 : fIsInterlaced(kTRUE), fIsRelTimesUpdate(kFALSE), fIsHiLoCalibration(kFALSE) 121 123 { 122 124 fName = name ? name : "MJCalibrateSignal"; 123 125 fTitle = title ? title : "Tool to calibrate data"; 124 126 125 SetUseRootData();126 127 } 127 128 … … 399 400 400 401 MFTriggerPattern ftp; 401 ftp.RequireCalibration();402 //ftp.DenyCalibration();403 //ftp.DenyPedestal();402 // ftp.RequireCalibration(); 403 ftp.DenyCalibration(); 404 ftp.DenyPedestal(); 404 405 // ftp.DenyPinDiode(); 405 //ftp.SetInverted();406 ftp.SetInverted(); 406 407 MContinue conttp(&ftp, "ContTrigPattern"); 407 408 // --> tlist2
Note:
See TracChangeset
for help on using the changeset viewer.