]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TPC/AliTPCTempMap.h
Remove () around exceptions thrown from interpreted code as CINT flops on those.
[u/mrichter/AliRoot.git] / TPC / AliTPCTempMap.h
CommitLineData
1209231c 1#ifndef AliTPCTempMap_H
2#define AliTPCTempMap_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6
7///////////////////////////////////////////////////////////////////////////////
8// //
9// TPC calibration class for temperature maps and tendencies //
10// //
11///////////////////////////////////////////////////////////////////////////////
12
13#include "TSystem.h"
14
15class TGraph;
16class TGraph2D;
17class TLinearFitter;
18class TString;
19class AliTPCSensorTempArray;
f59cd9d0 20class TTimeStamp;
1209231c 21
22class AliTPCTempMap : public TNamed {
23 public:
24 AliTPCTempMap(AliTPCSensorTempArray *SensorsDCS);
1209231c 25 AliTPCTempMap(const AliTPCTempMap &c);
26 virtual ~AliTPCTempMap();
27 AliTPCTempMap &operator=(const AliTPCTempMap &c);
28 virtual void Copy (TObject &c) const;
1209231c 29 TLinearFitter *GetLinearFitter(Int_t type, Int_t side, UInt_t timeSec);
f59cd9d0 30 TLinearFitter *GetLinearFitter(Int_t type, Int_t side, TTimeStamp& stamp);
31 //
32 Double_t GetTempGradientY(UInt_t timeSec, Int_t side);
1209231c 33 TGraph2D *GetTempMapsViaSensors(Int_t type, Int_t side, UInt_t timeSec);
34 TGraph *MakeGraphGradient(Int_t axis, Int_t side, Int_t nPoints);
35 Double_t GetTemperature(Double_t x, Double_t y, Double_t z, UInt_t timeSec);
1209231c 36 protected:
37
f59cd9d0 38 AliTPCSensorTempArray *fTempArray; // Array of Sensors (initialized in Constructor)
1209231c 39 TString fStringFEsimulation; // Placeholder for file of FiniteElement
40 // Simulation under ideal conditions - not existing yet
41
3e6efa17 42 private:
43
44 AliTPCTempMap(const char *fname);
45
46 ClassDef(AliTPCTempMap,2) //
1209231c 47
48};
49
50#endif