]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TPC/AliTPCvtpr.h
Selectiv readout and writing to FXS (oystein)
[u/mrichter/AliRoot.git] / TPC / AliTPCvtpr.h
CommitLineData
9a1e27fe 1#ifndef ALITPCVTPR_H
2#define ALITPCVTPR_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/* $Id: AliTPCclusterKr.h,v 1.8 2007/12/31 16:07:15 matyja Exp $ */
7
8//-------------------------------------------------------
9// TPC cordinate Class
10//
11// Origin: Adam Matyja, INP PAN, adam.matyja@ifj.edu.pl
12//-------------------------------------------------------
13
14#include "TObject.h"
15
16//_____________________________________________________________________________
17class AliTPCvtpr: public TObject{
18public:
19 AliTPCvtpr();
20 ~AliTPCvtpr();
21
22 AliTPCvtpr(Short_t max,Short_t nt,Short_t np,Short_t nr);
23 AliTPCvtpr(const AliTPCvtpr & param);
24 AliTPCvtpr & operator = (const AliTPCvtpr & param);
25
26
27 void SetAdc(Short_t q){fAdc=q;}
28 void SetTime(Short_t q){fTime=q;}
29 void SetPad(Short_t q){fPad=q;}
30 void SetRow(Short_t q){fRow=q;}
88f51054 31 void SetSector(Short_t sector){fSector=sector;}
9a1e27fe 32
33
34 Short_t GetAdc(){return fAdc;}
35 Short_t GetTime(){return fTime;}
36 Short_t GetPad(){return fPad;}
37 Short_t GetRow(){return fRow;}
38
39
40protected:
41 Short_t fAdc;
42 Short_t fTime;
43 Short_t fPad;
44 Short_t fRow;
88f51054 45 Short_t fSector;
9a1e27fe 46
47private:
48
88f51054 49 ClassDef(AliTPCvtpr,2) // TPC coordinate class
9a1e27fe 50};
51
52#endif
53
54