]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TRD/qaRec/AliTRDmultiplicity.h
Remove CreateGraphs() and AliTRDpidRefMaker(const Char_t*,cons tChar_t*)
[u/mrichter/AliRoot.git] / TRD / qaRec / 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   void    Terminate(Option_t *);
25
26 private:
27   AliTRDmultiplicity(const AliTRDmultiplicity&);
28   AliTRDmultiplicity& operator=(const AliTRDmultiplicity&);
29
30 private:
31   Int_t fEventCounter;
32
33
34   ClassDef(AliTRDmultiplicity, 1) // TRD tracking multiplicity
35 };
36
37 #endif
38