]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TPC/AliTPCclusterMI.cxx
Add cluster error and shape parameterization class + routine to fit parameters
[u/mrichter/AliRoot.git] / TPC / AliTPCclusterMI.cxx
index b3359e315d428eeb23080e7bcfb75fd8439d26b1..0b8194b5d7985a5a422e0ca9d895bb97180b303a 100644 (file)
 
 ClassImp(AliTPCclusterMI)
 
+
+AliTPCclusterMI::AliTPCclusterMI():
+  AliCluster(),
+  fX(0),
+  fQ(0),
+  fType(0),
+  fMax(0),
+  fUsed(0),
+  fDetector(0),
+  fRow(0)
+{
+  //
+  // default constructor
+  //
+}
+
+AliTPCclusterMI::AliTPCclusterMI(Int_t *lab, Float_t *hit) : 
+  AliCluster(lab,hit),
+  fX(0),
+  fQ(0),
+  fType(0),
+  fMax(0),
+  fUsed(0),
+  fDetector(0),
+  fRow(0)    
+{
+  //
+  // constructor
+  //
+  fQ = (UShort_t)hit[4];
+}
+
 Bool_t AliTPCclusterMI::IsSortable() const
 {
   //