]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TRD/AliTRDdigit.cxx
updated macros (with new cut values) for (anti-)proton-(anti-)lambda and lambda-...
[u/mrichter/AliRoot.git] / TRD / AliTRDdigit.cxx
index 49d3e42d77307b86f45eb3527bdcccc2760617a2..371b39f9c4dbcf6256f49b0a9fe20a68740cef33 100644 (file)
 
 ClassImp(AliTRDdigit)
 
-//_____________________________________________________________________________
-  
-  // Marks a raw digit
-  const UInt_t AliTRDdigit::fgkRawDigit = 0x00000001; 
-
 //_____________________________________________________________________________
 AliTRDdigit::AliTRDdigit()
   :AliDigitNew()
@@ -46,7 +41,7 @@ AliTRDdigit::AliTRDdigit()
 }
 
 //_____________________________________________________________________________
-AliTRDdigit::AliTRDdigit(Bool_t isRaw, Int_t *digits, Int_t *amp)
+AliTRDdigit::AliTRDdigit(Int_t * const digits, const Int_t *amp)
   :AliDigitNew()
   ,fRow(0)
   ,fCol(0)
@@ -67,8 +62,6 @@ AliTRDdigit::AliTRDdigit(Bool_t isRaw, Int_t *digits, Int_t *amp)
   // Store the signal amplitude
   fAmp  = amp[0];
 
-  if (isRaw) SetBit(fgkRawDigit);
-
 }
 
 //_____________________________________________________________________________
@@ -79,14 +72,3 @@ AliTRDdigit::~AliTRDdigit()
   //
 
 }
-
-//_____________________________________________________________________________
-Int_t AliTRDdigit::DecodeAmp() const
-{
-  //
-  // Decodes the digit amplitude
-  //
-
-  return 0;
-
-}