]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/Cal/AliTRDCalDCSPTRFeb.h
Commented unnecessary include AliLog
[u/mrichter/AliRoot.git] / TRD / Cal / AliTRDCalDCSPTRFeb.h
CommitLineData
75bbe3c8 1#ifndef ALITRDCALDCSPTRFEB_H
2#define ALITRDCALDCSPTRFEB_H
3821ce70 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
16class TString;
17
18class 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() { return fSide; }
75bbe3c8 28 TString GetDetectorName() { return fDetName; }
3821ce70 29 Int_t GetControlBoxPrimary() { return fPrimary; }
3821ce70 30
31 void SetControlBoxSide(TString bs) { fSide = bs; }
75bbe3c8 32 void SetDetectorName(TString bs) { fDetName = bs; }
3821ce70 33 void SetControlBoxPrimary(Int_t bp) { fPrimary = bp; }
3821ce70 34
3821ce70 35
36 protected:
37 TString fSide; // side of the control box, either A, B or C
75bbe3c8 38 TString fDetName; // Name of the detector eg TO, V1 etc..
3821ce70 39 Int_t fPrimary; // 1 if its the primary control box, 2 for backup
40
3821ce70 41 ClassDef(AliTRDCalDCSPTRFeb,1) // TRD calibration class for TRD GTU parameters
42
43};
44#endif