Ignore:
Timestamp:
06/03/03 08:21:45 (21 years ago)
Author:
wittek
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mfileio
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mfileio/MCT1ReadPreProc.cc

    r2141 r2152  
    234234
    235235    // Boolean bdontusepix[iMAXNUMPIX]; // bdontusepix is set true if the pixel should not be used in image analysis, otherwise it is true;
     236
    236237    fBlinds->Clear();
    237238    *fLog << "Don't use pixels: ";
     
    245246
    246247    *fLog << "Exclude pixels: ";
    247 
    248248    // Boolean bexcludepix[iMAXNUMPIX];
    249249    for (int i=0; i<iMAXNUMPIX; i++)
     
    254254        }
    255255    *fLog << endl;
     256
     257    // save blind pixels for all events of this run
     258    fBlnd.Set(iMAXNUMPIX);
     259    for (int i=0; i<iMAXNUMPIX; i++)
     260    {
     261        if ( fBlinds->IsBlind(i) )
     262        {
     263          fBlnd[i] = 1;
     264        }
     265        else
     266        {
     267          fBlnd[i] = 0;
     268        }
     269    }
    256270
    257271    fBlinds->SetReadyToSave();
     
    881895    */
    882896
     897    // reset blind pixels for this event
     898    fBlinds->Clear();
     899    for (int i=0; i<iMAXNUMPIX; i++)
     900        if ( fBlnd[i]==1 )
     901        {
     902            fBlinds->SetPixelBlind(i);
     903        }
     904
     905    // reset pedestal RMS for this event
    883906    for (Int_t i=0; i<iMAXNUMPIX; i++)
    884907        (*fPedest)[i].SetMeanRms(fPedRMS[i]);
     
    11081131    struct eventrecord event;
    11091132
     1133
     1134
    11101135    // read the eventrecord from the file
    11111136    fIn->read((Byte_t*)&event, sizeof(struct eventrecord));
  • trunk/MagicSoft/Mars/mfileio/MCT1ReadPreProc.h

    r2132 r2152  
    44#ifndef ROOT_TArrayF
    55#include <TArrayF.h>
     6#endif
     7
     8#ifndef ROOT_TArrayI
     9#include <TArrayI.h>
    610#endif
    711
     
    5862
    5963    TArrayF fPedRMS;
     64    TArrayI fBlnd;
    6065
    6166    Bool_t OpenNextFile();
Note: See TracChangeset for help on using the changeset viewer.