]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWG1/TRD/AliTRDmultiplicity.h
copy TRD performance train to PWG1
[u/mrichter/AliRoot.git] / PWG1 / 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   virtual ~AliTRDmultiplicity();
22   void    CreateOutputObjects();
23   void    Exec(Option_t *);
24
25 private:
26   AliTRDmultiplicity(const AliTRDmultiplicity&);
27   AliTRDmultiplicity& operator=(const AliTRDmultiplicity&);
28
29 private:
30   Int_t fEventCounter;            // Event counter
31
32
33   ClassDef(AliTRDmultiplicity, 1) // TRD tracking multiplicity
34 };
35
36 #endif
37