]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWGPP/TRD/AliTRDmultiplicity.h
Completed changes needed because of previous commit
[u/mrichter/AliRoot.git] / PWGPP / TRD / AliTRDmultiplicity.h
1 #ifndef ALITRDMULTIPLICITY_H
2 #define ALITRDMULTIPLICITY_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6
7 ////////////////////////////////////////////////////////////////////////////
8 //                                                                        //
9 //  TRD multiplicity                                                     //
10 //                                                                        //
11 ////////////////////////////////////////////////////////////////////////////
12
13 #ifndef ALITRDRECOTASK_H
14 #include "AliTRDrecoTask.h"
15 #endif
16
17 class AliTRDmultiplicity : public AliTRDrecoTask
18 {
19 public:
20   AliTRDmultiplicity();
21   AliTRDmultiplicity(char* name);
22   virtual ~AliTRDmultiplicity();
23   void    UserCreateOutputObjects();
24   void    UserExec(Option_t *);
25
26 private:
27   AliTRDmultiplicity(const AliTRDmultiplicity&);
28   AliTRDmultiplicity& operator=(const AliTRDmultiplicity&);
29
30 private:
31   Int_t fEventCounter;            // Event counter
32
33
34   ClassDef(AliTRDmultiplicity, 1) // TRD tracking multiplicity
35 };
36
37 #endif
38