Changeset 3085 for trunk/MagicSoft/Mars


Ignore:
Timestamp:
02/10/04 23:03:58 (21 years ago)
Author:
gaug
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mfilter/MFCosmics.cc

    r3084 r3085  
    211211  *fLog << " (with fMaxEmptyPixels = " << fMaxEmptyPixels << ")" << endl;
    212212
    213   *fLog << " " << fCut[0] << " (" << (int)(fCut[0]*100/GetNumExecutions()) ;
     213  *fLog << " " << setw(7) << fCut[0] << " (" << setw(3) ;
     214  *fLog << (int)(fCut[0]*100/GetNumExecutions()) ;
    214215  *fLog << "%) Evts survived the cosmics rejection!" << endl;
    215216  *fLog << endl;
  • trunk/MagicSoft/Mars/mjobs/MJCalibration.cc

    r3077 r3085  
    5555#include "MExtractSignal2.h"
    5656#include "MCalibrationCalc.h"
     57#include "MFCosmics.h"
     58#include "MContinue.h"
    5759
    5860#include "MJCalibration.h"
     
    490492    MCalibrationCalc calcalc;
    491493
     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
    492502    //
    493503    // As long, as we don't have digital modules,
     
    501511    tlist.AddToList(&merge);
    502512    tlist.AddToList(&extract);
     513    tlist.AddToList(&cont);
    503514    tlist.AddToList(&calcalc);
    504515
Note: See TracChangeset for help on using the changeset viewer.