Changeset 1872 for trunk/MagicSoft/Mars/manalysis/MSelStandard.cc
- Timestamp:
- 03/28/03 08:50:05 (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/manalysis/MSelStandard.cc
r1809 r1872 139 139 Int_t fNumCorePixels = fHil->GetNumCorePixels(); 140 140 141 if ( fNumUsedPixels >= 92 || fNumCorePixels < 4 )141 if ( fNumUsedPixels >= 92 || fNumCorePixels <= 4 ) 142 142 { 143 143 //*fLog << "MSelStandard::Process; fSize, fDist, fNumUsedPixels, fNumCorePixels = " … … 147 147 } 148 148 149 else if ( fSize <= 60.0 || fDist< 0.4 || fDist > 1. 1)149 else if ( fSize <= 60.0 || fDist< 0.4 || fDist > 1.05 ) 150 150 { 151 151 //*fLog << "MSelStandard::Process; fSize, fDist, fNumUsedPixels, fNumCorePixels = " … … 180 180 *fLog << GetDescriptor() << " execution statistics:" << endl; 181 181 *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; 189 197 *fLog << endl; 190 198
Note:
See TracChangeset
for help on using the changeset viewer.