]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ACORDE/AliACORDEdigit.h
Fixed Coding Conventions for class AliACORDEv1 (Mario RC)
[u/mrichter/AliRoot.git] / ACORDE / AliACORDEdigit.h
1 #ifndef ALIACORDEDIGIT_H
2 #define ALIACORDEDIGIT_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 /* $Id$ */
7
8 ////////////////////////////////////////////////////////////////////////////
9 //  ACORDE digit: Id
10 //
11 // The digits are made in FinishEvent() by summing all the hits in a 
12 // counter.
13 ////////////////////////////////////////////////////////////////////////////
14
15 #include "AliDigit.h"
16
17 class AliACORDEdigit: public AliDigit  {
18
19  public:
20   AliACORDEdigit();
21   AliACORDEdigit(Int_t* tracks, Int_t module, Float_t pulse_time);
22   virtual ~AliACORDEdigit();
23
24   Int_t GetModule() const { return fModule;}
25   Float_t GetTime() const { return fTime;}
26
27   
28 private:
29   Int_t fModule; // module producing the digit (1-60)
30   Float_t fTime; //  time of the start of the square pulse
31   
32   
33   ClassDef(AliACORDEdigit,1)  //Digit (Header) object for set : ACORDE (ACORDE)
34
35 };
36
37 typedef AliACORDEdigit AliCRTdigit; // for backward compatibility
38
39 #endif // ALIACORDEDIGIT_H