]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ANALYSIS/TenderSupplies/AliHMPIDTenderSupply.h
end-of-line normalization
[u/mrichter/AliRoot.git] / ANALYSIS / TenderSupplies / AliHMPIDTenderSupply.h
1 #ifndef ALIHMPIDTENDERSUPPLY_H
2 #define ALIHMPIDTENDERSUPPLY_H
3
4 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5  * See cxx source for full Copyright notice                               */
6
7 ////////////////////////////////////////////////////////////////////////
8 //                                                                    //
9 //  HMPID tender, reapply pid on the fly                                //
10 //                                                                    //
11 ////////////////////////////////////////////////////////////////////////
12
13 #include <AliTenderSupply.h>
14 #include <AliLog.h>
15 #include <AliESDpid.h>
16
17 class AliESDpid;
18
19 class AliHMPIDTenderSupply: public AliTenderSupply {
20
21 public:
22   AliHMPIDTenderSupply();
23   AliHMPIDTenderSupply(const char *name, const AliTender *tender=NULL);
24
25   virtual ~AliHMPIDTenderSupply(){;}
26
27   virtual void              Init();
28   virtual void              ProcessEvent();
29
30
31 private:
32
33   AliHMPIDTenderSupply(const AliHMPIDTenderSupply&c);
34   AliHMPIDTenderSupply& operator= (const AliHMPIDTenderSupply&c);
35
36   ClassDef(AliHMPIDTenderSupply, 1);
37 };
38
39
40 #endif