]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PMD/AliPMDClustering.h
Coverity fixes
[u/mrichter/AliRoot.git] / PMD / AliPMDClustering.h
CommitLineData
a918d77a 1#ifndef ALIPMDCLUSTERING_H
2#define ALIPMDCLUSTERING_H
ed228cbc 3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
deb0fc73 5//-----------------------------------------------------//
6// //
7// Header File : PMDClustering.h, Version 00 //
8// //
9// Date : September 26 2002 //
10// //
11// clustering code for alice pmd //
12// //
13//-----------------------------------------------------//
3ddbe569 14/*-----------------------------------------------------------------------*/
deb0fc73 15#include "Rtypes.h"
16
17class TNtuple;
18class TObjArray;
ebd83c56 19class AliPMDClustering: public TObject
deb0fc73 20{
a918d77a 21
22 public:
3ddbe569 23 AliPMDClustering(){};
24 virtual ~AliPMDClustering(){};
e1287360 25
920e13db 26 virtual void DoClust(Int_t idet, Int_t ismn, Int_t celltrack[][96],
27 Int_t cellpid[][96], Double_t celladc[][96],
22bd512d 28 TObjArray *pmdcont) = 0;
deb0fc73 29
3ddbe569 30 virtual void SetEdepCut(Float_t decut) = 0;
4755c3f1 31 virtual void SetClusteringParam(Int_t cluspar) = 0;
deb0fc73 32
4755c3f1 33 ClassDef(AliPMDClustering,9) // Does clustering for PMD
deb0fc73 34};
35#endif