]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PMD/AliPMDClustering.h
added in CheckSymNamesLUT the check on the EMCAL supermodules actually activated...
[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],
28 TObjArray *pmdisocell, TObjArray *pmdcont) = 0;
deb0fc73 29
3ddbe569 30 virtual void SetEdepCut(Float_t decut) = 0;
deb0fc73 31
920e13db 32 ClassDef(AliPMDClustering,7) // Does clustering for PMD
deb0fc73 33};
34#endif