]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TRD/AliTRDpixel.h
SetMaxAdc passes integer value consistent with AliMUONResponse and AliMUONChamber
[u/mrichter/AliRoot.git] / TRD / AliTRDpixel.h
index 63e132f56455ca7139bdb0a47ae4b2dfc5d6db36..ecb32b497229ed5f9c21f568ed5a8315dc88e3dd 100644 (file)
@@ -1,5 +1,9 @@
-#ifndef TRDpixel_h
-#define TRDpixel_h
+#ifndef ALITRDPIXEL_H
+#define ALITRDPIXEL_H
+/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
+ * See cxx source for full Copyright notice                               */
+
+/* $Id$ */
 
 #include <TObject.h>
 
@@ -11,13 +15,12 @@ const Int_t kTrackPixel = 3;
 
 class AliTRDpixel : public TObject {
 
-protected:
-  Float_t      fSignal;                    // Signal sum
-  Int_t        fTrack[kTrackPixel];        // Tracks contributing to this pixel
-
 public:
+
   AliTRDpixel();
-  virtual ~AliTRDpixel() {};
+  virtual ~AliTRDpixel();
+
+  virtual void    Copy(TObject &p);
 
   virtual void    SetSignal(Float_t signal)      { fSignal   = signal; };
   virtual void    SetTrack(Int_t i, Int_t track) { fTrack[i] = track;  };
@@ -25,7 +28,12 @@ public:
   virtual Float_t GetSignal()                    { return fSignal;     };
   virtual Int_t   GetTrack(Int_t i)              { return fTrack[i];   };
 
-  ClassDef(AliTRDpixel,1)
+protected:
+
+  Float_t      fSignal;                    // Signal sum
+  Int_t        fTrack[kTrackPixel];        // Tracks contributing to this pixel
+
+  ClassDef(AliTRDpixel,1)                  // Information for one detector pixel   
 
 };