]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/UPGRADE/AliITSRecPointU.h
Major changes in the code to comply with the following modifications :
[u/mrichter/AliRoot.git] / ITS / UPGRADE / AliITSRecPointU.h
CommitLineData
84ab81bf 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
14class AliITSRecPointU : public AliITSRecPoint {
15
16public :
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;}
0ac80088 23 void SetModule(Int_t i){fModule=i;}
24 Int_t GetModule(){return fModule;}
25
26 protected:
27 Int_t fModule;
84ab81bf 28
29 ClassDef(AliITSRecPointU,1) // AliITSRecPointU class
30
31};
32#endif