]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TPC/AliTPCSensorTempArray.cxx
Coverity fixes
[u/mrichter/AliRoot.git] / TPC / AliTPCSensorTempArray.cxx
CommitLineData
54472e4f 1/**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3 * *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
6 * *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
15
16
17///////////////////////////////////////////////////////////////////////////////
18// //
19// TPC calibration class for parameters which saved per pad //
20// Authors: Marian Ivanov and Haavard Helstrup //
21// //
22///////////////////////////////////////////////////////////////////////////////
23
24#include "AliTPCSensorTempArray.h"
3a887e1a 25#include "TLinearFitter.h"
26#include "TVectorD.h"
67a165ed 27#include "AliLog.h"
28
29
54472e4f 30
31ClassImp(AliTPCSensorTempArray)
32
54472e4f 33
34//_____________________________________________________________________________
24938b4c 35AliTPCSensorTempArray::AliTPCSensorTempArray():AliDCSSensorArray()
54472e4f 36{
37 //
38 // AliTPCSensorTempArray default constructor
39 //
ffa7e8be 40
54472e4f 41}
42//_____________________________________________________________________________
24938b4c 43AliTPCSensorTempArray::AliTPCSensorTempArray(Int_t run) : AliDCSSensorArray()
54472e4f 44{
24938b4c 45 //
46 // Read configuration from OCDB
47 //
48
49
50 AliCDBEntry *entry =
51 AliCDBManager::Instance()->Get("TPC/Config/Temperature",run);
0938d4f8 52 if (entry) {
53 TTree *tree = (TTree*) entry->GetObject();
54 fSensors = AliTPCSensorTemp::ReadTree(tree);
55 fSensors->BypassStreamer(kFALSE);
56 }
54472e4f 57}
58//_____________________________________________________________________________
ffa7e8be 59AliTPCSensorTempArray::AliTPCSensorTempArray(UInt_t startTime, UInt_t endTime,
67a165ed 60 TTree* confTree, const TString& amandaString)
24938b4c 61 :AliDCSSensorArray()
54472e4f 62{
63 //
24938b4c 64 // AliTPCSensorTempArray constructor for Shuttle preprocessor
65 // (confTree read from OCDB)
54472e4f 66 //
67a165ed 67 fSensors = AliTPCSensorTemp::ReadTree(confTree,amandaString);
24938b4c 68 fSensors->BypassStreamer(kFALSE);
63f49d7b 69 fStartTime = TTimeStamp((time_t)startTime,0);
70 fEndTime = TTimeStamp((time_t)endTime,0);
54472e4f 71}
72
73//_____________________________________________________________________________
5a163c08 74AliTPCSensorTempArray::AliTPCSensorTempArray(const char *fname,
75 const TString& amandaString) :
24938b4c 76 AliDCSSensorArray()
54472e4f 77{
78 //
79 // AliTPCSensorTempArray constructor
80 //
5a163c08 81 fSensors = AliTPCSensorTemp::ReadList(fname,amandaString);
54472e4f 82 fSensors->BypassStreamer(kFALSE);
54472e4f 83}
84
85
86//_____________________________________________________________________________
87AliTPCSensorTempArray::AliTPCSensorTempArray(const AliTPCSensorTempArray &c):
24938b4c 88 AliDCSSensorArray(c)
54472e4f 89{
90 //
91 // AliTPCSensorTempArray copy constructor
92 //
93
94}
95
96///_____________________________________________________________________________
97AliTPCSensorTempArray::~AliTPCSensorTempArray()
98{
99 //
100 // AliTPCSensorTempArray destructor
101 //
54472e4f 102}
103
104//_____________________________________________________________________________
105AliTPCSensorTempArray &AliTPCSensorTempArray::operator=(const AliTPCSensorTempArray &c)
106{
107 //
108 // Assignment operator
109 //
67a165ed 110 if (this != &c) {
111 fSensors->Delete();
112 new (this) AliTPCSensorTempArray(c);
113 fSensors = (TClonesArray*)c.fSensors->Clone();
114 }
54472e4f 115 return *this;
54472e4f 116}
117
54472e4f 118
54472e4f 119//_____________________________________________________________________________
67a165ed 120void AliTPCSensorTempArray::ReadSensors(const char *dbEntry)
54472e4f 121{
122 //
123 // Read list of temperature sensors from text file
124 //
67a165ed 125 AliCDBEntry *entry = AliCDBManager::Instance()->Get(dbEntry);
24938b4c 126 TTree *tree = (TTree*) entry->GetObject();
127 fSensors = AliTPCSensorTemp::ReadTree(tree);
54472e4f 128
24938b4c 129}
54472e4f 130
e4dce695 131//_____________________________________________________________________________
132AliTPCSensorTemp* AliTPCSensorTempArray::GetSensor(Int_t type, Int_t side, Int_t sector, Int_t num)
133{
134 //
135 // Return sensor information for sensor specified by type, side, sector and num
136 //
137 Int_t nsensors = fSensors->GetEntries();
138 for (Int_t isensor=0; isensor<nsensors; isensor++) {
139 AliTPCSensorTemp *entry = (AliTPCSensorTemp*)fSensors->At(isensor);
140 if (entry->GetSide() == side &&
141 entry->GetType() == type &&
142 entry->GetSector() == sector &&
143 entry->GetNum() == num ) return entry;
144 }
145 return 0;
146}
147//_____________________________________________________________________________
49dfd67a 148
e4dce695 149AliTPCSensorTemp* AliTPCSensorTempArray::GetSensor(Int_t IdDCS){
150 return dynamic_cast<AliTPCSensorTemp*>(AliDCSSensorArray::GetSensor(IdDCS));
151}
152//_____________________________________________________________________________
49dfd67a 153
e4dce695 154AliTPCSensorTemp* AliTPCSensorTempArray::GetSensor(Double_t x, Double_t y, Double_t z){
155 return dynamic_cast<AliTPCSensorTemp*>(AliDCSSensorArray::GetSensor(x,y,z));
156}
3a887e1a 157//_____________________________________________________________________________
158
159Double_t AliTPCSensorTempArray::GetTempGradientY(UInt_t timeSec, Int_t side){
160 //
161 // Extract Linear Vertical Temperature Gradient [K/cm] within the TPC on
162 // Shaft Side(A): 0
163 // Muon Side(C): 1
164 // Values based on TemperatureSensors within the TPC (type: 3(TPC))
165 //
166 // FIXME: Also return residual-distribution, covariance Matrix
167 // or simply chi2 for validity check?
168 //
169
170 TLinearFitter fitter(3,"x0++x1++x2");
171 TVectorD param(3);
172 Int_t i = 0;
173
174 Int_t nsensors = fSensors->GetEntries();
175 for (Int_t isensor=0; isensor<nsensors; isensor++) { // loop over all sensors
176 AliTPCSensorTemp *entry = (AliTPCSensorTemp*)fSensors->At(isensor);
177
178 if (entry->GetType()==3 && entry->GetSide()==side) { // take SensorType:TPC
179 Double_t x[3];
180 x[0]=1;
181 x[1]=entry->GetX();
182 x[2]=entry->GetY();
183 Double_t y = entry->GetValue(timeSec); // get temperature value
184 fitter.AddPoint(x,y,1); // add values to LinearFitter
185 i++;
186 }
187
188 }
189 fitter.Eval();
190 fitter.GetParameters(param);
191
192 return param[2]; // return vertical (Y) tempGradient
193
194 }