]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/UPGRADE/AliITStrackerU.cxx
Added version tailored for pp (AliTrackletTaskMultipp) with additional
[u/mrichter/AliRoot.git] / ITS / UPGRADE / AliITStrackerU.cxx
CommitLineData
ebaa7604 1/**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3 * *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
6 * *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
15
16//-------------------------------------------------------------------------
17// Implementation of the ITS Upgrade tracker mother class.
18//-------------------------------------------------------------------------
19#include <TTree.h>
20#include <Riostream.h>
21
22#include "AliITStrackerU.h"
23#include "AliESDEvent.h"
24
25
26ClassImp(AliITStrackerU)
27//_________________________________________________________________________
28AliITStrackerU::AliITStrackerU():
29AliTracker()
30{
31 //
32 // Default constructor
33 //
34
35 Info("AliITStrackerU","Default Costructor");
36
37}
38
39AliITStrackerU::~AliITStrackerU()
40{
41 //
42 // Default destructor
43 //
44}
45//_________________________________________________________________________
46Int_t AliITStrackerU::Clusters2Tracks(AliESDEvent */*event*/)
47{
48 //
49 // To be implemented
50 //
51
52 Info("Clusters2Tracks","To be implemented");
53 return 0;
54}
55//_________________________________________________________________________
56Int_t AliITStrackerU::PropagateBack(AliESDEvent * /*event*/)
57{
58 //
59 // To be implemented
60 //
61
62 Info("PropagateBack","To be implemented");
63 return 0;
64}
65//_________________________________________________________________________
66Int_t AliITStrackerU::RefitInward(AliESDEvent * /*event*/)
67{
68 //
69 // To be implemented
70 //
71
72 Info("RefitInward","To be implemented");
73 return 0;
74}
75//_________________________________________________________________________
76Int_t AliITStrackerU::LoadClusters(TTree * /*treeR*/)
77{
78 //
79 // To be implemented
80 //
81
82 Info("LoadClusters","To be implemented");
83 return 0;
84}
85//_________________________________________________________________________
86void AliITStrackerU::UnloadClusters()
87{
88 //
89 // To be implemented
90 //
91
92 Info("UnloadClusters","To be implemented");
93}
94//_________________________________________________________________________
95AliCluster * AliITStrackerU::GetCluster(Int_t /*index*/) const
96{
97 //
98 // To be implemented
99 //
100
101 Info("GetCluster","To be implemented");
102 return 0x0;
103}