Changeset 3085 for trunk/MagicSoft
- Timestamp:
- 02/10/04 23:03:58 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mfilter/MFCosmics.cc
r3084 r3085 211 211 *fLog << " (with fMaxEmptyPixels = " << fMaxEmptyPixels << ")" << endl; 212 212 213 *fLog << " " << fCut[0] << " (" << (int)(fCut[0]*100/GetNumExecutions()) ; 213 *fLog << " " << setw(7) << fCut[0] << " (" << setw(3) ; 214 *fLog << (int)(fCut[0]*100/GetNumExecutions()) ; 214 215 *fLog << "%) Evts survived the cosmics rejection!" << endl; 215 216 *fLog << endl; -
trunk/MagicSoft/Mars/mjobs/MJCalibration.cc
r3077 r3085 55 55 #include "MExtractSignal2.h" 56 56 #include "MCalibrationCalc.h" 57 #include "MFCosmics.h" 58 #include "MContinue.h" 57 59 58 60 #include "MJCalibration.h" … … 490 492 MCalibrationCalc calcalc; 491 493 494 // 495 // Apply a filter against cosmics 496 // (will have to be needed in the future 497 // when the calibration hardware-trigger is working) 498 // 499 MFCosmics cosmics; 500 MContinue cont(&cosmics); 501 492 502 // 493 503 // As long, as we don't have digital modules, … … 501 511 tlist.AddToList(&merge); 502 512 tlist.AddToList(&extract); 513 tlist.AddToList(&cont); 503 514 tlist.AddToList(&calcalc); 504 515
Note:
See TracChangeset
for help on using the changeset viewer.