ROOT logo
/**************************************************************************
 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
 *                                                                        *
 * Author: The ALICE Off-line Project.                                    *
 * Contributors are mentioned in the code where appropriate.              *
 *                                                                        *
 * Permission to use, copy, modify and distribute this software and its   *
 * documentation strictly for non-commercial purposes is hereby granted   *
 * without fee, provided that the above copyright notice appears in all   *
 * copies and that both the copyright notice and this permission notice   *
 * appear in the supporting documentation. The authors make no claims     *
 * about the suitability of this software for any purpose. It is          *
 * provided "as is" without express or implied warranty.                  *
 **************************************************************************/

//-------------------------------------------------------------------------
//              Implementation of the ITS cluster class
//
//         Origin: Iouri Belikov, CERN, Jouri.Belikov@cern.ch
//-------------------------------------------------------------------------

#include "AliITSclusterV2.h"

ClassImp(AliITSclusterV2)
//_______________________________________________________
AliITSclusterV2::AliITSclusterV2() : AliCluster(),
fIndex(0),
fQ(0),
fLayer(0),
fNz(0),
fNy(0),
fChargeRatio(0),
fType(0),
fDeltaProb(0) {
  //default constructor
}

//_______________________________________________________
AliITSclusterV2::AliITSclusterV2(Int_t *lab,Float_t *hit, Int_t *info): 
  AliCluster(0,hit,0.,0.,lab),
fIndex(lab[3]),
fQ(hit[4]),
fLayer(info[2]),
fNz(info[1]),
fNy(info[0]),
fChargeRatio(0),
fType(0),
fDeltaProb(0){
  //standard constructor
}
 AliITSclusterV2.cxx:1
 AliITSclusterV2.cxx:2
 AliITSclusterV2.cxx:3
 AliITSclusterV2.cxx:4
 AliITSclusterV2.cxx:5
 AliITSclusterV2.cxx:6
 AliITSclusterV2.cxx:7
 AliITSclusterV2.cxx:8
 AliITSclusterV2.cxx:9
 AliITSclusterV2.cxx:10
 AliITSclusterV2.cxx:11
 AliITSclusterV2.cxx:12
 AliITSclusterV2.cxx:13
 AliITSclusterV2.cxx:14
 AliITSclusterV2.cxx:15
 AliITSclusterV2.cxx:16
 AliITSclusterV2.cxx:17
 AliITSclusterV2.cxx:18
 AliITSclusterV2.cxx:19
 AliITSclusterV2.cxx:20
 AliITSclusterV2.cxx:21
 AliITSclusterV2.cxx:22
 AliITSclusterV2.cxx:23
 AliITSclusterV2.cxx:24
 AliITSclusterV2.cxx:25
 AliITSclusterV2.cxx:26
 AliITSclusterV2.cxx:27
 AliITSclusterV2.cxx:28
 AliITSclusterV2.cxx:29
 AliITSclusterV2.cxx:30
 AliITSclusterV2.cxx:31
 AliITSclusterV2.cxx:32
 AliITSclusterV2.cxx:33
 AliITSclusterV2.cxx:34
 AliITSclusterV2.cxx:35
 AliITSclusterV2.cxx:36
 AliITSclusterV2.cxx:37
 AliITSclusterV2.cxx:38
 AliITSclusterV2.cxx:39
 AliITSclusterV2.cxx:40
 AliITSclusterV2.cxx:41
 AliITSclusterV2.cxx:42
 AliITSclusterV2.cxx:43
 AliITSclusterV2.cxx:44
 AliITSclusterV2.cxx:45
 AliITSclusterV2.cxx:46
 AliITSclusterV2.cxx:47
 AliITSclusterV2.cxx:48
 AliITSclusterV2.cxx:49
 AliITSclusterV2.cxx:50