]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TPC/AliComplexCluster.cxx
track matching macros from Alberto
[u/mrichter/AliRoot.git] / TPC / AliComplexCluster.cxx
CommitLineData
c9787763 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
41cfdca1 16/*
17$Log$
7fc8a284 18Revision 1.7 2003/11/24 09:48:28 kowal2
19Changes to obey the coding conventions
20
018a927a 21Revision 1.6 2003/11/24 09:43:03 kowal2
22Obsolete - removed
23
9b1855ba 24Revision 1.5 2003/09/29 11:27:39 kowal2
25new classes added
26
41cfdca1 27Revision 1.3 2002/11/15 14:27:45 hristov
28First version of the parallel TPC tracking (M.Ivanov)
29
30Revision 1.2 2001/02/05 14:43:13 hristov
31Compare() declared const
32
33Revision 1.1 2000/10/05 16:17:27 kowal2
34New class replacing AliCluster
35
36
37*/
c9787763 38
39///////////////////////////////////////////////////////////////////////////////
40// //
41// Time Projection Chamber clusters objects //
42//
43// Origin: Marian Ivanov , GSI Darmstadt
44// //
45//Begin_Html
46/*
47<img src="gif/AliTPCCluster.gif">
48*/
49//End_Html
50// //
51// //
52///////////////////////////////////////////////////////////////////////////////
7fc8a284 53// **************
54//aaaaaaaaa
55//aaaaaaaaa
56//aaaaaaaaa
57//aaaaaaaa
58//aaaaaaaaaa
c9787763 59
60#include "AliComplexCluster.h"
61
018a927a 62
c9787763 63ClassImp(AliComplexCluster)
64//_____________________________________________________________________________
5c84b1d4 65Int_t AliComplexCluster::Compare(const TObject * o) const
c9787763 66{
67 //
68 // compare two clusters according y coordinata
69 AliComplexCluster *cl= (AliComplexCluster *)o;
70 if (fY<cl->fY) return -1;
71 if (fY==cl->fY) return 0;
72 return 1;
73}
74
75Bool_t AliComplexCluster::IsSortable() const
76{
77 //
78 //make AliComplexCluster sortabale
79 return kTRUE;
80}
81
1c53abe2 82ClassImp(AliTPCExactPoint)
83ClassImp(AliTPCClusterPoint)
84ClassImp(AliTPCTrackerPoint)
85ClassImp(AliTPCTrackPoint)
41cfdca1 86ClassImp(AliTPCTrackPoint2)
1c53abe2 87ClassImp(AliTPCTrackPointRef)
88
89