]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ANALYSIS/Tender/AliTenderSupply.h
For the display, now uses the human chamberId convention, i.e. starting at one, inste...
[u/mrichter/AliRoot.git] / ANALYSIS / Tender / AliTenderSupply.h
CommitLineData
106c7c4e 1#ifndef ALITENDERSUPPLY_H
2#define ALITENDERSUPPLY_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/* $Id$ */
7// Author: Andrei Gheata, 01/09/2009
8
9//==============================================================================
10// AliTenderSupply - Base class for user-defined ESD additions and corrections.
11//==============================================================================
12
13#ifndef ROOT_TNamed
14#include "TNamed.h"
15#endif
16
17class AliTender;
18
19class AliTenderSupply : public TNamed {
20
21private:
22 AliTender *fTender; // Tender car
23
24public:
25 AliTenderSupply();
26 AliTenderSupply(const char *name, AliTender *tender);
27 AliTenderSupply(const AliTenderSupply &other);
28 virtual ~AliTenderSupply();
29 AliTenderSupply& operator=(const AliTenderSupply &other);
30
31 // Run control
32 virtual void Init() = 0;
33 virtual void ProcessEvent() = 0;
34
35 ClassDef(AliTenderSupply,1) // Base class for tender user algorithms
36};
37#endif