]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWGPP/tender/AliTenderSupplyTRD.h
remove unneccassary TStopWatch
[u/mrichter/AliRoot.git] / PWGPP / tender / AliTenderSupplyTRD.h
1 #ifndef ALITENDERSUPPLYTRD_H
2 #define ALITENDERSUPPLYTRD_H
3
4 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5  * See cxx source for full Copyright notice                               */
6
7 /* $Id: AliTenderSupplyTRD.h 34521 2009-09-01 13:21:10Z abercuci $ */
8 // Author: Alexandru Bercuci, 15/11/2009
9
10 ////////////////////////////////////////////////////////////
11 //
12 // Correct ESD TRD info based on up-to-date calibration
13 //
14 ////////////////////////////////////////////////////////////
15
16
17 #ifndef ALITENDERSUPPLY_H
18 #include "AliTenderSupply.h"
19 #endif
20
21 class AliTenderSupplyTRD : public AliTenderSupply
22 {
23 public:
24   AliTenderSupplyTRD();
25
26   virtual   ~AliTenderSupplyTRD(){}
27   void      Init();
28   void      ProcessEvent();
29
30 private:
31   AliTenderSupplyTRD(const AliTenderSupplyTRD &ref);
32   AliTenderSupplyTRD& operator=(const AliTenderSupplyTRD &ref);
33
34   ClassDef(AliTenderSupplyTRD,1)  // tender for TRD detector
35 };
36
37 #endif
38