-
Notifications
You must be signed in to change notification settings - Fork 0
/
AliAlgSensTPC.h
41 lines (30 loc) · 943 Bytes
/
AliAlgSensTPC.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#ifndef ALIALGSENSTPC_H
#define ALIALGSENSTPC_H
#include "AliAlgSens.h"
class TObjArray;
class AliTrackPointArray;
class AliESDtrack;
class AliAlgPoint;
/*--------------------------------------------------------
TPC sensor (chamber)
-------------------------------------------------------*/
// Author: [email protected]
class AliAlgSensTPC : public AliAlgSens
{
public:
AliAlgSensTPC(const char* name=0, Int_t vid=0, Int_t iid=0, Int_t isec=0);
virtual ~AliAlgSensTPC();
//
Int_t GetSector() const {return fSector;}
void SetSector(UInt_t sc) {fSector = (UChar_t)sc;}
//
virtual AliAlgPoint* TrackPoint2AlgPoint(int pntId, const AliTrackPointArray* trpArr, const AliESDtrack* t);
// virtual void SetTrackingFrame();
virtual void PrepareMatrixT2L();
//
protected:
//
UChar_t fSector; // sector ID
ClassDef(AliAlgSensTPC,1)
};
#endif