]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TRD/AliTRDSensor.h
QA update by Sylwester
[u/mrichter/AliRoot.git] / TRD / AliTRDSensor.h
1 #ifndef ALITRDSENSOR_H
2 #define ALITRDSENSOR_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$ */
8
9 ////////////////////////////////////////////////////////////////////////////
10 //                                                                        //
11 // TRD sensor for DCS                                                     //
12 //                                                                        //
13 ////////////////////////////////////////////////////////////////////////////
14
15
16 #include "AliDCSSensor.h"
17
18 //_____________________________________________________________________________
19 class AliTRDSensor : public  AliDCSSensor {
20
21         public :
22                 AliTRDSensor ();
23                 ~AliTRDSensor();
24                 AliTRDSensor (const AliTRDSensor & source);
25                 AliTRDSensor & operator=(const AliTRDSensor &c);
26                 void Copy(TObject &c) const;
27                 AliTRDSensor (Int_t dcsId,
28                                           Double_t x, Double_t y, Double_t z); 
29                 
30                                 
31         
32
33                 ClassDef(AliTRDSensor,2);   // Object for TRD DCS values
34 };
35
36 #endif
37