Ignore:
Timestamp:
12/06/05 16:12:48 (19 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mcamera/MCameraTH.h

    r7445 r7446  
    99#endif
    1010
    11 #ifndef ROOT_TArrayS
    12 #include <TArrayS.h>
     11#ifndef ROOT_TArrayC
     12#include <TArrayC.h>
    1313#endif
    1414
     
    1717    friend class MReportCC;
    1818private:
    19     TArrayS fTH; // [au] discriminator thresholds
     19    TArrayC fTH; // [au] discriminator thresholds
    2020
    2121public:
    2222    MCameraTH(Int_t size=577, const char *name=NULL, const char *title=NULL);
    2323
    24     UShort_t operator[](Int_t i) { return (UShort_t)fTH[i]; }
     24    Byte_t operator[](Int_t i) { return fTH[i]; }
    2525
    26     UShort_t GetMin() const;
    27     UShort_t GetMax() const;
     26    Byte_t GetMin() const;
     27    Byte_t GetMax() const;
    2828
    2929    void Print(Option_t *opt=NULL) const;
Note: See TracChangeset for help on using the changeset viewer.