Ignore:
Timestamp:
03/11/04 15:39:57 (21 years ago)
Author:
gaug
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mbadpixels
Files:
2 edited

Legend:

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

    r3470 r3472  
    160160void MBadPixelsCam::Print(Option_t *o) const
    161161{
     162
    162163    *fLog << all << GetDescriptor() << ":" << endl;
    163     fArray->ForEach(TObject, Print)();
     164   
     165    *fLog << all << "Pixels without problems:" << endl;
     166    *fLog << all << endl;
     167
     168    Int_t count = 0;
     169
     170    for (Int_t i=0; i<GetSize(); i++)
     171      {
     172        if ((*this)[i].IsSuitableRun())
     173          {
     174            *fLog << i << " ";
     175            count ++;
     176          }
     177
     178        if (count == 0)
     179          continue;
     180
     181        if (!(count % 25))
     182          *fLog << endl;
     183      }
     184    *fLog << endl;
     185    *fLog << all << count << " normal pixels :-))" << endl;   
     186    *fLog << endl;
     187    count = 0;
     188
     189
     190    *fLog << all << "Pixels unsuited for the whole run:" << endl;
     191    *fLog << all << endl;
     192
     193    for (Int_t i=0; i<GetSize(); i++)
     194      {
     195        if ((*this)[i].IsUnsuitableRun())
     196          {
     197            *fLog << i << " ";
     198            count ++;
     199          }
     200
     201        if (count == 0)
     202          continue;
     203
     204        if (!(count % 25))
     205          *fLog << endl;
     206      }
     207    *fLog << endl;
     208    *fLog << all << count << " unsuited pixels :-(" << endl;   
     209    *fLog << endl;
     210
     211    count = 0;
     212
     213    *fLog << all << "Pixels unreliable for the whole run:" << endl;
     214    *fLog << all << endl;
     215
     216    for (Int_t i=0; i<GetSize(); i++)
     217      {
     218        if ((*this)[i].IsUnreliableRun())
     219          {
     220            *fLog << i << " ";
     221            count ++;
     222          }
     223       
     224        if (count == 0)
     225          continue;
     226
     227        if (!(count % 25))
     228          *fLog << endl;
     229      }
     230    *fLog << endl;
     231    *fLog << all << count << " unreliable pixels :-(" << endl;   
     232    *fLog << endl;
    164233}
    165234
  • trunk/MagicSoft/Mars/mbadpixels/MBadPixelsPix.cc

    r3461 r3472  
    8888}
    8989
     90
    9091/****************************************************************************
    9192           This is a collection of possible defects for later use
Note: See TracChangeset for help on using the changeset viewer.