]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TPC/AliTPCclusterMI.cxx
The assignment operator has to return *this
[u/mrichter/AliRoot.git] / TPC / AliTPCclusterMI.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 //          Implementation of the TPC cluser
18 //
19 //   Origin: Marian Ivanov   Marian.Ivanov@cern.ch
20 // 
21 //  AliTPC parallel tracker - 
22 //  Description of this class together with its intended usage
23 //  will follow shortly
24 //  
25 //-------------------------------------------------------
26
27 /* $Id$ */
28
29 #include "AliTPCclusterMI.h"
30 #include "AliTPCclusterInfo.h"
31 #include "AliLog.h"
32
33 ClassImp(AliTPCclusterMI)
34
35
36 AliTPCclusterMI::AliTPCclusterMI(Bool_t withInfo):
37   AliCluster(),
38   fX(0),
39   fQ(0),
40   fType(0),
41   fMax(0),
42   fUsed(0),
43   fDetector(0),
44   fRow(0),
45   fTimeBin(0),
46   fPad(0),
47   fInfo(0)
48 {
49   //
50   // default constructor
51   //
52   if (withInfo) fInfo = new AliTPCclusterInfo;
53 }
54
55 AliTPCclusterMI::AliTPCclusterMI(const AliTPCclusterMI & cluster):
56   AliCluster(cluster),
57   fX(cluster.fX),
58   fQ(cluster.fQ),
59   fType(cluster.fType),
60   fMax(cluster.fMax),
61   fUsed(cluster.fUsed),
62   fDetector(cluster.fDetector),
63   fRow(cluster.fRow),
64   fTimeBin(cluster.fTimeBin),
65   fPad(cluster.fPad),
66   fInfo(0)
67 {
68   //
69   // copy constructor
70   // 
71   //  AliInfo("Copy constructor\n");
72   if (cluster.fInfo) fInfo = new AliTPCclusterInfo(*(cluster.fInfo));
73 }
74
75 AliTPCclusterMI & AliTPCclusterMI::operator = (const AliTPCclusterMI & cluster)
76 {
77   //
78   // assignment operator
79   // 
80   //  AliInfo("Asignment operator\n");
81
82   (AliCluster&)(*this) = (AliCluster&)cluster;
83   fX    = cluster.fX;
84   fQ    = cluster.fQ;
85   fType = cluster.fType;
86   fMax  = cluster.fMax;
87   fUsed = cluster.fUsed;
88   fDetector = cluster.fDetector;
89   fRow  = cluster.fRow;
90   fTimeBin = cluster.fTimeBin;
91   fPad     = cluster.fPad;
92   fInfo = 0;
93   if (cluster.fInfo) fInfo = new AliTPCclusterInfo(*(cluster.fInfo));
94   return *this;
95 }
96
97
98
99
100 AliTPCclusterMI::AliTPCclusterMI(Int_t *lab, Float_t *hit) : 
101   AliCluster(lab,hit),
102   fX(0),
103   fQ(0),
104   fType(0),
105   fMax(0),
106   fUsed(0),
107   fDetector(0),
108   fRow(0),
109   fInfo(0)
110 {
111   //
112   // constructor
113   //
114   fQ = (UShort_t)hit[4];
115   fInfo = 0;
116 }
117
118 AliTPCclusterMI::~AliTPCclusterMI() {
119   //
120   // destructor
121   //
122   if (fInfo) delete fInfo;
123 }
124
125
126
127 Bool_t AliTPCclusterMI::IsSortable() const
128 {
129   //
130   //
131   return kTRUE;
132
133 }
134
135 Int_t AliTPCclusterMI::Compare(const TObject* obj) const
136 {
137   //
138   // compare according y
139   AliTPCclusterMI * o2 = (AliTPCclusterMI*)obj;
140   return (o2->GetY()>fY)? -1:1; 
141 }