]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TRD/Cal/AliTRDCalDCSPTRFeb.h
Masking of not calibrated chambers
[u/mrichter/AliRoot.git] / TRD / Cal / AliTRDCalDCSPTRFeb.h
1 #ifndef ALITRDCALDCSPTRFEB_H
2 #define ALITRDCALDCSPTRFEB_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 /* $Id: AliTRDCalDCSPTRFeb.h 18952 2007-06-08 11:36:12Z cblume $ */
7
8 ///////////////////////////////////////////////////////////////////////////////
9 //                                                                           //
10 //  TRD calibration class for TRD GTU configuration parameters               //
11 //                                                                           //
12 ///////////////////////////////////////////////////////////////////////////////
13
14 #include "TNamed.h"
15
16 class TString;
17
18 class AliTRDCalDCSPTRFeb : public TNamed {
19
20  public:
21
22   AliTRDCalDCSPTRFeb();
23   AliTRDCalDCSPTRFeb(const char *name, const char *title);
24   AliTRDCalDCSPTRFeb(const AliTRDCalDCSPTRFeb &);
25   virtual ~AliTRDCalDCSPTRFeb() { };
26
27   TString GetControlBoxSide() const                   { return fSide;                         }
28   TString GetDetectorName() const                     { return fDetName;                      }
29   Int_t   GetControlBoxPrimary() const                { return fPrimary;                      }
30
31   void    SetControlBoxSide(TString bs)               { fSide = bs;                           }
32   void    SetDetectorName(TString bs)                 { fDetName = bs;                        }
33   void    SetControlBoxPrimary(Int_t bp)              { fPrimary = bp;                        }
34   
35
36  protected:
37   TString fSide; // side of the control box, either A, B or C 
38   TString fDetName; // Name of the detector eg  TO, V1 etc..
39   Int_t   fPrimary; // 1 if its the primary control box, 2 for backup
40
41   ClassDef(AliTRDCalDCSPTRFeb,1)      //  TRD calibration class for TRD GTU parameters
42
43 };
44 #endif