Ignore:
Timestamp:
01/23/05 16:09:15 (20 years ago)
Author:
mazin
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mbadpixels/MBadPixelsCam.cc

    r5517 r5948  
    339339   
    340340  Int_t count = 0;
    341  
     341  Int_t full  = 0;
     342
    342343  for (Int_t i=0; i<GetSize(); i++)
    343344    {
     
    345346        {
    346347          *fLog << i << " ";
     348          full++;
    347349          count ++;
    348350        }
    349351     
    350352      if (count == 0)
    351         continue;
    352      
    353       if (!(count % 25))
    354         *fLog << endl;
    355     }
     353        continue;
     354     
     355      if (!(full % 25))
     356        {
     357          full = 0;
     358          *fLog << endl;
     359        }
     360    }
     361  *fLog << endl;
    356362  *fLog << count << " normal pixels" << endl;
    357363  *fLog << endl;
     
    359365  *fLog << "Pixels unsuited for the whole run:" << endl;
    360366 
     367  full  = 0;
     368  count = 0;
    361369  for (Int_t i=0; i<GetSize(); i++)
    362370    {
     
    364372        {
    365373          *fLog << i << " ";
     374          full++;
    366375          count ++;
    367376        }
     
    370379        continue;
    371380     
    372       if (!(count % 25))
    373         *fLog << endl;
    374     }
    375 
    376   *fLog << count << " unsuited pixels :-(" << endl;
    377   *fLog << endl;
    378  
     381      if (!(full % 25))
     382        {
     383          full = 0;
     384          *fLog << endl;
     385        }
     386    }
     387
     388  *fLog << endl;
     389  *fLog << count << " unsuited pixels per run :-(" << endl;
     390  *fLog << endl;
     391 
     392  *fLog << "Pixels unsuited for this event:" << endl;
     393
     394  full  = 0;
     395  count = 0;
     396  for (Int_t i=0; i<GetSize(); i++)
     397    {
     398      if ((*this)[i].IsUnsuitable(MBadPixelsPix::kUnsuitableEvt))
     399        {
     400          *fLog << i << " ";
     401          full++;
     402          count ++;
     403        }
     404     
     405      if (count == 0)
     406        continue;
     407     
     408      if (!(full % 25))
     409        {
     410          full  = 0;
     411          *fLog << endl;
     412        }
     413    }
     414
     415  *fLog << endl;
     416  *fLog << count << " unsuited pixels per event :-(" << endl;
     417  *fLog << endl;
     418 
     419  full  = 0;
    379420  count = 0;
    380421 
     
    386427        {
    387428          *fLog << i << " ";
     429          full++;
    388430          count ++;
    389431        }
     
    392434        continue;
    393435     
    394       if (!(count % 25))
    395         *fLog << endl;
    396     }
    397  
     436      if (!(full % 25))
     437        {
     438          full  = 0;
     439          *fLog << endl;
     440        }
     441    }
     442 
     443  *fLog << endl;
    398444  *fLog << count << " unreliable pixels :-(" << endl;
    399445  *fLog << endl;
     
    433479  *fLog << "Pixels with " << text << ": " << endl;
    434480  UInt_t count = 0;
     481  UInt_t full  = 0;
    435482
    436483  for (Int_t i=0; i<GetSize(); i++)
     
    439486        {
    440487          *fLog << i << " ";
     488          full++;
    441489          count++;
    442490        }
     
    445493        continue;
    446494     
    447       if (!(count % 25))
    448         *fLog << endl;
    449     }
    450  
     495      if (!(full % 25))
     496        {
     497          full  = 0;
     498          *fLog << endl;
     499        }
     500    }
     501 
     502  *fLog << endl;
    451503  *fLog << Form("%3i",count) << " pixels in total " << endl;
    452   *fLog << endl;
    453504}
    454505
Note: See TracChangeset for help on using the changeset viewer.