]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITStrack.h
Removed dependancy on structure AliITSeomS and replaced it with class
[u/mrichter/AliRoot.git] / ITS / AliITStrack.h
CommitLineData
e8189707 1#ifndef ITSTRACK_H
2#define ITSTRACK_H
3
4
5////////////////////////////////////////////////////////////////////////
6// Track class for set: ITS //
7////////////////////////////////////////////////////////////////////////
8
9#include <TObject.h>
10
11
12
13//_____________________________________________________________________________
14class AliITStrack : public TObject {
15
16public:
17
18 AliITStrack() {}
19 AliITStrack(const AliITStrack& t) {}
20 virtual ~AliITStrack() {}
21
22
23 Bool_t IsSortable() const {return kTRUE;}
24
25 ClassDef(AliITStrack,1) // ITS reconstructed tracks
26};
27
28#endif