-
Notifications
You must be signed in to change notification settings - Fork 0
/
AliAlgSensTOF.h
40 lines (31 loc) · 936 Bytes
/
AliAlgSensTOF.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
#ifndef ALIALGSENSTOF_H
#define ALIALGSENSTOF_H
#include "AliAlgSens.h"
class AliTrackPointArray;
class AliESDtrack;
class AliAlgPoint;
class TObjArray;
/*--------------------------------------------------------
TOF sensor
-------------------------------------------------------*/
// Author: [email protected]
class AliAlgSensTOF : public AliAlgSens
{
public:
AliAlgSensTOF(const char* name=0, Int_t vid=0, Int_t iid=0, Int_t isec=0);
virtual ~AliAlgSensTOF();
//
virtual AliAlgPoint* TrackPoint2AlgPoint(int pntId, const AliTrackPointArray* trpArr, const AliESDtrack* t);
// virtual void SetTrackingFrame();
virtual void PrepareMatrixT2L();
//
Int_t GetSector() const {return fSector;}
void SetSector(UInt_t sc) {fSector = (UChar_t)sc;}
//
protected:
//
UChar_t fSector; // sector ID
//
ClassDef(AliAlgSensTOF,1)
};
#endif