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