]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TRD/AliTRDdigit.h
remove obselete clean QA macros command
[u/mrichter/AliRoot.git] / TRD / AliTRDdigit.h
index 0b6fd9b39817eab6c5cf0b9c6936f98e9e64fc6e..87ded130c8763bc9d1e96f2863a09fefe3419a08 100644 (file)
@@ -19,31 +19,22 @@ class AliTRDdigit : public AliDigitNew {
  public:
 
   AliTRDdigit();
-  AliTRDdigit(Bool_t isRaw, Int_t *digits, Int_t *amp);
+  AliTRDdigit(Int_t *digits, Int_t *amp);
   virtual ~AliTRDdigit();
 
-  static  UInt_t RawDigit()          { return fgkRawDigit; };
-
-          Int_t  GetAmp() const      { if (TestBit(fgkRawDigit))
-                                         return DecodeAmp();
-                                       else
-                                         return fAmp; };
           Int_t  GetDetector() const { return fId;   };
+
           Int_t  GetRow() const      { return fRow;  };
           Int_t  GetCol() const      { return fCol;  };
           Int_t  GetTime() const     { return fTime; };
 
-  virtual Int_t  DecodeAmp() const;
-
  protected:
 
-  static const UInt_t   fgkRawDigit; // Marks a raw digit
-
                UShort_t fRow;        // Pad row number
                UShort_t fCol;        // Pad col number
                UShort_t fTime;       // Time bucket
 
-  ClassDef(AliTRDdigit,2)            // Digit for the TRD
+  ClassDef(AliTRDdigit,3)            // Digit for the TRD
 
 };