]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ACORDE/AliACORDEdigit.h
This commit was generated by cvs2svn to compensate for changes in r15989,
[u/mrichter/AliRoot.git] / ACORDE / AliACORDEdigit.h
diff --git a/ACORDE/AliACORDEdigit.h b/ACORDE/AliACORDEdigit.h
new file mode 100644 (file)
index 0000000..9f4c1e3
--- /dev/null
@@ -0,0 +1,42 @@
+#ifndef ALIACORDEDIGIT_H
+#define ALIACORDEDIGIT_H
+/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
+ * See cxx source for full Copyright notice                               */
+
+/* $Id$ */
+
+////////////////////////////////////////////////////////////////////////////
+//  ACORDE digit: Id
+//
+// The digits are made in FinishEvent() by summing all the hits in a 
+// counter.
+////////////////////////////////////////////////////////////////////////////
+
+#include "AliDigit.h"
+
+class TArrayF;
+class TArrayI;
+
+class AliACORDEdigit: public AliDigit  {
+public:
+  AliACORDEdigit();
+  AliACORDEdigit(Int_t* tracks, Int_t* vol, Float_t* digit);
+  AliACORDEdigit(const AliACORDEdigit& digit);
+  virtual ~AliACORDEdigit();
+
+  AliACORDEdigit& operator= (const AliACORDEdigit& digit);
+
+protected:
+  Int_t     fSector;  // number of sector
+  Int_t     fPlate;   // number of plate
+  Int_t     fStrip;   // number of strip
+  Int_t     fPadx;    // number of pad along x
+  Int_t     fPadz;    // number of pad along z
+  Int_t     fNDigits;  // dimension of fTdc array
+  TArrayF*  fTdc;     // tdc values for sdigit
+  TArrayF*  fAdc;     // adc values for sdigit
+
+private:
+    ClassDef(AliACORDEdigit,1)  //Digit (Header) object for set : ACORDE (ACORDE)
+};
+#endif // ALIACORDEDIGIT_H