Changeset 7445 for trunk


Ignore:
Timestamp:
12/06/05 16:08:41 (19 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mcamera
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mcamera/MCameraTD.cc

    r7444 r7445  
    6767// Return the discrimintaor delays
    6868//
    69 Byte_t MCameraTD::GetMin() const
     69UShort_t MCameraTD::GetMin() const
    7070{
    71     Byte_t val = 0xff;
     71    UShort_t val = (UShort_t)-1;
    7272    for (int i=0; i<fTD.GetSize(); i++)
    7373        val = TMath::Min(val, fTD[i]);
     
    7979// Return the discrimintaor delays
    8080//
    81 Byte_t MCameraTD::GetMax() const
     81UShort_t MCameraTD::GetMax() const
    8282{
    83     Byte_t val = 0;
     83    UShort_t val = 0;
    8484    for (int i=0; i<fTD.GetSize(); i++)
    8585        val = TMath::Max(val, fTD[i]);
  • trunk/MagicSoft/Mars/mcamera/MCameraTD.h

    r7444 r7445  
    99#endif
    1010
    11 #ifndef ROOT_TArrayC
    12 #include <TArrayC.h>
     11#ifndef ROOT_TArrayS
     12#include <TArrayS.h>
    1313#endif
    1414
     
    1717    friend class MReportCC;
    1818private:
    19     TArrayC fTD; // [au] discriminator delays
     19    TArrayS fTD; // [au] discriminator delays
    2020
    2121public:
    2222    MCameraTD(Int_t size=577, const char *name=NULL, const char *title=NULL);
    2323
    24     Byte_t operator[](Int_t i) { return fTD[i]; }
     24    UShort_t operator[](Int_t i) { return (UShort_t)fTD[i]; }
    2525
    26     Byte_t GetMin() const;
    27     Byte_t GetMax() const;
     26    UShort_t GetMin() const;
     27    UShort_t GetMax() const;
    2828
    2929    void Print(Option_t *opt=NULL) const;
  • trunk/MagicSoft/Mars/mcamera/MCameraTH.cc

    r7444 r7445  
    6767// Return the discriminator thresholds
    6868//
    69 Byte_t MCameraTH::GetMin() const
     69UShort_t MCameraTH::GetMin() const
    7070{
    71     Byte_t val = 0xff;
     71    UShort_t val = (UShort_t)-1;
    7272    for (int i=0; i<fTH.GetSize(); i++)
    7373        val = TMath::Min(val, fTH[i]);
     
    7979// Return the discriminator thresholds
    8080//
    81 Byte_t MCameraTH::GetMax() const
     81UShort_t MCameraTH::GetMax() const
    8282{
    83     Byte_t val = 0;
     83    UShort_t val = 0;
    8484    for (int i=0; i<fTH.GetSize(); i++)
    8585        val = TMath::Max(val, fTH[i]);
  • trunk/MagicSoft/Mars/mcamera/MCameraTH.h

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