]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/AliTRDPreprocessor.cxx
- Added Method for the consistency of the chip numbering in both reading
[u/mrichter/AliRoot.git] / TRD / AliTRDPreprocessor.cxx
CommitLineData
ec55623f 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/* $Id$ */
17
18////////////////////////////////////////////////////////////////////////////
19// //
20// This class is a first implementation for the TRD. //
21// It takes data from HLT and computes the parameters //
22// and stores both reference data and online calibration //
23// parameters in the CDB //
a5e1169e 24// It alsotakes DCS data, does spline fits //
25// and stores both reference data and spline fits results //
26// in the CDB //
ec55623f 27// //
fdfee371 28// Authors: //
ec55623f 29// R. Bailhache (R.Bailhache@gsi.de) //
cd4fc278 30// W. Monange (w.monange@gsi.de) //
fdfee371 31// F. Kramer (kramer@ikf.uni-frankfurt.de) //
ec55623f 32// //
33////////////////////////////////////////////////////////////////////////////
e5c60cc7 34
c893147d 35#include <fstream>
36
e5c60cc7 37#include <TFile.h>
38#include <TProfile2D.h>
e5c60cc7 39#include <TObjString.h>
40#include <TString.h>
41#include <TList.h>
fdfee371 42#include <TSAXParser.h>
e5c60cc7 43
44#include "AliCDBMetaData.h"
e5c60cc7 45#include "AliLog.h"
46
c8ab4518 47#include "AliTRDPreprocessor.h"
3a0f6479 48#include "AliTRDSensorArray.h"
67c25e8d 49#include "AliTRDCalibraFit.h"
50#include "AliTRDCalibraMode.h"
3a0f6479 51#include "AliTRDCalibPadStatus.h"
fdfee371 52#include "AliTRDSaxHandler.h"
c893147d 53#include "AliTRDgeometry.h"
5029ad25 54#include "Cal/AliTRDCalPad.h"
3a0f6479 55#include "Cal/AliTRDCalPadStatus.h"
fdfee371 56#include "Cal/AliTRDCalDCS.h"
5029ad25 57#include "Cal/AliTRDCalSingleChamberStatus.h"
58#include "Cal/AliTRDCalROC.h"
59
e5c60cc7 60ClassImp(AliTRDPreprocessor)
61
62//______________________________________________________________________________________________
ec55623f 63AliTRDPreprocessor::AliTRDPreprocessor(AliShuttleInterface *shuttle)
c8ab4518 64 :AliPreprocessor("TRD", shuttle)
65 ,fVdriftHLT(0)
e5c60cc7 66{
67 //
68 // Constructor
69 //
70
f9ed5395 71 AddRunType("PHYSICS");
72 AddRunType("STANDALONE");
73 AddRunType("PEDESTAL");
74 AddRunType("DAQ");
75
e5c60cc7 76}
77
78//______________________________________________________________________________________________
79AliTRDPreprocessor::~AliTRDPreprocessor()
80{
81 //
82 // Destructor
83 //
84
85}
86
87//______________________________________________________________________________________________
88void AliTRDPreprocessor::Initialize(Int_t run, UInt_t startTime, UInt_t endTime)
89{
90 //
91 // Initialization routine for the TRD preprocessor
92 //
93
94 AliPreprocessor::Initialize(run,startTime,endTime);
95
96}
97
98//______________________________________________________________________________________________
a5e1169e 99UInt_t AliTRDPreprocessor::Process(TMap* dcsAliasMap)
e5c60cc7 100{
a5e1169e 101 //
102 // Process DCS and calibration part for HLT
103 //
104
8dd14606 105 TString runType = GetRunType();
106 Log(Form("runtype %s\n",runType.Data()));
65ffd646 107
fdfee371 108 // always process the configuration data
3821ce70 109 Int_t DCSConfigReturn = ProcessDCSConfigData();
110 if(DCSConfigReturn) return DCSConfigReturn;
f9ed5395 111
b70c68da 112 if (runType=="PEDESTAL"){
8dd14606 113 if(ExtractPedestals()) return 1;
114 return 0;
115 }
a5e1169e 116
f9ed5395 117 if ((runType=="PHYSICS") || (runType=="STANDALONE") || (runType=="DAQ")){
65ffd646 118 // DCS
207402fc 119 if(ProcessDCS(dcsAliasMap)) return 1;
f9ed5395 120 if(runType=="PHYSICS"){
121 // HLT if On
122 //TString runPar = GetRunParameter("HLTStatus");
123 //if(runPar=="1") {
124 if(GetHLTStatus()) {
83bc2fc6 125 //if(ExtractHLT()) return 1; // for testing!
126 ExtractHLT();
f9ed5395 127 }
128 // DAQ if HLT failed
129 if(!fVdriftHLT) {
594b418c 130 //if(ExtractDriftVelocityDAQ()) return 1;
131 ExtractDriftVelocityDAQ(); // for testing!
f9ed5395 132 }
133 }
6ace5fe2 134 }
8dd14606 135
136 return 0;
6ace5fe2 137
f5bb5557 138}
139//______________________________________________________________________________
140Bool_t AliTRDPreprocessor::ProcessDCS()
141{
c8ab4518 142 //
143 // Default process DCS method
144 //
f5bb5557 145
146 TString runType = GetRunType();
b70c68da 147 if ((runType == "PHYSICS") || (runType == "STANDALONE")) {
c8ab4518 148 return kTRUE;
149 }
f5bb5557 150 return kFALSE;
151
6ace5fe2 152}
153
6ace5fe2 154//______________________________________________________________________________
c8ab4518 155Bool_t AliTRDPreprocessor::ProcessDCS(TMap *dcsAliasMap)
6ace5fe2 156{
c8ab4518 157 //
158 // Process DCS method
159 //
160
161 Bool_t error = kFALSE;
6ace5fe2 162
a5e1169e 163 AliCDBMetaData metaData;
164 metaData.SetBeamPeriod(0);
165 metaData.SetResponsible("Wilfried Monange/Raphaelle Bailhache");
166 metaData.SetComment("TRD calib test");
c8ab4518 167
168 Log("****** DCS ******\n");
cd4fc278 169
8dd14606 170 TObjArray * list=AliTRDSensorArray::GetList ();
cd4fc278 171
172 if (list == 0x0) {
6ace5fe2 173 Log ("Error during AliTRDSensorArray::GetList");
174 Log ("DCS will not be processing");
8dd14606 175 return kTRUE;
6ace5fe2 176 }
177
178 Int_t nEntries = list->GetEntries ();
179 Log (Form ("%d alias loaded", nEntries));
cd4fc278 180
6ace5fe2 181 Bool_t * results=new Bool_t [nEntries];
182 Int_t * nGraph=new Int_t [nEntries];
cd4fc278 183
6ace5fe2 184 for (Int_t iAlias = 0; iAlias < nEntries; iAlias++) {
cd4fc278 185
6ace5fe2 186 AliTRDSensorArray * oneTRDDCS = (AliTRDSensorArray *)list->At (iAlias);
cd4fc278 187
6ace5fe2 188 oneTRDDCS->SetStartTime (TTimeStamp (fStartTime));
189 oneTRDDCS->SetEndTime (TTimeStamp (fEndTime));
cd4fc278 190
c8ab4518 191 Log(Form("Processing DCS : \"%s\"", oneTRDDCS->GetStoreName ().Data ()));
cd4fc278 192
6ace5fe2 193 TMap * map;
194
195 map=oneTRDDCS->ExtractDCS (dcsAliasMap);
cd4fc278 196
6ace5fe2 197 nGraph [iAlias] = map->GetEntries ();
cd4fc278 198
6ace5fe2 199 if (nGraph [iAlias] == 0) {
200 Log("No TGraph for this dcsDatapointAlias : not stored");
201 results [iAlias] = kFALSE;
611a7239 202 //error = kTRUE;
6ace5fe2 203 continue;
204 }
cd4fc278 205
6ace5fe2 206 oneTRDDCS->SetGraph(map);
611a7239 207 results[iAlias]=Store("Calib", oneTRDDCS->GetStoreName().Data(), oneTRDDCS, &metaData, 0, kFALSE);
6ace5fe2 208 delete map;
209
210 //results [iAlias] = StoreReferenceData("Calib", oneTRDDCS->GetStoreName ().Data (), oneTRDDCS, &metaData);
211
6ace5fe2 212 if (!results[iAlias]) {
8dd14606 213 AliError("Problem during StoreRef DCS");
611a7239 214 //error=kTRUE;
6ace5fe2 215 }
216
6ace5fe2 217 //BEGIN TEST (should not be removed ...)
218 /*
219 oneTRDDCS->ClearGraph();
220 oneTRDDCS->ClearFit();
221 oneTRDDCS->SetDiffCut2 (0.1);
222 map=oneTRDDCS->ExtractDCS (dcsAliasMap);
223 oneTRDDCS->SetGraph (map);
224 Store("Calib", ("cut_"+oneTRDDCS->GetStoreName()).Data(), oneTRDDCS, &metaData, 0, kTRUE);
225 delete map;
226
227
228 if(iAlias==1 || iAlias==19) continue;
229
230 oneTRDDCS->ClearGraph();
231 oneTRDDCS->ClearFit();
232 oneTRDDCS->SetDiffCut2(0);
233 map=oneTRDDCS->ExtractDCS(dcsAliasMap);
234 oneTRDDCS->MakeSplineFit(map);
235 Store("Calib", ("fit_"+oneTRDDCS->GetStoreName()).Data() , oneTRDDCS, &metaData, 0, kTRUE);
236 delete map;
237
238
239 oneTRDDCS->ClearGraph();
240 oneTRDDCS->ClearFit();
241 oneTRDDCS->SetDiffCut2 (0.1);
242 map=oneTRDDCS->ExtractDCS (dcsAliasMap);
243 oneTRDDCS->MakeSplineFit(map);
244 Store("Calib", ("cutfit_"+oneTRDDCS->GetStoreName()).Data() , oneTRDDCS, &metaData, 0, kTRUE);
245 delete map;
246 */
247 //END TEST
248
6ace5fe2 249 }
611a7239 250
251 // Check errors
252 Int_t nbCount = 0;
253 for (Int_t iAlias = 0; iAlias < nEntries; iAlias++) {
254 if (results[iAlias]) {
255 nbCount++;
256 }
257 }
258 if(nbCount == 0) error = kTRUE;
259
cd4fc278 260
6ace5fe2 261 Log (" Summury of DCS :\n");
262 Log (Form("%30s %10s %10s", "dcsDatapointAlias", "Stored ?", "# graph"));
263 for (Int_t iAlias = 0; iAlias < nEntries; iAlias++) {
264 AliTRDSensorArray * oneTRDDCS = (AliTRDSensorArray *)list->At (iAlias);
265 Log (Form ("%30s %10s %4d",
266 oneTRDDCS->GetStoreName ().Data (),
267 results[iAlias] ? "ok" : "X",
268 nGraph [iAlias]));
269 }
270 Log ("*********** End of DCS **********");
271
272 delete results;
273 delete nGraph;
274
8dd14606 275 return error;
c8ab4518 276
6ace5fe2 277}
278
279//______________________________________________________________________________________________
8dd14606 280Bool_t AliTRDPreprocessor::ExtractPedestals()
6ace5fe2 281{
282 //
283 // Pedestal running on LDCs at the DAQ
284 //
54c85ef7 285
286 //
287 // The reference data are stored in:
288 // PadStatus1 for sm-00-01-02-09-10-11
289 // PadStatus2 for sm-03-04-05-12-13-14
290 // PadStatus3 for sm-06-07-08-15-16-17
291 // PadStatus0 if nothing found..means problems
292 //
5029ad25 293
8dd14606 294 Bool_t error = kFALSE;
6ace5fe2 295
296 // Init a AliTRDCalibPadStatus
297 AliTRDCalibPadStatus calPedSum = AliTRDCalibPadStatus();
298
299 AliCDBMetaData metaData;
300 metaData.SetBeamPeriod(0);
301 metaData.SetResponsible("Raphaelle Bailhache");
302 metaData.SetComment("TRD calib test");
303
304 // Sum the contributions of the LDCs
305 TList * listpad = GetFileSources(kDAQ,"PADSTATUS");
8dd14606 306 if (!listpad) {
307 Log("No list found for the PEDESTRAL Run");
308 return kTRUE;
309 }
310
c8ab4518 311 // loop through all files from LDCs
8dd14606 312 UInt_t index = 0;
313 while (listpad->At(index)!=NULL) {
314 TObjString* fileNameEntry = (TObjString*) listpad->At(index);
315 if (fileNameEntry != NULL)
316 {
6ace5fe2 317 TString fileName = GetFile(kDAQ, "PADSTATUS",
318 fileNameEntry->GetString().Data());
8dd14606 319 if(fileName.Length() ==0){
6ace5fe2 320 Log(Form("Error by retrieving the file %d for the pedestal",(Int_t)index));
8dd14606 321 delete listpad;
322 return kTRUE;
cd4fc278 323 }
8dd14606 324
325 TFile *f = TFile::Open(fileName);
326 AliTRDCalibPadStatus *calPed;
327 f->GetObject("calibpadstatus",calPed);
328
329 if(calPed){
330
54c85ef7 331 Int_t ldc = 0;
289cc637 332
8dd14606 333 // analyse
289cc637 334 //calPed->AnalyseHisto();
335
336 // Add to the calPedSum
337 for (Int_t idet=0; idet<540; idet++) {
338 AliTRDCalROC *rocMean = calPed->GetCalRocMean(idet, kFALSE);
339 if ( rocMean ) {
340 calPedSum.SetCalRocMean(rocMean,idet);
54c85ef7 341 ldc = (Int_t) (idet / 30);
289cc637 342 }
343 AliTRDCalROC *rocRMS = calPed->GetCalRocRMS(idet, kFALSE);
344 if ( rocRMS ) {
345 calPedSum.SetCalRocRMS(rocRMS,idet);
346 }
e4db522f 347 AliTRDCalROC *rocMeand = calPed->GetCalRocMeand(idet, kFALSE);
348 if ( rocMeand ) {
349 calPedSum.SetCalRocMeand(rocMeand,idet);
350 }
351 AliTRDCalROC *rocRMSd = calPed->GetCalRocRMSd(idet, kFALSE);
352 if ( rocRMSd ) {
353 calPedSum.SetCalRocRMSd(rocRMSd,idet);
354 }
289cc637 355 }// det loop
356
1ac4bb35 357 if((ldc==0) || (ldc==1) || (ldc==2)) ldc = 1;
358 if((ldc==3) || (ldc==4) || (ldc==5)) ldc = 2;
359 if((ldc==6) || (ldc==7) || (ldc==8)) ldc = 3;
360 if((ldc==9) || (ldc==10) || (ldc==11)) ldc = 4;
361 if((ldc==12) || (ldc==13) || (ldc==14)) ldc = 5;
362 if((ldc==15) || (ldc==16) || (ldc==17)) ldc = 6;
54c85ef7 363
8dd14606 364 // store as reference data
365 TString name("PadStatus");
54c85ef7 366 name += ldc;
8dd14606 367 if(!StoreReferenceData("DAQData",(const char *)name,(TObject *) calPed,&metaData)){
368 Log(Form("Error storing AliTRDCalibPadStatus object %d as reference data",(Int_t)index));
369 error = kTRUE;
370 }
289cc637 371
8dd14606 372 } // calPed
373 } // fileNameEntry
374 ++index;
375 }// while (list)
c8ab4518 376
8dd14606 377 Log(Form("%d elements found in the list for the pedestal",(Int_t)index));
378 if(index==0){
6ace5fe2 379 delete listpad;
8dd14606 380 return kTRUE;
6ace5fe2 381 }
c8ab4518 382
8dd14606 383 //
5029ad25 384 // Create pedestal
8dd14606 385 //
c8ab4518 386
8dd14606 387 // Create Pad Status
388 AliTRDCalPadStatus *calPadStatus = calPedSum.CreateCalPadStatus();
5029ad25 389 // Create Noise
390 //Make the AliTRDCalPad
391 AliTRDCalPad *calPad2 = calPedSum.CreateCalPad();
392 //Make the AliTRDCalDet correspondant
393 AliTRDCalDet *calDet = calPedSum.CreateCalDet();
394
395 //
396 // Take the noise and Pad status from the previous OCDB
397 //
398
399 AliTRDCalPad *calPadPrevious=0;
400 AliCDBEntry* entry = GetFromOCDB("Calib", "PadNoise");
401 if (entry) calPadPrevious = (AliTRDCalPad*)entry->GetObject();
402 if ( calPadPrevious==NULL ) {
403 Log("AliTRDPreprocsessor: No previous TRD pad noise entry available.\n");
404 calPadPrevious = new AliTRDCalPad("PadNoise", "PadNoise");
405 }
406
407 AliTRDCalPadStatus *calPadStatusPrevious=0;
408 entry = GetFromOCDB("Calib", "PadStatus");
409 if (entry) calPadStatusPrevious = (AliTRDCalPadStatus*)entry->GetObject();
410 if ( calPadStatusPrevious==NULL ) {
411 Log("AliTRDPreprocsessor: No previous TRD pad status entry available.\n");
412 calPadStatusPrevious = new AliTRDCalPadStatus("padstatus", "padstatus");
413 for (Int_t idet=0; idet<540; ++idet)
414 {
415 AliTRDCalSingleChamberStatus *calROC = calPadStatusPrevious->GetCalROC(idet);
416 for(Int_t k = 0; k < calROC->GetNchannels(); k++){
417 calROC->SetStatus(k,AliTRDCalPadStatus::kMasked);
418 }
419 }
420 }
421
422
423 // Loop over detectors for check
424 for (Int_t det=0; det<AliTRDgeometry::kNdet; ++det) {
425
426 // noise
427 AliTRDCalROC *calROCPreviousNoise = calPadPrevious->GetCalROC(det);
428 AliTRDCalROC *calROCNoise = calPad2->GetCalROC(det);
429
430 // padstatus
431 AliTRDCalSingleChamberStatus *calROCPreviousStatus = calPadStatusPrevious->GetCalROC(det);
432 AliTRDCalSingleChamberStatus *calROCStatus = calPadStatus->GetCalROC(det);
433
434
435 // loop over first half and second half chamber
436 for(Int_t half = 0; half < 2; half++){
437
438 Bool_t data = AreThereDataPedestal(calROCStatus,(Bool_t)half);
37b0cf5e 439 //printf("There are data for the detector %d the half %d: %d\n",det,half,data);
5029ad25 440 if(!data){
441 // look if data in the OCDB
442 Bool_t dataPrevious = AreThereDataPedestal(calROCPreviousStatus,(Bool_t)half);
443 // if no data at all, set to default value
444 if(!dataPrevious){
445 SetDefaultStatus(*calROCStatus,(Bool_t)half);
446 SetDefaultNoise(*calROCNoise,(Bool_t)half);
447 }
448 else{
449 // if data, set to previous value
450 SetStatus(*calROCStatus,calROCPreviousStatus,(Bool_t)half);
451 SetNoise(*calROCNoise,calROCPreviousNoise,(Bool_t)half);
452 }
453 }
454 }
455 }
456
457 //
458 // Store
459 //
460
8dd14606 461 AliCDBMetaData md3;
462 md3.SetObjectClassName("AliTRDCalPadStatus");
463 md3.SetResponsible("Raphaelle Bailhache");
464 md3.SetBeamPeriod(1);
465 md3.SetComment("TRD calib test");
466 if(!Store("Calib","PadStatus" ,(TObject *)calPadStatus, &md3, 0, kTRUE)){
467 Log("Error storing the pedestal");
468 delete listpad;
469 return kTRUE;
a5e1169e 470 }
289cc637 471
289cc637 472 AliCDBMetaData md4;
473 md4.SetObjectClassName("AliTRDCalPad");
474 md4.SetResponsible("Raphaelle Bailhache");
475 md4.SetBeamPeriod(1);
476 md4.SetComment("TRD calib test");
477 if(!Store("Calib","PadNoise" ,(TObject *)calPad2, &md4, 0, kTRUE)){
478 Log("Error storing the pedestal");
479 delete listpad;
480 return kTRUE;
481 }
5029ad25 482
289cc637 483 AliCDBMetaData md5;
484 md5.SetObjectClassName("AliTRDCalDet");
485 md5.SetResponsible("Raphaelle Bailhache");
486 md5.SetBeamPeriod(1);
487 md5.SetComment("TRD calib test");
488 if(!Store("Calib","DetNoise" ,(TObject *)calDet, &md5, 0, kTRUE)){
489 Log("Error storing the pedestal");
490 delete listpad;
491 return kTRUE;
492 }
493
8dd14606 494 delete listpad;
495 return error;
5029ad25 496
497}
c893147d 498
5029ad25 499//__________________________________________________________________
c893147d 500Bool_t AliTRDPreprocessor::AreThereDataPedestal(AliTRDCalSingleChamberStatus * const calROCStatus
501 , Bool_t second)
502{
a5e1169e 503
5029ad25 504 //
505 // Data for this half chamber
506 //
507
508 Bool_t data = kFALSE;
509 Int_t nCols = calROCStatus->GetNcols();
510 Int_t nCol0 = 0;
511 Int_t nColE = (Int_t) nCols/2 - 2;
512 if(second) {
513 nCol0 = nColE + 4;
514 nColE = nCols;
515 }
f2a468d7 516
517 Int_t totalnumberofpads = 0;
518 Int_t totalnumberofdata = 0;
519
5029ad25 520 for(Int_t col = nCol0; col < nColE; col++){
521 for(Int_t row = 0; row < calROCStatus->GetNrows(); row++){
f2a468d7 522 totalnumberofpads++;
5029ad25 523 //printf("ismasked %d\n",(Int_t)calROCStatus->IsMasked(col,row));
37b0cf5e 524 if(!calROCStatus->GetStatus(col,row)) {
5029ad25 525 data = kTRUE;
f2a468d7 526 totalnumberofdata++;
5029ad25 527 }
528 }
5029ad25 529 }
f2a468d7 530 if(totalnumberofdata < (Int_t)(totalnumberofpads/2)) data = kFALSE;
5029ad25 531
532 return data;
533
534}
535//__________________________________________________________________
536void AliTRDPreprocessor::SetDefaultStatus(AliTRDCalSingleChamberStatus &calROCStatus, Bool_t second){
537
538 //
539 // default status for this half chamber
540 //
541
542 Int_t nCols = calROCStatus.GetNcols();
543 Int_t nCol0 = 0;
544 Int_t nColE = (Int_t) nCols/2;
545 if(second) {
546 nCol0 = nColE;
547 nColE = nCols;
548 }
549 for(Int_t col = nCol0; col < nColE; col++){
550 for(Int_t row = 0; row < calROCStatus.GetNrows(); row++){
551 calROCStatus.SetStatus(col,row,0);
552 }
553 }
554}
555//__________________________________________________________________
556void AliTRDPreprocessor::SetStatus(AliTRDCalSingleChamberStatus &calROCStatus, AliTRDCalSingleChamberStatus *calROCStatusPrevious,Bool_t second){
557
558 //
559 // previous status for this half chamber
560 //
561
562 Int_t nCols = calROCStatus.GetNcols();
563 Int_t nCol0 = 0;
564 Int_t nColE = (Int_t) nCols/2;
565 if(second) {
566 nCol0 = nColE;
567 nColE = nCols;
568 }
569 for(Int_t col = nCol0; col < nColE; col++){
570 for(Int_t row = 0; row < calROCStatus.GetNrows(); row++){
571 calROCStatus.SetStatus(col,row,calROCStatusPrevious->GetStatus(col,row));
572 }
573 }
6ace5fe2 574}
5029ad25 575//__________________________________________________________________
576void AliTRDPreprocessor::SetDefaultNoise(AliTRDCalROC &calROCNoise, Bool_t second){
577
578 //
579 // default noise for this half chamber
580 //
c8ab4518 581
5029ad25 582 Int_t nCols = calROCNoise.GetNcols();
583 Int_t nCol0 = 0;
584 Int_t nColE = (Int_t) nCols/2;
585 if(second) {
586 nCol0 = nColE;
587 nColE = nCols;
588 }
589 for(Int_t col = nCol0; col < nColE; col++){
590 for(Int_t row = 0; row < calROCNoise.GetNrows(); row++){
591 calROCNoise.SetValue(col,row,0.12);
592 }
593 }
594}
595//__________________________________________________________________
596void AliTRDPreprocessor::SetNoise(AliTRDCalROC &calROCNoise, AliTRDCalROC *calROCNoisePrevious, Bool_t second){
597
598 //
599 // previous noise for this half chamber
600 //
601
602 Int_t nCols = calROCNoise.GetNcols();
603 Int_t nCol0 = 0;
604 Int_t nColE = (Int_t) nCols/2;
605 if(second) {
606 nCol0 = nColE;
607 nColE = nCols;
608 }
609 for(Int_t col = nCol0; col < nColE; col++){
610 for(Int_t row = 0; row < calROCNoise.GetNrows(); row++){
611 calROCNoise.SetValue(col,row,calROCNoisePrevious->GetValue(col,row));
612 }
613 }
614}
6ace5fe2 615//______________________________________________________________________________________________
8dd14606 616Bool_t AliTRDPreprocessor::ExtractDriftVelocityDAQ()
6ace5fe2 617{
e5c60cc7 618 //
6ace5fe2 619 // Drift velocity DA running on monitoring servers at the DAQ
e5c60cc7 620 //
621
8dd14606 622 Bool_t error = kFALSE;
6ace5fe2 623
624 // Objects for HLT and DAQ zusammen
3a0f6479 625 AliTRDCalibraFit *calibra = AliTRDCalibraFit::Instance();
6ace5fe2 626 AliCDBMetaData metaData;
627 metaData.SetBeamPeriod(0);
628 metaData.SetResponsible("Raphaelle Bailhache");
629 metaData.SetComment("TRD calib test");
3a0f6479 630 // Store the infos for the detector
6ace5fe2 631 AliCDBMetaData md1;
632 md1.SetObjectClassName("AliTRDCalDet");
633 md1.SetResponsible("Raphaelle Bailhache");
634 md1.SetBeamPeriod(0);
635 md1.SetComment("TRD calib test");
3a0f6479 636 // Store the infos for the pads
6ace5fe2 637 AliCDBMetaData md2;
638 md2.SetObjectClassName("AliTRDCalPad");
639 md2.SetResponsible("Raphaelle Bailhache");
640 md2.SetBeamPeriod(0);
641 md2.SetComment("TRD calib test");
3a0f6479 642
6ace5fe2 643 // Take the file from the DAQ file exchange server
644 TList *listdaq = GetFileSources(kDAQ,"VDRIFT");
8dd14606 645 if (!listdaq) {
6ace5fe2 646 Log("No list found for vdrift (DAQ)");
8dd14606 647 return kTRUE;
648 }
649
650 if(listdaq->GetSize() !=1){
651 Log(Form("Problem on the size of the list: %d (DAQ)",listdaq->GetSize()));
652 delete listdaq;
653 return kTRUE;
6ace5fe2 654 }
8dd14606 655
656 TObjString* fileNameEntry = (TObjString*) listdaq->At(0);
657 if(fileNameEntry != NULL){
658 TString fileName = GetFile(kDAQ, "VDRIFT",
659 fileNameEntry->GetString().Data());
660 if(fileName.Length() ==0){
661 Log("Error retrieving the file vdrift (DAQ)");
662 delete listdaq;
663 return kTRUE;
664 }
665 TFile *filedaq = TFile::Open(fileName);
666 TProfile2D *histodriftvelocity = (TProfile2D *) filedaq->Get("PH2d");
667 if (histodriftvelocity) {
668
669 // store as reference data
670 if(!StoreReferenceData("DAQData","VdriftT0",(TObject *) histodriftvelocity,&metaData)){
671 Log("Error storing 2D Profile for vdrift from the DAQ");
672 error = kTRUE;
673 }
674
675 // analyse
676
677 Log("Take the PH reference data. Now we will try to fit\n");
678 calibra->SetMinEntries(2000); // If there is less than 2000
679 calibra->AnalysePH(histodriftvelocity);
680
681 Int_t nbtg = 6*4*18*((Int_t) ((AliTRDCalibraMode *)calibra->GetCalibraMode())->GetDetChamb0(1))
682 + 6* 18*((Int_t) ((AliTRDCalibraMode *)calibra->GetCalibraMode())->GetDetChamb2(1));
683 Int_t nbfit = calibra->GetNumberFit();
684 Int_t nbE = calibra->GetNumberEnt();
685
686 // if enough statistics store the results
687 if ((nbtg > 0) &&
4da4a4c8 688 (nbfit >= 0.5*nbE) && (nbE > 30)) {
8dd14606 689 // create the cal objects
64942b85 690 calibra->PutMeanValueOtherVectorFit(1,kTRUE);
691 calibra->PutMeanValueOtherVectorFit2(1,kTRUE);
8dd14606 692 TObjArray object = calibra->GetVectorFit();
693 AliTRDCalDet *objdriftvelocitydet = calibra->CreateDetObjectVdrift(&object,kTRUE);
694 TObject *objdriftvelocitypad = calibra->CreatePadObjectVdrift();
695 object = calibra->GetVectorFit2();
696 AliTRDCalDet *objtime0det = calibra->CreateDetObjectT0(&object,kTRUE);
697 TObject *objtime0pad = calibra->CreatePadObjectT0();
698 calibra->ResetVectorFit();
699 // store
700 if(!Store("Calib","ChamberVdrift" ,(TObject *) objdriftvelocitydet,&md1,0,kTRUE)){
701 Log("Error storing the calibration object for the chamber vdrift (DAQ)");
702 error = kTRUE;
703 }
704 if(!Store("Calib","ChamberT0" ,(TObject *) objtime0det ,&md1,0,kTRUE)){
705 Log("Error storing the calibration object for the chamber t0 (DAQ)");
706 error = kTRUE;
707 }
708 if(!Store("Calib","LocalVdrift" ,(TObject *) objdriftvelocitypad,&md2,0,kTRUE)){
709 Log("Error storing the calibration object for the local drift velocity (DAQ)");
710 error = kTRUE;
711 }
712 if(!Store("Calib","LocalT0" ,(TObject *) objtime0pad ,&md2,0,kTRUE)){
713 Log("Error storing the calibration object for the local time0 (DAQ)");
714 error = kTRUE;
715 }
716 }
717 else{
718 Log("Not enough statistics for the average pulse height (DAQ)");
719 }
720 } // histo here
721 }// if fileNameEntry
722
723 delete listdaq;
724 return error;
725
6ace5fe2 726}
c8ab4518 727
6ace5fe2 728//______________________________________________________________________________________________
8dd14606 729Bool_t AliTRDPreprocessor::ExtractHLT()
6ace5fe2 730{
e5c60cc7 731 //
6ace5fe2 732 // Gain, vdrift and PRF calibration running on HLT
f5bb5557 733 // return kTRUE if NULL pointer to the list
e5c60cc7 734 //
3a0f6479 735
8dd14606 736 Bool_t error = kFALSE;
737
6ace5fe2 738 // Objects for HLT and DAQ zusammen
739 AliTRDCalibraFit *calibra = AliTRDCalibraFit::Instance();
740 AliCDBMetaData metaData;
741 metaData.SetBeamPeriod(0);
742 metaData.SetResponsible("Raphaelle Bailhache");
743 metaData.SetComment("TRD calib test");
744 // Store the infos for the detector
745 AliCDBMetaData md1;
746 md1.SetObjectClassName("AliTRDCalDet");
747 md1.SetResponsible("Raphaelle Bailhache");
748 md1.SetBeamPeriod(0);
749 md1.SetComment("TRD calib test");
750 // Store the infos for the pads
751 AliCDBMetaData md2;
752 md2.SetObjectClassName("AliTRDCalPad");
753 md2.SetResponsible("Raphaelle Bailhache");
754 md2.SetBeamPeriod(0);
755 md2.SetComment("TRD calib test");
6ace5fe2 756
757 // Take the file from the HLT file exchange server
758 TList *listhlt = GetFileSources(kHLT,"GAINDRIFTPRF");
8dd14606 759 if (!listhlt) {
6ace5fe2 760 Log("No list found for the HLT");
8dd14606 761 return kTRUE;
762 }
763
764 if(listhlt->GetSize() != 1) {
765 Log(Form("Problem on the size of the list: %d (HLT)",listhlt->GetSize()));
766 delete listhlt;
767 return kTRUE;
6ace5fe2 768 }
3a0f6479 769
8dd14606 770 TObjString* fileNameEntry = (TObjString*) listhlt->At(0);
771 if(fileNameEntry != NULL){
772 TString fileName = GetFile(kHLT, "GAINDRIFTPRF",
773 fileNameEntry->GetString().Data());
774 if(fileName.Length() ==0){
775 Log("Error retrieving the file (HLT)");
776 delete listhlt;
777 return kTRUE;
778 }
779 // Take the file
780 TFile *filehlt = TFile::Open(fileName);
781
8dd14606 782 // gain
783 TH2I *histogain = (TH2I *) filehlt->Get("CH2d");
784 histogain->SetDirectory(0);
785 if (histogain) {
786 // store the reference data
787 if(!StoreReferenceData("HLTData","Gain",(TObject *) histogain,&metaData)){
788 Log("Error storing 2D histos for gain");
789 error = kTRUE;
790 }
791 // analyse
792 Log("Take the CH reference data. Now we will try to fit\n");
64942b85 793 calibra->SetMinEntries(800); // If there is less than 1000 entries in the histo: no fit
8dd14606 794 calibra->AnalyseCH(histogain);
795 Int_t nbtg = 6*4*18*((Int_t) ((AliTRDCalibraMode *)calibra->GetCalibraMode())->GetDetChamb0(0))
796 + 6* 18*((Int_t) ((AliTRDCalibraMode *)calibra->GetCalibraMode())->GetDetChamb2(0));
797 Int_t nbfit = calibra->GetNumberFit();
798 Int_t nbE = calibra->GetNumberEnt();
799 // enough statistics
800 if ((nbtg > 0) &&
4da4a4c8 801 (nbfit >= 0.5*nbE) && (nbE > 30)) {
8dd14606 802 // create the cal objects
64942b85 803 calibra->PutMeanValueOtherVectorFit(1,kTRUE);
8dd14606 804 TObjArray object = calibra->GetVectorFit();
413153cb 805 AliTRDCalDet *objgaindet = calibra->CreateDetObjectGain(&object);
8dd14606 806 TObject *objgainpad = calibra->CreatePadObjectGain();
807 // store them
808 if(!Store("Calib","ChamberGainFactor",(TObject *) objgaindet ,&md1,0,kTRUE)){
809 Log("Error storing the calibration object for the chamber gain");
810 error = kTRUE;
811 }
812 if(!Store("Calib","LocalGainFactor" ,(TObject *) objgainpad ,&md2,0,kTRUE)){
813 Log("Error storing the calibration object for the local gain factor");
814 error = kTRUE;
815 }
816 }
817 calibra->ResetVectorFit();
818 }// if histogain
819
8dd14606 820 // vdrift
821 fVdriftHLT = kFALSE;
822 TProfile2D *histodriftvelocity = (TProfile2D *) filehlt->Get("PH2d");
823 histodriftvelocity->SetDirectory(0);
824 if (histodriftvelocity) {
825 // store the reference data
826 if(!StoreReferenceData("HLTData","VdriftT0",(TObject *) histodriftvelocity,&metaData)){
827 Log("Error storing 2D Profile for average pulse height (HLT)");
828 error = kTRUE;
829 }
830 // analyse
831 Log("Take the PH reference data. Now we will try to fit\n");
64942b85 832 calibra->SetMinEntries(800*20); // If there is less than 20000
8dd14606 833 calibra->AnalysePH(histodriftvelocity);
834 Int_t nbtg = 6*4*18*((Int_t) ((AliTRDCalibraMode *)calibra->GetCalibraMode())->GetDetChamb0(1))
835 + 6* 18*((Int_t) ((AliTRDCalibraMode *)calibra->GetCalibraMode())->GetDetChamb2(1));
836 Int_t nbfit = calibra->GetNumberFit();
837 Int_t nbE = calibra->GetNumberEnt();
838 // enough statistics
839 if ((nbtg > 0) &&
4da4a4c8 840 (nbfit >= 0.5*nbE) && (nbE > 30)) {
8dd14606 841 // create the cal objects
64942b85 842 calibra->PutMeanValueOtherVectorFit(1,kTRUE);
843 calibra->PutMeanValueOtherVectorFit2(1,kTRUE);
8dd14606 844 TObjArray object = calibra->GetVectorFit();
845 AliTRDCalDet *objdriftvelocitydet = calibra->CreateDetObjectVdrift(&object,kTRUE);
846 TObject *objdriftvelocitypad = calibra->CreatePadObjectVdrift();
847 object = calibra->GetVectorFit2();
848 AliTRDCalDet *objtime0det = calibra->CreateDetObjectT0(&object,kTRUE);
849 TObject *objtime0pad = calibra->CreatePadObjectT0();
850 // store them
851 if(!Store("Calib","ChamberVdrift" ,(TObject *) objdriftvelocitydet,&md1,0,kTRUE)){
852 Log("Error storing the calibration object for the chamber vdrift (HLT)");
853 error = kTRUE;
854 }
855 if(!Store("Calib","ChamberT0" ,(TObject *) objtime0det ,&md1,0,kTRUE)){
856 Log("Error storing the calibration object for the chamber t0 (HLT)");
857 error = kTRUE;
858 }
859 if(!Store("Calib","LocalVdrift" ,(TObject *) objdriftvelocitypad,&md2,0,kTRUE)){
860 Log("Error storing the calibration object for the local drift velocity (HLT)");
861 error = kTRUE;
862 }
863 if(!Store("Calib","LocalT0" ,(TObject *) objtime0pad ,&md2,0,kTRUE)){
864 Log("Error storing the calibration object for the local time0 (HLT)");
865 error = kTRUE;
866 }
867 fVdriftHLT = kTRUE;
868 }
869 calibra->ResetVectorFit();
870 }// if TProfile2D
871
8dd14606 872 // prf
873 TProfile2D *histoprf = (TProfile2D *) filehlt->Get("PRF2d");
874 histoprf->SetDirectory(0);
875 if (histoprf) {
876 // store reference data
877 if(!StoreReferenceData("HLTData","PRF",(TObject *) histoprf,&metaData)){
878 Log("Error storing the 2D Profile for Pad Response Function");
879 error = kTRUE;
880 }
881 // analyse
882 Log("Take the PRF reference data. Now we will try to fit\n");
883 calibra->SetMinEntries(600); // If there is less than 20000
884 calibra->AnalysePRFMarianFit(histoprf);
885 Int_t nbtg = 6*4*18*((Int_t) ((AliTRDCalibraMode *)calibra->GetCalibraMode())->GetDetChamb0(2))
886 + 6* 18*((Int_t) ((AliTRDCalibraMode *)calibra->GetCalibraMode())->GetDetChamb2(2));
887 Int_t nbfit = calibra->GetNumberFit();
888 Int_t nbE = calibra->GetNumberEnt();
889 // enough statistics
890 if ((nbtg > 0) &&
4da4a4c8 891 (nbfit >= 0.95*nbE) && (nbE > 30)) {
8dd14606 892 // create cal pad objects
893 TObjArray object = calibra->GetVectorFit();
894 TObject *objPRFpad = calibra->CreatePadObjectPRF(&object);
895 // store them
896 if(!Store("Calib","PRFWidth" ,(TObject *) objPRFpad ,&md2,0,kTRUE)){
897 Log("Error storing the calibration object for the Pad Response Function");
898 error = kTRUE;
899 }
900 }
901 calibra->ResetVectorFit();
902 }// if PRF
903 }// if fileNameEntry
904
905 delete listhlt;
906 return error;
907
e5c60cc7 908}
fdfee371 909
910//_____________________________________________________________________________
911UInt_t AliTRDPreprocessor::ProcessDCSConfigData()
912{
913 //
914 // process the configuration of FEE, PTR and GTU
e74c968f 915 // reteive XML filei(s) from the DCS FXS
916 // parse it/them and store TObjArrays in the CDB
917 //
fdfee371 918 // return 0 for success, otherwise:
8b9bf3e9 919 // 5 : Could not get the (SOR and EOR) or SOR file from the FXS
8f7e6c0b 920 // 8 : Both files are not valid
eaceaf51 921 // 10 : SOR XML is not well-formed
922 // 11 : EOR XML is not well-formed
8f7e6c0b 923 // 12 : ERROR in SOR XML SAX validation: something wrong with the content
924 // 12 : ERROR in EOR XML SAX validation: something wrong with the content
925 // 14 : ERROR while creating SOR calibration objects in the handler
926 // 15 : ERROR while creating EOR calibration objects in the handler
927 // 16 : ERROR while storing data in the CDB
fdfee371 928 //
929
eaceaf51 930 Log("Processing the DCS config summary files.");
fdfee371 931
e74c968f 932 // get the XML files
933 Log("Requesting the 2 summaryfiles from the FXS..");
8b9bf3e9 934 TString xmlFileS = GetFile(kDCS,"CONFIGSUMMARYSOR","");
935 TString xmlFileE = GetFile(kDCS,"CONFIGSUMMARYEOR","");
3821ce70 936 // Request EOR and SOR files from the fxs, if both are not found exit
937
f4200e67 938 Bool_t fileExistE = kTRUE, fileExistS = kTRUE;
3821ce70 939
8f7e6c0b 940 // check if the files are there
8b9bf3e9 941 if (xmlFileS.IsNull()) {
942 Log(Form("Warning: SOR file %s not found!", xmlFileS.Data()));
f4200e67 943 fileExistS = kFALSE;
8b9bf3e9 944 } else Log(Form("SOR file found: %s", xmlFileS.Data()));
f4200e67 945
8b9bf3e9 946 if (xmlFileE.IsNull()) {
947 Log(Form("Warning: EOR file %s not found!", xmlFileE.Data()));
f4200e67 948 fileExistE = kFALSE;
8b9bf3e9 949 } else Log(Form("EOR file found: %s", xmlFileE.Data()));
f4200e67 950
951 if (fileExistS==0 && fileExistE==0) {
8b9bf3e9 952 Log(Form("ERROR: SOR and EOR files not found: %s and %s", xmlFileS.Data(), xmlFileE.Data()));
f4200e67 953 return 5;
6b36d985 954 }
3821ce70 955
8f7e6c0b 956 // test the files
3821ce70 957 if (fileExistS) {
f4200e67 958 Log("Checking if SOR file is valid.");
3821ce70 959 std::ifstream fileTestS;
8b9bf3e9 960 fileTestS.open(xmlFileS.Data(), std::ios_base::binary | std::ios_base::in);
3821ce70 961 if (!fileTestS.good() || fileTestS.eof() || !fileTestS.is_open()) {
8b9bf3e9 962 Log(Form("Warning: File %s not valid!",xmlFileS.Data()));
f4200e67 963 fileExistS = kFALSE;
8b9bf3e9 964 return 5;
3821ce70 965 }
f4200e67 966 Log("Checking if SOR file is not empty.");
3821ce70 967 fileTestS.seekg(0, std::ios_base::end);
968 if (static_cast<int>(fileTestS.tellg()) < 2) {
8b9bf3e9 969 Log(Form("Warning: File %s is empty!",xmlFileS.Data()));
f4200e67 970 fileExistS = kFALSE;
8b9bf3e9 971 return 5;
3821ce70 972 }
973 }
f4200e67 974
f4200e67 975
3821ce70 976 if (fileExistE) {
f4200e67 977 Log("Checking if EOR file is valid.");
3821ce70 978 std::ifstream fileTestE;
8b9bf3e9 979 fileTestE.open(xmlFileE.Data(), std::ios_base::binary | std::ios_base::in);
3821ce70 980 if (!fileTestE.good() || fileTestE.eof() || !fileTestE.is_open()) {
8b9bf3e9 981 Log(Form("Warning: File %s not valid!",xmlFileE.Data()));
f4200e67 982 fileExistE = kFALSE;
3821ce70 983 }
f4200e67 984 Log("Checking if EOR file is not empty.");
3821ce70 985 fileTestE.seekg(0, std::ios_base::end);
986 if (static_cast<int>(fileTestE.tellg()) < 2) {
8b9bf3e9 987 Log(Form("Warning: File %s is empty!",xmlFileE.Data()));
f4200e67 988 fileExistE = kFALSE;
3821ce70 989 }
990 }
f4200e67 991
f4200e67 992 if (fileExistS==0 && fileExistE==0) {
8f7e6c0b 993 Log("ERROR: Both files (SOR/EOR) are not valid!");
994 return 8;
995 }
f4200e67 996
8f7e6c0b 997 Log("One or both of the tested files are valid.");
fdfee371 998
6b36d985 999 // make a robust XML validation
1000 TSAXParser testParser;
8b9bf3e9 1001 if (fileExistS && testParser.ParseFile(xmlFileS.Data()) < 0 ) {
eaceaf51 1002 Log("ERROR: XML content (SOR) is not well-formed.");
e74c968f 1003 return 10;
8b9bf3e9 1004 } else if (fileExistE && testParser.ParseFile(xmlFileE.Data()) < 0 ) {
eaceaf51 1005 Log("ERROR: XML content (EOR) is not well-formed.");
1006 return 11;
6b36d985 1007 }
eaceaf51 1008 Log("XML contents are well-formed.");
3821ce70 1009
fdfee371 1010 // create parser and parse
eaceaf51 1011 TSAXParser saxParserS, saxParserE;
1012 AliTRDSaxHandler saxHandlerS, saxHandlerE;
3821ce70 1013 if (fileExistS) {
1014 saxParserS.ConnectToHandler("AliTRDSaxHandler", &saxHandlerS);
8b9bf3e9 1015 saxParserS.ParseFile(xmlFileS.Data());
3821ce70 1016 }
1017 if (fileExistE) {
1018 saxParserE.ConnectToHandler("AliTRDSaxHandler", &saxHandlerE);
8b9bf3e9 1019 saxParserE.ParseFile(xmlFileE.Data());
3821ce70 1020 }
8f7e6c0b 1021 // report errors of the parser if present
1022 if (fileExistS && saxParserS.GetParseCode() != 0) {
1023 Log(Form("ERROR in XML file validation. SOR Parse Code: %s", saxParserS.GetParseCode()));
e74c968f 1024 return 12;
fdfee371 1025 }
8f7e6c0b 1026 if (fileExistE && saxParserE.GetParseCode() != 0) {
1027 Log(Form("ERROR in XML file validation. EOR Parse Code: %s", saxParserE.GetParseCode()));
1028 return 13;
fdfee371 1029 }
8f7e6c0b 1030 Log("XML file validation OK.");
1031 // report errors of the handler if present
1032 if (fileExistS && saxHandlerS.GetHandlerStatus() != 0) {
1033 Log(Form("ERROR while creating calibration objects. SOR Error code: %s", saxHandlerS.GetHandlerStatus()));
1034 return 14;
1035 }
1036 if (fileExistE && saxHandlerE.GetHandlerStatus() != 0) {
1037 Log(Form("ERROR while creating calibration objects. EOR Error code: %s", saxHandlerE.GetHandlerStatus()));
1038 return 15;
1039 }
1040 Log("SAX handler reports no errors.");
fdfee371 1041
eaceaf51 1042 // put both objects in one TObjArray to store them
1043 TObjArray* fCalObjArray = new TObjArray(2);
1044 fCalObjArray->SetOwner();
3821ce70 1045
1046 // get the calibration object storing the data from the handler
1047 if (fileExistS) {
1048 AliTRDCalDCS* fCalDCSObjSOR = saxHandlerS.GetCalDCSObj();
1049 fCalDCSObjSOR->EvaluateGlobalParameters();
8f7e6c0b 1050 fCalDCSObjSOR->SetRunType(GetRunType());
1051 fCalDCSObjSOR->SetStartTime(GetStartTimeDCSQuery());
1052 fCalDCSObjSOR->SetEndTime(GetEndTimeDCSQuery());
3821ce70 1053 fCalObjArray->AddAt(fCalDCSObjSOR,0);
8f7e6c0b 1054 Log("TRDCalDCS object for SOR created.");
3821ce70 1055 }
1056
1057 if (fileExistE) {
1058 AliTRDCalDCS* fCalDCSObjEOR = saxHandlerE.GetCalDCSObj();
1059 fCalDCSObjEOR->EvaluateGlobalParameters();
8f7e6c0b 1060 fCalDCSObjEOR->SetRunType(GetRunType());
1061 fCalDCSObjEOR->SetStartTime(GetStartTimeDCSQuery());
1062 fCalDCSObjEOR->SetEndTime(GetEndTimeDCSQuery());
3821ce70 1063 fCalObjArray->AddAt(fCalDCSObjEOR,1);
8f7e6c0b 1064 Log("TRDCalDCS object for EOR created.");
3821ce70 1065 }
1066
fdfee371 1067 // store the DCS calib data in the CDB
1068 AliCDBMetaData metaData1;
1069 metaData1.SetBeamPeriod(0);
1070 metaData1.SetResponsible("Frederick Kramer");
eaceaf51 1071 metaData1.SetComment("DCS configuration data in two AliTRDCalDCS objects in one TObjArray (0:SOR, 1:EOR).");
1072 if (!Store("Calib", "DCS", fCalObjArray, &metaData1, 0, kTRUE)) {
fdfee371 1073 Log("problems while storing DCS config data object");
8f7e6c0b 1074 return 16;
6b36d985 1075 } else {
1076 Log("DCS config data object stored.");
fdfee371 1077 }
1078
eaceaf51 1079 //delete fCalObjArray;
6b36d985 1080
8f7e6c0b 1081 Log("SUCCESS: Processing of the DCS config summary file DONE.");
fdfee371 1082 return 0;
75ba22eb 1083}
1084
1085