]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TPC/AliTPCPreprocessor.cxx
One more warning fixed
[u/mrichter/AliRoot.git] / TPC / AliTPCPreprocessor.cxx
CommitLineData
54472e4f 1/**************************************************************************
2 * Copyright(c) 2007, 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
72df5829 16
54472e4f 17#include "AliTPCPreprocessor.h"
a7dce0bc 18#include "AliShuttleInterface.h"
54472e4f 19
20#include "AliCDBMetaData.h"
21#include "AliDCSValue.h"
22#include "AliLog.h"
23#include "AliTPCSensorTempArray.h"
a7dce0bc 24#include "AliTPCROC.h"
25#include "AliTPCCalROC.h"
26#include "AliTPCCalPad.h"
27#include "AliTPCCalibPedestal.h"
9f016d99 28#include "AliTPCCalibPulser.h"
29#include "AliTPCCalibCE.h"
9e66a8dd 30#include "TFile.h"
7b54c8e9 31#include "TTree.h"
bb30a935 32#include "TGraph.h"
7b54c8e9 33#include "TEnv.h"
bb30a935 34#include "TParameter.h"
54472e4f 35
36#include <TTimeStamp.h>
37
a7dce0bc 38const Int_t kValCutTemp = 100; // discard temperatures > 100 degrees
39const Int_t kDiffCutTemp = 5; // discard temperature differences > 5 degrees
bb30a935 40const TString kPedestalRunType = "PEDESTAL"; // pedestal run identifier
41const TString kPulserRunType = "PULSER"; // pulser run identifier
bdffc5fb 42const TString kPhysicsRunType = "PHYSICS"; // physics run identifier
9c754ce7 43const TString kStandAloneRunType = "STANDALONE"; // standalone run identifier
0ec9f1fa 44const TString kCosmicRunType = "COSMIC"; // cosmic run identifier
45const TString kLaserRunType = "LASER"; // laser run identifier
9c754ce7 46const TString kDaqRunType = "DAQ"; // DAQ run identifier
87d77b35 47const TString kAmandaTemp = "TPC_PT_%d_TEMPERATURE"; // Amanda string for temperature entries
bee89eeb 48//const Double_t kFitFraction = 0.7; // Fraction of DCS sensor fits required
68b512ca 49const Double_t kFitFraction = -1.0; // Don't require minimum number of fits in commissioning run
72df5829 50
54472e4f 51//
52// This class is the SHUTTLE preprocessor for the TPC detector.
54472e4f 53//
54
55ClassImp(AliTPCPreprocessor)
56
57//______________________________________________________________________________________________
6d07bf74 58AliTPCPreprocessor::AliTPCPreprocessor(AliShuttleInterface* shuttle) :
59 AliPreprocessor("TPC",shuttle),
9d2ce539 60 fConfEnv(0), fTemp(0), fHighVoltage(0), fHighVoltageStat(0), fConfigOK(kTRUE), fROC(0)
54472e4f 61{
62 // constructor
a7dce0bc 63 fROC = AliTPCROC::Instance();
72534123 64
65 // define run types to be processed
66
67 AddRunType(kPedestalRunType);
68 AddRunType(kPulserRunType);
69 AddRunType(kPhysicsRunType);
70 AddRunType(kStandAloneRunType);
71 AddRunType(kCosmicRunType);
72 AddRunType(kLaserRunType);
73 AddRunType(kDaqRunType);
74
54472e4f 75}
72df5829 76//______________________________________________________________________________________________
f4a89669 77 AliTPCPreprocessor::AliTPCPreprocessor(const AliTPCPreprocessor& ) :
78 AliPreprocessor("TPC",0),
9d2ce539 79 fConfEnv(0), fTemp(0), fHighVoltage(0), fHighVoltageStat(0), fConfigOK(kTRUE), fROC(0)
f4a89669 80 {
81
82 Fatal("AliTPCPreprocessor", "copy constructor not implemented");
f7f602cc 83//
84// // fTemp = new AliTPCSensorTempArray(*(org.fTemp));
f4a89669 85 }
54472e4f 86
87//______________________________________________________________________________________________
88AliTPCPreprocessor::~AliTPCPreprocessor()
89{
90 // destructor
a7dce0bc 91
54472e4f 92 delete fTemp;
bdffc5fb 93 delete fHighVoltage;
54472e4f 94}
72df5829 95//______________________________________________________________________________________________
96AliTPCPreprocessor& AliTPCPreprocessor::operator = (const AliTPCPreprocessor& )
97{
98 Fatal("operator =", "assignment operator not implemented");
99 return *this;
100}
101
54472e4f 102
103//______________________________________________________________________________________________
104void AliTPCPreprocessor::Initialize(Int_t run, UInt_t startTime,
105 UInt_t endTime)
106{
bb30a935 107 // Creates AliTestDataDCS object -- start maps half an hour beforre actual run start
54472e4f 108
bb30a935 109 UInt_t startTimeLocal = startTime-1800;
110
111 AliPreprocessor::Initialize(run, startTimeLocal, endTime);
54472e4f 112
113 AliInfo(Form("\n\tRun %d \n\tStartTime %s \n\tEndTime %s", run,
f4a89669 114 TTimeStamp((time_t)startTime,0).AsString(),
115 TTimeStamp((time_t)endTime,0).AsString()));
54472e4f 116
7b54c8e9 117 // Preprocessor configuration
118
37092b2b 119 AliCDBEntry* entry = GetFromOCDB("Config", "Preprocessor");
7b54c8e9 120 if (entry) fConfEnv = (TEnv*) entry->GetObject();
121 if ( fConfEnv==0 ) {
7b54c8e9 122 Log("AliTPCPreprocsessor: Preprocessor Config OCDB entry missing.\n");
37092b2b 123 fConfigOK = kFALSE;
124 return;
7b54c8e9 125 }
126
18eade96 127 // Temperature sensors
128
136e44f7 129 TTree *confTree = 0;
130
131 TString tempConf = fConfEnv->GetValue("Temperature","ON");
132 tempConf.ToUpper();
133 if (tempConf != "OFF" ) {
7b54c8e9 134 entry = GetFromOCDB("Config", "Temperature");
f7f602cc 135 if (entry) confTree = (TTree*) entry->GetObject();
18eade96 136 if ( confTree==0 ) {
18eade96 137 Log("AliTPCPreprocsessor: Temperature Config OCDB entry missing.\n");
138 fConfigOK = kFALSE;
f7f602cc 139 return;
18eade96 140 }
bb30a935 141 fTemp = new AliTPCSensorTempArray(startTimeLocal, fEndTime, confTree, kAmandaTemp);
18eade96 142 fTemp->SetValCut(kValCutTemp);
143 fTemp->SetDiffCut(kDiffCutTemp);
136e44f7 144 }
18eade96 145
bdffc5fb 146 // High voltage measurements
147
136e44f7 148 TString hvConf = fConfEnv->GetValue("HighVoltage","ON");
149 hvConf.ToUpper();
150 if (hvConf != "OFF" ) {
bdffc5fb 151 confTree=0;
152 entry=0;
153 entry = GetFromOCDB("Config", "HighVoltage");
154 if (entry) confTree = (TTree*) entry->GetObject();
155 if ( confTree==0 ) {
156 Log("AliTPCPreprocsessor: High Voltage Config OCDB entry missing.\n");
157 fConfigOK = kFALSE;
158 return;
159 }
bb30a935 160 fHighVoltage = new AliDCSSensorArray(startTimeLocal, fEndTime, confTree);
bff20895 161 }
9d2ce539 162
163 // High voltage status values
164
bff20895 165 TString hvStatConf = fConfEnv->GetValue("HighVoltageStat","ON");
166 hvStatConf.ToUpper();
167 if (hvStatConf != "OFF" ) {
9d2ce539 168 confTree=0;
169 entry=0;
170 entry = GetFromOCDB("Config", "HighVoltageStat");
171 if (entry) confTree = (TTree*) entry->GetObject();
172 if ( confTree==0 ) {
173 Log("AliTPCPreprocsessor: High Voltage Status Config OCDB entry missing.\n");
174 fConfigOK = kFALSE;
175 return;
176 }
177 fHighVoltageStat = new AliDCSSensorArray(startTimeLocal, fEndTime, confTree);
bdffc5fb 178 }
54472e4f 179}
180
181//______________________________________________________________________________________________
182UInt_t AliTPCPreprocessor::Process(TMap* dcsAliasMap)
183{
184 // Fills data into TPC calibrations objects
185
54472e4f 186 // Amanda servers provide information directly through dcsAliasMap
187
bb30a935 188
a7dce0bc 189 if (!fConfigOK) return 9;
136e44f7 190 UInt_t result = 0;
bb30a935 191 TObjArray *resultArray = new TObjArray();
192 TString errorHandling = fConfEnv->GetValue("ErrorHandling","ON");
193 errorHandling.ToUpper();
194 TObject * status;
195
196 UInt_t dcsResult=0;
197 if (errorHandling == "OFF" ) {
198 if (!dcsAliasMap) dcsResult=1;
199 if (dcsAliasMap->GetEntries() == 0 ) dcsResult=1;
200 status = new TParameter<int>("dcsResult",dcsResult);
201 resultArray->Add(status);
202 } else {
203 if (!dcsAliasMap) return 9;
204 if (dcsAliasMap->GetEntries() == 0 ) return 9;
205 }
206
207
208
a7dce0bc 209
210 TString runType = GetRunType();
211
54472e4f 212 // Temperature sensors are processed by AliTPCCalTemp
72df5829 213
136e44f7 214 TString tempConf = fConfEnv->GetValue("Temperature","ON");
215 tempConf.ToUpper();
216 if (tempConf != "OFF" ) {
217 UInt_t tempResult = MapTemperature(dcsAliasMap);
218 result=tempResult;
bb30a935 219 status = new TParameter<int>("tempResult",tempResult);
220 resultArray->Add(status);
136e44f7 221 }
18eade96 222
bdffc5fb 223 // High Voltage recordings
224
225
136e44f7 226 TString hvConf = fConfEnv->GetValue("HighVoltage","ON");
227 hvConf.ToUpper();
228 if (hvConf != "OFF" ) {
229 UInt_t hvResult = MapHighVoltage(dcsAliasMap);
230 result+=hvResult;
bb30a935 231 status = new TParameter<int>("hvResult",hvResult);
232 resultArray->Add(status);
bdffc5fb 233 }
f7f602cc 234
54472e4f 235 // Other calibration information will be retrieved through FXS files
a7dce0bc 236 // examples:
54472e4f 237 // TList* fileSourcesDAQ = GetFile(AliShuttleInterface::kDAQ, "pedestals");
238 // const char* fileNamePed = GetFile(AliShuttleInterface::kDAQ, "pedestals", "LDC1");
239 //
240 // TList* fileSourcesHLT = GetFile(AliShuttleInterface::kHLT, "calib");
241 // const char* fileNameHLT = GetFile(AliShuttleInterface::kHLT, "calib", "LDC1");
242
9f016d99 243 // pedestal entries
54472e4f 244
a7dce0bc 245 if(runType == kPedestalRunType) {
68b512ca 246 Int_t numSources = 1;
247 Int_t pedestalSource[2] = {AliShuttleInterface::kDAQ,AliShuttleInterface::kHLT} ;
7b54c8e9 248 TString source = fConfEnv->GetValue("Pedestal","DAQ");
249 source.ToUpper();
136e44f7 250 if (source != "OFF" ) {
251 if ( source == "HLT") pedestalSource[0] = AliShuttleInterface::kHLT;
252 if (!GetHLTStatus()) pedestalSource[0] = AliShuttleInterface::kDAQ;
253 if (source == "HLTDAQ" ) {
254 numSources=2;
255 pedestalSource[0] = AliShuttleInterface::kHLT;
256 pedestalSource[1] = AliShuttleInterface::kDAQ;
257 }
258 if (source == "DAQHLT" ) numSources=2;
259 UInt_t pedestalResult=0;
260 for (Int_t i=0; i<numSources; i++ ) {
453bd596 261 pedestalResult = ExtractPedestals(pedestalSource[i]);
136e44f7 262 if ( pedestalResult == 0 ) break;
263 }
264 result += pedestalResult;
bb30a935 265 status = new TParameter<int>("pedestalResult",pedestalResult);
266 resultArray->Add(status);
68b512ca 267 }
a7dce0bc 268 }
269
9f016d99 270 // pulser trigger processing
271
68b512ca 272 if(runType == kPulserRunType) {
273 Int_t numSources = 1;
274 Int_t pulserSource[2] = {AliShuttleInterface::kDAQ,AliShuttleInterface::kHLT} ;
9f016d99 275 TString source = fConfEnv->GetValue("Pulser","DAQ");
276 source.ToUpper();
136e44f7 277 if ( source != "OFF") {
278 if ( source == "HLT") pulserSource[0] = AliShuttleInterface::kHLT;
279 if (!GetHLTStatus()) pulserSource[0] = AliShuttleInterface::kDAQ;
280 if (source == "HLTDAQ" ) {
281 numSources=2;
282 pulserSource[0] = AliShuttleInterface::kHLT;
283 pulserSource[1] = AliShuttleInterface::kDAQ;
284 }
285 if (source == "DAQHLT" ) numSources=2;
286 UInt_t pulserResult=0;
287 for (Int_t i=0; i<numSources; i++ ) {
288 pulserResult = ExtractPulser(pulserSource[i]);
289 if ( pulserResult == 0 ) break;
290 }
291 result += pulserResult;
bb30a935 292 status = new TParameter<int>("pulserResult",pulserResult);
293 resultArray->Add(status);
68b512ca 294 }
9f016d99 295 }
296
68b512ca 297
298
9f016d99 299 // Central Electrode processing
300
9d2ce539 301 if( runType == kPhysicsRunType || runType == kStandAloneRunType ||
302 runType == kDaqRunType ) {
68b512ca 303
9d2ce539 304// if (true) { // do CE processing for all run types
68b512ca 305 Int_t numSources = 1;
306 Int_t ceSource[2] = {AliShuttleInterface::kDAQ,AliShuttleInterface::kHLT} ;
9f016d99 307 TString source = fConfEnv->GetValue("CE","DAQ");
308 source.ToUpper();
136e44f7 309 if ( source != "OFF" ) {
310 if ( source == "HLT") ceSource[0] = AliShuttleInterface::kHLT;
311 if (!GetHLTStatus()) ceSource[0] = AliShuttleInterface::kDAQ;
312 if (source == "HLTDAQ" ) {
68b512ca 313 numSources=2;
314 ceSource[0] = AliShuttleInterface::kHLT;
315 ceSource[1] = AliShuttleInterface::kDAQ;
136e44f7 316 }
317 if (source == "DAQHLT" ) numSources=2;
318 UInt_t ceResult=0;
319 for (Int_t i=0; i<numSources; i++ ) {
320 ceResult = ExtractCE(ceSource[i]);
321 if ( ceResult == 0 ) break;
322 }
323 result += ceResult;
bb30a935 324 status = new TParameter<int>("ceResult",ceResult);
325 resultArray->Add(status);
68b512ca 326 }
9f016d99 327 }
136e44f7 328
136e44f7 329 if (errorHandling == "OFF" ) {
bb30a935 330 AliCDBMetaData metaData;
331 metaData.SetBeamPeriod(0);
332 metaData.SetResponsible("Haavard Helstrup");
333 metaData.SetComment("Preprocessor AliTPC status.");
334 Store("Calib", "PreprocStatus", resultArray, &metaData, 0, kFALSE);
335 resultArray->Delete();
336 return 0;
136e44f7 337 } else {
bb30a935 338 return result;
136e44f7 339 }
54472e4f 340}
341//______________________________________________________________________________________________
342UInt_t AliTPCPreprocessor::MapTemperature(TMap* dcsAliasMap)
343{
344
345 // extract DCS temperature maps. Perform fits to save space
346
72df5829 347 UInt_t result=0;
54472e4f 348 TMap *map = fTemp->ExtractDCS(dcsAliasMap);
349 if (map) {
350 fTemp->MakeSplineFit(map);
68b512ca 351 Double_t fitFraction = 1.0*fTemp->NumFits()/fTemp->NumSensors();
67a165ed 352 if (fitFraction > kFitFraction ) {
353 AliInfo(Form("Temperature values extracted, fits performed.\n"));
354 } else {
355 Log ("Too few temperature maps fitted. \n");
356 result = 9;
357 }
54472e4f 358 } else {
67a165ed 359 Log("No temperature map extracted. \n");
72df5829 360 result=9;
54472e4f 361 }
362 delete map;
363 // Now store the final CDB file
a7dce0bc 364
365 if ( result == 0 ) {
72df5829 366 AliCDBMetaData metaData;
54472e4f 367 metaData.SetBeamPeriod(0);
368 metaData.SetResponsible("Haavard Helstrup");
369 metaData.SetComment("Preprocessor AliTPC data base entries.");
370
a7dce0bc 371 Bool_t storeOK = Store("Calib", "Temperature", fTemp, &metaData, 0, kFALSE);
372 if ( !storeOK ) result=1;
373
72df5829 374 }
54472e4f 375
376 return result;
7b54c8e9 377
54472e4f 378}
7b54c8e9 379
bdffc5fb 380//______________________________________________________________________________________________
381UInt_t AliTPCPreprocessor::MapHighVoltage(TMap* dcsAliasMap)
382{
383
384 // extract DCS HV maps. Perform fits to save space
385
386 UInt_t result=0;
387 TMap *map = fHighVoltage->ExtractDCS(dcsAliasMap);
388 if (map) {
389 fHighVoltage->MakeSplineFit(map);
68b512ca 390 Double_t fitFraction = 1.0*fHighVoltage->NumFits()/fHighVoltage->NumSensors();
bdffc5fb 391 if (fitFraction > kFitFraction ) {
136e44f7 392 AliInfo(Form("High voltage recordings extracted, fits performed.\n"));
bdffc5fb 393 } else {
394 Log ("Too few high voltage recordings fitted. \n");
395 result = 9;
396 }
397 } else {
398 Log("No high voltage recordings extracted. \n");
399 result=9;
400 }
401 delete map;
9d2ce539 402
bff20895 403 TString hvStatConf = fConfEnv->GetValue("HighVoltageStat","ON");
404 hvStatConf.ToUpper();
405 if (hvStatConf != "OFF" ) {
406 TMap *map2 = fHighVoltageStat->ExtractDCS(dcsAliasMap);
407 if (map2) {
408 fHighVoltageStat->StoreGraph(map2);
409 } else {
410 Log("No high voltage status recordings extracted. \n");
411 result=9;
412 }
413 delete map2;
9d2ce539 414
bff20895 415 // add status maps to high voltage sensor array
9d2ce539 416
bff20895 417 fHighVoltage->AddSensors(fHighVoltageStat);
418 }
bdffc5fb 419 // Now store the final CDB file
420
421 if ( result == 0 ) {
422 AliCDBMetaData metaData;
423 metaData.SetBeamPeriod(0);
424 metaData.SetResponsible("Haavard Helstrup");
425 metaData.SetComment("Preprocessor AliTPC data base entries.");
426
427 Bool_t storeOK = Store("Calib", "HighVoltage", fHighVoltage, &metaData, 0, kFALSE);
428 if ( !storeOK ) result=1;
429
430 }
431
432 return result;
433
434}
435
7b54c8e9 436
a7dce0bc 437//______________________________________________________________________________________________
7b54c8e9 438
439UInt_t AliTPCPreprocessor::ExtractPedestals(Int_t sourceFXS)
a7dce0bc 440{
441 //
442 // Read pedestal file from file exchage server
443 // Keep original entry from OCDB in case no new pedestals are available
444 //
445 AliTPCCalPad *calPadPed=0;
446 AliCDBEntry* entry = GetFromOCDB("Calib", "Pedestals");
447 if (entry) calPadPed = (AliTPCCalPad*)entry->GetObject();
448 if ( calPadPed==NULL ) {
a7dce0bc 449 Log("AliTPCPreprocsessor: No previous TPC pedestal entry available.\n");
7b54c8e9 450 calPadPed = new AliTPCCalPad("PedestalsMean","PedestalsMean");
451 }
452
453 AliTPCCalPad *calPadRMS=0;
d63b9ad7 454 entry = GetFromOCDB("Calib", "PadNoise");
7b54c8e9 455 if (entry) calPadRMS = (AliTPCCalPad*)entry->GetObject();
456 if ( calPadRMS==NULL ) {
7b54c8e9 457 Log("AliTPCPreprocsessor: No previous TPC noise entry available.\n");
458 calPadRMS = new AliTPCCalPad("PedestalsRMS","PedestalsRMS");
a7dce0bc 459 }
460
7b54c8e9 461
a7dce0bc 462 UInt_t result=0;
463
464 Int_t nSectors = fROC->GetNSectors();
7b54c8e9 465 TList* list = GetFileSources(sourceFXS,"pedestals");
9f016d99 466
467 if (list && list->GetEntries()>0) {
a7dce0bc 468
469// loop through all files from LDCs
470
bdffc5fb 471 Bool_t changed=false;
a7dce0bc 472 UInt_t index = 0;
473 while (list->At(index)!=NULL) {
474 TObjString* fileNameEntry = (TObjString*) list->At(index);
475 if (fileNameEntry!=NULL) {
7b54c8e9 476 TString fileName = GetFile(sourceFXS, "pedestals",
a7dce0bc 477 fileNameEntry->GetString().Data());
478 TFile *f = TFile::Open(fileName);
9f016d99 479 if (!f) {
480 Log ("Error opening pedestal file.");
481 result =2;
482 break;
483 }
a7dce0bc 484 AliTPCCalibPedestal *calPed;
e73181c9 485 f->GetObject("tpcCalibPedestal",calPed);
67a165ed 486 if ( !calPed ) {
487 Log ("No pedestal calibration object in file.");
488 result = 2;
489 break;
490 }
a7dce0bc 491
492 // replace entries for the sectors available in the present file
493
bdffc5fb 494 changed=true;
c9c23d80 495 for (Int_t sector=0; sector<nSectors; sector++) {
7b54c8e9 496 AliTPCCalROC *rocPed=calPed->GetCalRocPedestal(sector, kFALSE);
497 if ( rocPed ) calPadPed->SetCalROC(rocPed,sector);
498 AliTPCCalROC *rocRMS=calPed->GetCalRocRMS(sector, kFALSE);
499 if ( rocRMS ) calPadRMS->SetCalROC(rocRMS,sector);
a7dce0bc 500 }
a480de15 501 delete calPed;
342d3b42 502 f->Close();
a7dce0bc 503 }
504 ++index;
505 } // while(list)
506//
507// Store updated pedestal entry to OCDB
508//
bdffc5fb 509 if (changed) {
510 AliCDBMetaData metaData;
511 metaData.SetBeamPeriod(0);
512 metaData.SetResponsible("Haavard Helstrup");
513 metaData.SetComment("Preprocessor AliTPC data base entries.");
514
515 Bool_t storeOK = Store("Calib", "Pedestals", calPadPed, &metaData, 0, kTRUE);
516 if ( !storeOK ) ++result;
517 storeOK = Store("Calib", "PadNoise", calPadRMS, &metaData, 0, kTRUE);
518 if ( !storeOK ) ++result;
519 }
9f016d99 520 } else {
67a165ed 521 Log ("Error: no entries in input file list!");
9f016d99 522 result = 1;
7b54c8e9 523 }
a7dce0bc 524
a7dce0bc 525 return result;
526}
7b54c8e9 527
528//______________________________________________________________________________________________
529
530
9f016d99 531UInt_t AliTPCPreprocessor::ExtractPulser(Int_t sourceFXS)
532{
533 //
534 // Read pulser calibration file from file exchage server
535 // Keep original entry from OCDB in case no new pulser calibration is available
536 //
537 TObjArray *pulserObjects=0;
538 AliTPCCalPad *pulserTmean=0;
539 AliTPCCalPad *pulserTrms=0;
540 AliTPCCalPad *pulserQmean=0;
541 AliCDBEntry* entry = GetFromOCDB("Calib", "Pulser");
542 if (entry) pulserObjects = (TObjArray*)entry->GetObject();
543 if ( pulserObjects==NULL ) {
544 Log("AliTPCPreprocsessor: No previous TPC pulser entry available.\n");
545 pulserObjects = new TObjArray;
546 }
547
548 pulserTmean = (AliTPCCalPad*)pulserObjects->FindObject("PulserTmean");
549 if ( !pulserTmean ) {
550 pulserTmean = new AliTPCCalPad("PulserTmean","PulserTmean");
551 pulserObjects->Add(pulserTmean);
552 }
553 pulserTrms = (AliTPCCalPad*)pulserObjects->FindObject("PulserTrms");
554 if ( !pulserTrms ) {
555 pulserTrms = new AliTPCCalPad("PulserTrms","PulserTrms");
556 pulserObjects->Add(pulserTrms);
557 }
558 pulserQmean = (AliTPCCalPad*)pulserObjects->FindObject("PulserQmean");
559 if ( !pulserQmean ) {
560 pulserQmean = new AliTPCCalPad("PulserQmean","PulserQmean");
561 pulserObjects->Add(pulserQmean);
562 }
563
564
565 UInt_t result=0;
566
567 Int_t nSectors = fROC->GetNSectors();
568 TList* list = GetFileSources(sourceFXS,"pulser");
569
570 if (list && list->GetEntries()>0) {
571
572// loop through all files from LDCs
573
bdffc5fb 574 Bool_t changed=false;
9f016d99 575 UInt_t index = 0;
576 while (list->At(index)!=NULL) {
577 TObjString* fileNameEntry = (TObjString*) list->At(index);
578 if (fileNameEntry!=NULL) {
579 TString fileName = GetFile(sourceFXS, "pulser",
580 fileNameEntry->GetString().Data());
581 TFile *f = TFile::Open(fileName);
582 if (!f) {
583 Log ("Error opening pulser file.");
584 result =2;
585 break;
586 }
587 AliTPCCalibPulser *calPulser;
e73181c9 588 f->GetObject("tpcCalibPulser",calPulser);
67a165ed 589 if ( !calPulser ) {
590 Log ("No pulser calibration object in file.");
591 result = 2;
592 break;
593 }
9f016d99 594
595 // replace entries for the sectors available in the present file
596
bdffc5fb 597 changed=true;
9f016d99 598 for (Int_t sector=0; sector<nSectors; sector++) {
599 AliTPCCalROC *rocTmean=calPulser->GetCalRocT0(sector);
600 if ( rocTmean ) pulserTmean->SetCalROC(rocTmean,sector);
601 AliTPCCalROC *rocTrms=calPulser->GetCalRocRMS(sector);
602 if ( rocTrms ) pulserTrms->SetCalROC(rocTrms,sector);
603 AliTPCCalROC *rocQmean=calPulser->GetCalRocQ(sector);
604 if ( rocQmean ) pulserQmean->SetCalROC(rocQmean,sector);
605 }
a480de15 606 delete calPulser;
342d3b42 607 f->Close();
9f016d99 608 }
609 ++index;
610 } // while(list)
611//
612// Store updated pedestal entry to OCDB
613//
bdffc5fb 614 if (changed) {
615 AliCDBMetaData metaData;
616 metaData.SetBeamPeriod(0);
617 metaData.SetResponsible("Haavard Helstrup");
618 metaData.SetComment("Preprocessor AliTPC data base entries.");
619
620 Bool_t storeOK = Store("Calib", "Pulser", pulserObjects, &metaData, 0, kTRUE);
621 if ( !storeOK ) ++result;
622 }
9f016d99 623 } else {
67a165ed 624 Log ("Error: no entries in input file list!");
9f016d99 625 result = 1;
626 }
627
628 return result;
629}
630
631UInt_t AliTPCPreprocessor::ExtractCE(Int_t sourceFXS)
632{
633 //
634 // Read Central Electrode file from file exchage server
635 // Keep original entry from OCDB in case no new CE calibration is available
636 //
637 TObjArray *ceObjects=0;
638 AliTPCCalPad *ceTmean=0;
639 AliTPCCalPad *ceTrms=0;
640 AliTPCCalPad *ceQmean=0;
bb30a935 641 TObjArray *rocTtime=0;
642 TObjArray *rocQtime=0;
643
9f016d99 644 AliCDBEntry* entry = GetFromOCDB("Calib", "CE");
645 if (entry) ceObjects = (TObjArray*)entry->GetObject();
646 if ( ceObjects==NULL ) {
647 Log("AliTPCPreprocsessor: No previous TPC central electrode entry available.\n");
648 ceObjects = new TObjArray;
649 }
650
bb30a935 651 Int_t nSectors = fROC->GetNSectors();
652
9f016d99 653 ceTmean = (AliTPCCalPad*)ceObjects->FindObject("CETmean");
654 if ( !ceTmean ) {
655 ceTmean = new AliTPCCalPad("CETmean","CETmean");
656 ceObjects->Add(ceTmean);
657 }
658 ceTrms = (AliTPCCalPad*)ceObjects->FindObject("CETrms");
659 if ( !ceTrms ) {
660 ceTrms = new AliTPCCalPad("CETrms","CETrms");
661 ceObjects->Add(ceTrms);
662 }
663 ceQmean = (AliTPCCalPad*)ceObjects->FindObject("CEQmean");
664 if ( !ceQmean ) {
665 ceQmean = new AliTPCCalPad("CEQmean","CEQmean");
666 ceObjects->Add(ceQmean);
667 }
38fcad6d 668 //!new from here please have a look!!!
669 rocTtime = (TObjArray*)ceObjects->FindObject("rocTtime");
670 if ( !rocTtime ) {
bb30a935 671 rocTtime = new TObjArray(nSectors);
38fcad6d 672 rocTtime->SetName("rocTtime");
673 ceObjects->Add(rocTtime);
674 }
bb30a935 675
676 rocQtime = (TObjArray*)ceObjects->FindObject("rocQtime");
38fcad6d 677 if ( !rocQtime ) {
bb30a935 678 rocQtime = new TObjArray(nSectors);
38fcad6d 679 rocQtime->SetName("rocQtime");
680 ceObjects->Add(rocQtime);
681 }
9f016d99 682
683
684 UInt_t result=0;
685
9f016d99 686 TList* list = GetFileSources(sourceFXS,"CE");
687
688 if (list && list->GetEntries()>0) {
689
690// loop through all files from LDCs
691
692 UInt_t index = 0;
693 while (list->At(index)!=NULL) {
694 TObjString* fileNameEntry = (TObjString*) list->At(index);
695 if (fileNameEntry!=NULL) {
696 TString fileName = GetFile(sourceFXS, "CE",
697 fileNameEntry->GetString().Data());
698 TFile *f = TFile::Open(fileName);
699 if (!f) {
700 Log ("Error opening central electrode file.");
701 result =2;
702 break;
703 }
704 AliTPCCalibCE *calCE;
e73181c9 705 f->GetObject("tpcCalibCE",calCE);
9f016d99 706
707 // replace entries for the sectors available in the present file
708
709 for (Int_t sector=0; sector<nSectors; sector++) {
710 AliTPCCalROC *rocTmean=calCE->GetCalRocT0(sector);
711 if ( rocTmean ) ceTmean->SetCalROC(rocTmean,sector);
712 AliTPCCalROC *rocTrms=calCE->GetCalRocRMS(sector);
713 if ( rocTrms ) ceTrms->SetCalROC(rocTrms,sector);
714 AliTPCCalROC *rocQmean=calCE->GetCalRocQ(sector);
38fcad6d 715 if ( rocQmean ) ceQmean->SetCalROC(rocQmean,sector);
bb30a935 716 TGraph *grT=calCE->MakeGraphTimeCE(sector,0,2); // T time graph
717 if ( grT ) rocTtime->AddAt(grT,sector);
718 TGraph *grQ=calCE->MakeGraphTimeCE(sector,0,3); // Q time graph
719 if ( grQ ) rocTtime->AddAt(grQ,sector);
9f016d99 720 }
a480de15 721 delete calCE;
342d3b42 722 f->Close();
9f016d99 723 }
724 ++index;
725 } // while(list)
726//
727// Store updated pedestal entry to OCDB
728//
729 AliCDBMetaData metaData;
730 metaData.SetBeamPeriod(0);
731 metaData.SetResponsible("Haavard Helstrup");
732 metaData.SetComment("Preprocessor AliTPC data base entries.");
733
734 Bool_t storeOK = Store("Calib", "CE", ceObjects, &metaData, 0, kTRUE);
735 if ( !storeOK ) ++result;
736
737 } else {
738 Log ("Error: no entries!");
739 result = 1;
740 }
741
742 return result;
743}