Ignore:
Timestamp:
06/30/08 10:37:00 (16 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mbadpixels/MBadPixelsPix.h

    r8580 r8988  
    115115    }
    116116
     117    static TString GetUnsuitableName(Int_t lvl)
     118    {
     119        switch (lvl)
     120        {
     121        case  1: return "Signal smaller 4.5 Pedestal RMS";
     122        case  2: return "Low Gain Saturation";
     123        case  3: return "High-Gain Histogram Overflow";
     124        case  4: return "Low-Gain Histogram Overflow";
     125        case  5: return "Presumably dead from Ped. Rms";
     126        case  6: return "Deviating Number of Photo-electrons";
     127        case  7: return "Deviation from median abs.arr-time rms";
     128        case  8: return "Deviation from median rel.arr-time rms";
     129        case  9: return "Too many Low-Gain Blackout Events";
     130        case 10: return "Previously Excluded";
     131        default: return "";
     132        }
     133    }
     134
     135    static Int_t GetNumUnsuitable() { return 10; }
     136
    117137    Int_t  GetUnreliableCalLevel() const   {
    118138      if (!IsUnreliable() || IsUnsuitable())      return 0;
     
    128148    }
    129149
     150    static TString GetUnreliableName(Int_t lvl)
     151    {
     152        switch (lvl)
     153        {
     154        case 1: return "Signal Sigma smaller Pedestal RMS";
     155        case 2: return "High Gain Signals could not be fitted";
     156        case 3: return "Low  Gain Signals could not be fitted";
     157        case 4: return "Relative Arr. Times could not be fitted";
     158        case 5: return "High Gain Signals Oscillation";
     159        case 6: return "Low  Gain Signals Oscillation";
     160        case 7: return "Relative Arr. Times Oscillation";
     161        case 8: return "Deviating global F-Factor";
     162        default: return "";
     163        }
     164    }
     165
     166    static Int_t GetNumUnreliable() { return 8; }
     167
    130168    void Merge(const MBadPixelsPix &pix);
    131169
Note: See TracChangeset for help on using the changeset viewer.