]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ITS/UPGRADE/AliITSRecPointU.h
Added version tailored for pp (AliTrackletTaskMultipp) with additional
[u/mrichter/AliRoot.git] / ITS / UPGRADE / AliITSRecPointU.h
1 #ifndef ALIITSRECPOINTU_H
2 #define ALIITSRECPOINTU_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6
7 /////////////////////////////////////////////////////////////////
8 //  Class to set the local coordinates in ITS Upgrade recpoint //
9 /////////////////////////////////////////////////////////////////
10
11 #include <AliITSRecPoint.h>
12
13
14 class AliITSRecPointU : public AliITSRecPoint {
15
16 public :
17   AliITSRecPointU();
18   virtual ~AliITSRecPointU() {}; // distructor
19   AliITSRecPointU(const AliITSRecPointU& pt);
20   AliITSRecPointU& operator=(const AliITSRecPointU &source);
21
22   void SetLocalCoord(Float_t x, Float_t z) {fXloc=x; fZloc=z;}
23   void SetModule(Int_t i){fModule=i;} 
24   Int_t GetModule(){return fModule;}
25
26  protected:
27   Int_t fModule;
28
29   ClassDef(AliITSRecPointU,1)  // AliITSRecPointU class
30
31 };
32 #endif