]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ACORDE/AliACORDEdigit.h
Update version number in order to avoid warnings from root
[u/mrichter/AliRoot.git] / ACORDE / AliACORDEdigit.h
CommitLineData
b86e74f5 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
b86e74f5 17class AliACORDEdigit: public AliDigit {
19f796ed 18
19 public:
b86e74f5 20 AliACORDEdigit();
19f796ed 21 AliACORDEdigit(Int_t* tracks, Int_t module, Float_t pulse_time);
b86e74f5 22 virtual ~AliACORDEdigit();
23
19f796ed 24 Int_t GetModule() const { return fModule;}
25 Float_t GetTime() const { return fTime;}
b86e74f5 26
19f796ed 27
b86e74f5 28private:
19f796ed 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
b86e74f5 35};
2814d35e 36
37typedef AliACORDEdigit AliCRTdigit; // for backward compatibility
38
b86e74f5 39#endif // ALIACORDEDIGIT_H