]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PMD/AliPMDtracker.h
Introduction of the TPC ALTRO mapping files.
[u/mrichter/AliRoot.git] / PMD / AliPMDtracker.h
CommitLineData
7dcaf913 1#ifndef ALIPMDTRACKER_H
2#define ALIPMDTRACKER_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5//-----------------------------------------------------//
6// //
7// Date : August 05 2003 //
8// This reads the file PMD.digits.root(TreeD), //
9// calls the Clustering algorithm and stores the //
10// clustering output in PMD.RecPoints.root(TreeR) //
11// //
12//-----------------------------------------------------//
13
14class TClonesArray;
7dcaf913 15class TObjArray;
16class TTree;
7dcaf913 17
18class AliPMDcluster;
19class AliPMDclupid;
20class AliPMDrecpoint1;
21class AliPMDUtility;
22class AliPMDDiscriminator;
23
7dcaf913 24class AliESD;
25
ecee2a1a 26class AliPMDtracker:public TObject
7dcaf913 27{
28
29 public:
30
31 AliPMDtracker();
32 virtual ~AliPMDtracker();
33
34 void LoadClusters(TTree *treein);
35 void Clusters2Tracks(AliESD *event);
36 void SetVertex(Double_t vtx[3], Double_t evtx[3]);
7dcaf913 37 void ResetClusters();
38
39 protected:
40
41 TTree *fTreeR; // Reconstructed points
42 TClonesArray *fRecpoints; // List of reconstructed points
43 TObjArray *fPMDcontin;
44 TObjArray *fPMDcontout;
45
7dcaf913 46 AliPMDUtility *fPMDutil;
47 AliPMDrecpoint1 *fPMDrecpoint;
26f1ae17 48 AliPMDrecpoint1 *fPMDclin;
7dcaf913 49 AliPMDclupid *fPMDclout;
50
7dcaf913 51 Double_t fXvertex; // X-vertex position
52 Double_t fYvertex; // Y-vertex position
53 Double_t fZvertex; // Z-vertex position
54 Double_t fSigmaX; // X-vertex error
55 Double_t fSigmaY; // Y-vertex error
56 Double_t fSigmaZ; // Z-vertex error
57
26f1ae17 58 ClassDef(AliPMDtracker,3) // To run PMD clustering
7dcaf913 59};
60#endif
61