]> git.uio.no Git - u/mrichter/AliRoot.git/blame - FMD/AliFMDPoissonAlgorithm.h
Cog correction improved. Hit position at anod
[u/mrichter/AliRoot.git] / FMD / AliFMDPoissonAlgorithm.h
CommitLineData
e802be3e 1#ifndef ALIFMDPOISSONALGORITHM_H
2#define ALIFMDPOISSONALGORITHM_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights
4 * reserved.
5 *
6 * Latest changes by Christian Holm Christensen <cholm@nbi.dk>
7 *
8 * See cxx source for full Copyright notice
9 */
10/* $Id$ */
11//____________________________________________________________________
12//
13// Class to do multiplicity reconstruction using the Poisson method.
14// That is, we count the number of empty strips in a region, and
15// derive the charge particle multiplicity from that number.
16//
17
18#ifndef ROOT_TTask
19# include <TTask.h>
20#endif
21
22//____________________________________________________________________
23class AliFMDDigit;
24
25//____________________________________________________________________
26class AliFMDPoissonAlgorithm : public TNamed
27{
28public:
29 AliFMDPoissonAlgorithm();
30 virtual ~AliFMDPoissonAlgorithm() {}
31
32 virtual void Reset();
33 virtual void ProcessDigit(AliFMDDigit* digit, Float_t ipZ);
34
35protected:
36 ClassDef(AliFMDPoissonAlgorithm, 0) // Poisson algorithm
37};
38
39#endif
40//____________________________________________________________________
41//
42// Local Variables:
43// mode: C++
44// End:
45//
46// EOF
47//