]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/AliTRDtrackHits.h
applying to the new interface
[u/mrichter/AliRoot.git] / TRD / AliTRDtrackHits.h
CommitLineData
92af1877 1#ifndef ALITRDTRACKHITS_H
2#define ALITRDTRACKHITS_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
3bc9d03e 6/* $Id$ */
7
8////////////////////////////////////////////////////////////////////////////
9// //
10// Manager class for TRD hits //
11// //
12////////////////////////////////////////////////////////////////////////////
92af1877 13
14#include "../TPC/AliTPCTrackHitsV2.h"
3bc9d03e 15
92af1877 16class AliTRDhit;
17
18class AliTRDtrackHits : public AliTPCTrackHitsV2 {
92af1877 19
3bc9d03e 20 public:
21
22 AliTRDtrackHits() { };
23 virtual ~AliTRDtrackHits() { };
24
25 void AddHitTRD(Int_t volumeID, Int_t trackID, Double_t x
26 , Double_t y, Double_t z,Int_t q, Bool_t inDrift);
27 Bool_t First();
28 Bool_t Next();
29
30 public:
31
32 ClassDef(AliTRDtrackHits,1) // Manager class for TRD hits
33
34};
92af1877 35
3bc9d03e 36#endif