X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;ds=sidebyside;f=TPC%2FAliClustersArray.cxx;h=d17c8071a3d3016fbebad618870c0ed4f39fb844;hb=dd1da44f861784bdd8f7274429eb7cb884297aeb;hp=6207f93bd1a06ae8ec56d37b2b1f5fbcede16efe;hpb=73042f0190050b5b5f317a6327d5ae1849e730d5;p=u%2Fmrichter%2FAliRoot.git diff --git a/TPC/AliClustersArray.cxx b/TPC/AliClustersArray.cxx index 6207f93bd1a..d17c8071a3d 100644 --- a/TPC/AliClustersArray.cxx +++ b/TPC/AliClustersArray.cxx @@ -13,29 +13,7 @@ * provided "as is" without express or implied warranty. * **************************************************************************/ -/* -$Log$ -Revision 1.2.4.4 2000/06/26 07:39:42 kowal2 -Changes to obey the coding rules - -Revision 1.2.4.3 2000/06/25 08:38:41 kowal2 -Splitted from AliTPCtracking - -Revision 1.2.4.2 2000/06/14 16:45:13 kowal2 -Improved algorithms. Compiler warnings removed. - -Revision 1.2.4.1 2000/06/09 07:09:29 kowal2 - -Clustering and tracking classes are splitted from the simulation ones - -Revision 1.2 2000/04/17 09:37:33 kowal2 -removed obsolete AliTPCDigitsDisplay.C - -Revision 1.1.4.2 2000/04/10 11:34:02 kowal2 - -Clusters handling in a new data structure - -*/ +/* $Id$ */ /////////////////////////////////////////////////////////////////////////////// // // @@ -51,9 +29,7 @@ Clusters handling in a new data structure #include #include "AliSegmentID.h" #include "TObjArray.h" -#include "AliSegmentArray.h" -#include "AliCluster.h" #include "AliClusters.h" #include "AliDetectorParam.h" #include "AliClustersArray.h" @@ -63,16 +39,18 @@ Clusters handling in a new data structure ClassImp(AliClustersArray) // -AliClustersArray::AliClustersArray() + AliClustersArray::AliClustersArray():AliSegmentArray(), + fParam(0), + fClFinder(0), + fClusterType(0) { // //Default constructor // - fParam = 0; - fClusterType = 0; + } -Bool_t AliClustersArray::SetClusterType(Text_t * classname) +Bool_t AliClustersArray::SetClusterType(const char * classname) { // //set type of Clusters @@ -97,7 +75,7 @@ Bool_t AliClustersArray::SetClusterType(Text_t * classname) return kTRUE; } -Bool_t AliClustersArray::Setup(const AliDetectorParam *param) +Bool_t AliClustersArray::Setup(const AliDetectorParam */*param*/) { // //make copy of param object @@ -105,12 +83,12 @@ Bool_t AliClustersArray::Setup(const AliDetectorParam *param) return kTRUE; } -Bool_t AliClustersArray::SetParam(AliDetectorParam * param) +Bool_t AliClustersArray::SetParam(AliDetectorParam * /*param*/) { return kTRUE; } -Bool_t AliClustersArray::SetFinder(AliClustersFinder * finder) +Bool_t AliClustersArray::SetFinder(AliClustersFinder * /*finder*/) { return kTRUE; }