]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TPC/AliTPCSensorTemp.h
The AliDCSSensor classes were recently upgraded to include start and end time entries...
[u/mrichter/AliRoot.git] / TPC / AliTPCSensorTemp.h
1 #ifndef AliTPCSensorTemp_H
2 #define AliTPCSensorTemp_H
3 /* Copyright(c) 2006-07, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6
7 ////////////////////////////////////////////////////////////////////////////
8 //              Container class for temperature sensor positions            
9 ////////////////////////////////////////////////////////////////////////////
10
11
12 #include "TMath.h"
13 #include "AliSplineFit.h"
14 #include "AliDCSSensor.h"
15 #include "TTree.h"
16
17 class TObject;
18 class TClonesArray;
19 class TObjArray;
20 class TGraph;
21 class TVector3;
22 class TFile;
23 class TString;
24 class TTimeStamp;
25
26
27 ////////////////////////////////////////////////////////////////////////
28 //              Class AliTPCSensorTempSensors
29 ////////////////////////////////////////////////////////////////////////
30
31 class AliTPCSensorTemp : public AliDCSSensor {
32
33 public:
34   AliTPCSensorTemp();
35   AliTPCSensorTemp(const AliTPCSensorTemp& source);
36   virtual ~AliTPCSensorTemp(){}
37   AliTPCSensorTemp& operator=(const AliTPCSensorTemp& source);
38   
39   Int_t       GetType()   const {return fType;   }
40   Int_t       GetSide()   const {return fSide;   }
41   Int_t       GetSector() const {return fSector;         }
42   Int_t       GetNum()    const {return fNum;    }
43
44   void SetType   (Int_t type)      {fType   = type;   }
45   void SetSide   (Int_t side)      {fSide   = side;      }
46   void SetSector (Int_t sector)    {fSector = sector;}
47   void SetNum    (Int_t num)       {fNum    = num;   }
48
49
50   static TClonesArray * ReadList(const char *fname);
51
52 protected:
53   Int_t fType;      // Position of sensors on fieldcage
54                     //  (0=ROC,1=OFC,2=IFC,3=TPC,4=ELM,5=TS,6=COOL)
55   Int_t fSide;      // TPC side; 0:Shaft Side (A) -- 1:Muon Side (C)
56   Int_t fSector;    // Number of sector             (0-17)
57   Int_t fNum;       // Position depands from type of sensor.
58                     //    fType=0(0-4) from inside to outside
59                     //    fType=1(0-5) fom A side to C side
60                     //    fType=2(0-5) fom A side to C side
61                     //    fType=3(0)   one per sector 
62                     //    fType=4()
63                     //    fType=5()
64                     //  fType=6(0-1) 0:input -- 1:output
65
66
67   ClassDef(AliTPCSensorTemp,1);
68 };
69 #endif