]> git.uio.no Git - u/mrichter/AliRoot.git/blob - FMD/AliFMDPoissonAlgorithm.h
Using double quotes to include header files from the same directory
[u/mrichter/AliRoot.git] / FMD / AliFMDPoissonAlgorithm.h
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 //____________________________________________________________________
23 class AliFMDDigit;
24
25 //____________________________________________________________________
26 class AliFMDPoissonAlgorithm : public TNamed
27 {
28 public:
29   AliFMDPoissonAlgorithm();
30   virtual ~AliFMDPoissonAlgorithm() {}
31   
32   virtual void Reset();
33   virtual void ProcessDigit(AliFMDDigit* digit, Float_t ipZ);
34   
35 protected:
36   ClassDef(AliFMDPoissonAlgorithm, 0) // Poisson algorithm
37 };
38
39 #endif
40 //____________________________________________________________________
41 //
42 // Local Variables:
43 //   mode: C++
44 // End:
45 //
46 // EOF
47 //