]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ANALYSIS/TenderSupplies/AliPIDTenderSupply.h
New version of filtering macro
[u/mrichter/AliRoot.git] / ANALYSIS / TenderSupplies / AliPIDTenderSupply.h
CommitLineData
e75408ba 1#ifndef ALIPIDTENDERSUPPLY_H
2#define ALIPIDTENDERSUPPLY_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// PID tender, reapply pid on the fly //
10// //
11////////////////////////////////////////////////////////////////////////
12
13
14
15#include <AliTenderSupply.h>
16
17class AliPIDTenderSupply: public AliTenderSupply {
18
19public:
20 AliPIDTenderSupply();
21 AliPIDTenderSupply(const char *name, const AliTender *tender=NULL);
22
23 virtual ~AliPIDTenderSupply(){;}
24
25 virtual void Init(){;}
26 virtual void ProcessEvent();
27
28private:
29
30 AliPIDTenderSupply(const AliPIDTenderSupply&c);
31 AliPIDTenderSupply& operator= (const AliPIDTenderSupply&c);
32
33 ClassDef(AliPIDTenderSupply, 1); // PID tender task
34};
35
36
37#endif
38