]> git.uio.no Git - u/mrichter/AliRoot.git/blame - CRT/AliCRTdigit.h
Using getter instead of global constant
[u/mrichter/AliRoot.git] / CRT / AliCRTdigit.h
CommitLineData
fb7a1f55 1#ifndef ALICRTDIGIT_H
2#define ALICRTDIGIT_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
fb7a1f55 8#include "AliDigit.h"
fb7a1f55 9
387cc25e 10class TArrayF;
11class TArrayI;
fb7a1f55 12
387cc25e 13class AliCRTdigit: public AliDigit {
fa15ea42 14public:
387cc25e 15 AliCRTdigit();
16 AliCRTdigit(Int_t tracknum, Int_t* vol, Float_t* digit);
17 AliCRTdigit(const AliCRTdigit& digit);
18 virtual ~AliCRTdigit();
19
20 AliCRTdigit& operator= (const AliCRTdigit& digit);
fb7a1f55 21
22protected:
23 Int_t fSector; // number of sector
24 Int_t fPlate; // number of plate
25 Int_t fStrip; // number of strip
26 Int_t fPadx; // number of pad along x
27 Int_t fPadz; // number of pad along z
28 Int_t fNDigits; // dimension of fTdc array
387cc25e 29 TArrayF* fTdc; // tdc values for sdigit
30 TArrayF* fAdc; // adc values for sdigit
31 TArrayI* fTracks; // contributing tracks, kMAXDIGITS entries per
fb7a1f55 32 // 1 tdc value
fb7a1f55 33private:
34 ClassDef(AliCRTdigit,1) //Digit (Header) object for set : CRT (ACORDE)
35};
36#endif // ALICRTDIGIT_H