Ignore:
Timestamp:
02/11/04 16:35:05 (21 years ago)
Author:
gaug
Message:
*** empty log message ***
File:
1 edited

Legend:

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

    r3032 r3094  
    6060//
    6161MExtractSignal::MExtractSignal(const char *name, const char *title)
    62   : fSaturationLimit(fgSaturationLimit)
     62    : fSaturationLimit(fgSaturationLimit)
    6363{
    6464
     
    151151    fSignals->Clear();
    152152
    153     UInt_t sat=0;
     153    UInt_t  sat=0;
     154    TString satpixels;
    154155
    155156    while (pixel.Next())
     
    162163
    163164        if (satlo)
     165          {
    164166            sat++;
     167            satpixels += Form("%d%s",pixel.GetPixelId()," ");
     168          }
     169       
    165170
    166171        const Int_t pixid = pixel.GetPixelId();
     
    181186
    182187    if (sat)
    183         *fLog << warn << "WARNING - Lo Gain saturated in " << sat << " pixels." << endl;
     188      *fLog << warn << "WARNING - Lo Gain saturated in " << sat << " pixels: " << satpixels << endl;
    184189
    185190    fSignals->SetReadyToSave();
Note: See TracChangeset for help on using the changeset viewer.