Ignore:
Timestamp:
03/28/03 08:50:05 (22 years ago)
Author:
wittek
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/manalysis/MSelStandard.cc

    r1809 r1872  
    139139    Int_t fNumCorePixels   = fHil->GetNumCorePixels();
    140140
    141     if ( fNumUsedPixels >= 92  ||  fNumCorePixels < 4 )
     141    if ( fNumUsedPixels >= 92  ||  fNumCorePixels <= 4 )
    142142    {
    143143      //*fLog << "MSelStandard::Process; fSize, fDist, fNumUsedPixels, fNumCorePixels = "
     
    147147    }   
    148148
    149     else if ( fSize <= 60.0         ||  fDist< 0.4           ||  fDist > 1.1 )
     149    else if ( fSize <= 60.0         ||  fDist< 0.4           ||  fDist > 1.05 )
    150150    {
    151151      //*fLog << "MSelStandard::Process; fSize, fDist, fNumUsedPixels, fNumCorePixels = "
     
    180180    *fLog << GetDescriptor() << " execution statistics:" << endl;
    181181    *fLog << dec << setfill(' ');
    182     *fLog << " " << setw(7) << fErrors[1] << " (" << setw(3) << (int)(fErrors[1]*100/GetNumExecutions()) << "%) Evts skipped due to: Requirements on no.of used or core pxels not fullfilled" << endl;
    183 
    184     *fLog << " " << setw(7) << fErrors[2] << " (" << setw(3) << (int)(fErrors[2]*100/GetNumExecutions()) << "%) Evts skipped due to: Requirements on SIZE or DIST not fullfilled" << endl;
    185 
    186     *fLog << " " << setw(7) << fErrors[3] << " (" << setw(3) << (int)(fErrors[3]*100/GetNumExecutions()) << "%) Evts skipped due to: Length or Width is <= 0" << endl;
    187 
    188     *fLog << " " << fErrors[0] << " (" << (int)(fErrors[0]*100/GetNumExecutions()) << "%) Evts survived Standard selections!" << endl;
     182    *fLog << " " << setw(7) << fErrors[1] << " (" << setw(3)
     183          << (int)(fErrors[1]*100/GetNumExecutions())
     184          << "%) Evts skipped due to: Requirements on no.of used or core pxels not fullfilled" << endl;
     185
     186    *fLog << " " << setw(7) << fErrors[2] << " (" << setw(3)
     187          << (int)(fErrors[2]*100/GetNumExecutions())
     188          << "%) Evts skipped due to: Requirements on SIZE or DIST not fullfilled" << endl;
     189
     190    *fLog << " " << setw(7) << fErrors[3] << " (" << setw(3)
     191          << (int)(fErrors[3]*100/GetNumExecutions())
     192          << "%) Evts skipped due to: Length or Width is <= 0" << endl;
     193
     194    *fLog << " " << fErrors[0] << " ("
     195          << (int)(fErrors[0]*100/GetNumExecutions())
     196          << "%) Evts survived Standard selections!" << endl;
    189197    *fLog << endl;
    190198
Note: See TracChangeset for help on using the changeset viewer.