]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ZDC/AliZDCPreprocessor.cxx
Change to prevent from uncorrect reading of pedestal data by the DAs
[u/mrichter/AliRoot.git] / ZDC / AliZDCPreprocessor.cxx
CommitLineData
31af5828 1// --- ROOT system
2#include <TFile.h>
79563ba1 3#include <TClonesArray.h>
4#include <TList.h>
5#include <TObjString.h>
31af5828 6#include <TTimeStamp.h>
64a7c78d 7
31af5828 8#include "AliZDCPreprocessor.h"
9#include "AliCDBManager.h"
10#include "AliCDBEntry.h"
64a7c78d 11#include "AliCDBMetaData.h"
12#include "AliDCSValue.h"
79563ba1 13#include "AliAlignObj.h"
90dbf5fb 14#include "AliAlignObjParams.h"
64a7c78d 15#include "AliLog.h"
16#include "AliZDCDataDCS.h"
1ee299a5 17#include "AliZDCChMap.h"
6024ec85 18#include "AliZDCPedestals.h"
1ee299a5 19#include "AliZDCLaserCalib.h"
73bc3a3f 20#include "AliZDCEnCalib.h"
21#include "AliZDCTowerCalib.h"
0d579f58 22#include "AliZDCMBCalib.h"
64a7c78d 23
d5e687c2 24/////////////////////////////////////////////////////////////////////
25// //
73bc3a3f 26// Class implementing Shuttle ZDC pre-processor. //
27// It takes data from DCS and DAQ and writes calibration objects //
28// in the OCDB and reference values/histos in the ReferenceData. //
d5e687c2 29// //
30/////////////////////////////////////////////////////////////////////
64a7c78d 31
e83c8d88 32// ******************************************************************
33// RETURN CODES:
da2b6160 34// return 0 : everything OK
35// return 1 : no DCS input data Map
36// return 2 : error storing DCS data in RefData
37// return 3 : error storing alignment object in OCDB
38// return 4 : error in ZDCMapping.dat file retrieved from DAQ FXS (not existing|empty|corrupted)
39// return 5 : error storing mapping obj. in OCDB
40// return 6 : error storing energy calibration obj. in OCDB
41// return 7 : error storing tower inter-calibration obj. in OCDB
42// return 8 : error in ZDCEnergyCalib.dat file retrieved from DAQ FXS
43// return 9 : error in ZDCTowerCalib.dat file retrieved from DAQ FXS
44// return 10: error in ZDCPedestal.dat file retrieved from DAQ FXS
45// return 11: error storing pedestal calibration obj. in OCDB
46// return 12: error in ZDCPedHisto.root file retrieved from DAQ FXS
47// return 13: error storing pedestal histos in RefData
48// return 14: error in ZDCLaserCalib.dat file retrieved from DAQ FXS
49// return 15: error storing laser calibration obj. in OCDB
50// return 16: error in ZDCLaserHisto.root file retrieved from DAQ FXS
51// return 17: error storing laser histos in RefData
0d579f58 52// return 18: error in ZDCMBCalib.root file retrieved from DAQ FXS
53// return 19: error storing MB calibration obj. in OCDB
e83c8d88 54// ******************************************************************
55
64a7c78d 56ClassImp(AliZDCPreprocessor)
57
58//______________________________________________________________________________________________
857ece97 59AliZDCPreprocessor::AliZDCPreprocessor(AliShuttleInterface* shuttle) :
60 AliPreprocessor("ZDC", shuttle),
64a7c78d 61 fData(0)
62{
63 // constructor
b8d194f5 64 // May 2009 - run types updated according to
65 // http://alice-ecs.web.cern.ch/alice-ecs/runtypes_3.36.html
cbf06263 66 AddRunType("STANDALONE_PEDESTAL");
1ee299a5 67 AddRunType("STANDALONE_LASER");
321fe3b8 68 AddRunType("STANDALONE_COSMIC");
b8d194f5 69 AddRunType("CALIBRATION_EMD");
70 AddRunType("CALIBRATION_MB");
71 AddRunType("CALIBRATION_CENTRAL");
72 AddRunType("CALIBRATION_SEMICENTRAL");
73 AddRunType("CALIBRATION_BC");
321fe3b8 74 AddRunType("PHYSICS");
64a7c78d 75}
76
cbf06263 77
64a7c78d 78//______________________________________________________________________________________________
79AliZDCPreprocessor::~AliZDCPreprocessor()
80{
81 // destructor
82}
83
7a78280f 84
64a7c78d 85//______________________________________________________________________________________________
da2b6160 86void AliZDCPreprocessor::Initialize(Int_t run, UInt_t startTime, UInt_t endTime)
64a7c78d 87{
88 // Creates AliZDCDataDCS object
89
90 AliPreprocessor::Initialize(run, startTime, endTime);
91
57c85e6e 92 AliDebug(2,Form("\n\tRun %d \n\tStartTime %s \n\tEndTime %s \n\tStartTime DCS Query %s \n\tEndTime DCS Query %s", run,
e83c8d88 93 TTimeStamp(startTime).AsString(),
94 TTimeStamp(endTime).AsString(), ((TTimeStamp)GetStartTimeDCSQuery()).AsString(), ((TTimeStamp)GetEndTimeDCSQuery()).AsString()));
64a7c78d 95
73bc3a3f 96 fRun = run;
97 fStartTime = startTime;
98 fEndTime = endTime;
79563ba1 99
e83c8d88 100 fData = new AliZDCDataDCS(fRun, fStartTime, fEndTime, GetStartTimeDCSQuery(), GetEndTimeDCSQuery());
101}
102
103//_____________________________________________________________________________
104Bool_t AliZDCPreprocessor::ProcessDCS(){
105
106 // tells whether DCS should be processed or not
107
108 TString runType = GetRunType();
109 Log(Form("RunType %s",runType.Data()));
110
111 if (runType=="STANDALONE_COSMIC" || runType=="STANDALONE_PEDESTAL"){
112 return kFALSE;
113 }
114
115 return kTRUE;
116}
117
118//______________________________________________________________________________________________
119UInt_t AliZDCPreprocessor::ProcessDCSData(TMap* dcsAliasMap)
120{
121
122 // Fills data into a AliZDCDataDCS object
bf867209 123 if(!dcsAliasMap){
124 Log(" No DCS map found: ZDC exiting from Shuttle");
57c85e6e 125 if(fData){
126 delete fData;
127 fData = 0;
128 }
bf867209 129 return 1;
130 }
131
e83c8d88 132 Log(Form("Processing data from DCS"));
bf867209 133
e83c8d88 134 // The processing of the DCS input data is forwarded to AliZDCDataDCS
e83c8d88 135 //dcsAliasMap->Print("");
bf867209 136 Bool_t resDCSProcess = fData->ProcessData(*dcsAliasMap);
137 if(resDCSProcess==kFALSE){
138 Log(" Problems in processing DCS DP");
139 return 1;
57c85e6e 140 }
e83c8d88 141
0d579f58 142 // ------------------------------------------------------
143 // Change introduced 26/9/09 in order NOT to process the
144 // HV DP since some of them are never found in amanda DB
145 // ------------------------------------------------------
57c85e6e 146 // Store DCS data as reference
aee13a2d 147 AliCDBMetaData metadata;
e83c8d88 148 metadata.SetResponsible("Chiara Oppedisano");
57c85e6e 149 metadata.SetComment("DCS DP TMap for ZDC");
e83c8d88 150 Bool_t resDCSRef = kTRUE;
57c85e6e 151 resDCSRef = StoreReferenceData("DCS","Data", dcsAliasMap, &metadata);
e83c8d88 152
153 if(resDCSRef==kFALSE) return 2;
aee13a2d 154
e83c8d88 155 // --- Writing ZDC table positions into alignment object
156 TClonesArray *array = new TClonesArray("AliAlignObjParams",10);
157 TClonesArray &alobj = *array;
158 AliAlignObjParams a;
159 Double_t dx=0., dz=0., dpsi=0., dtheta=0., dphi=0.;
160 // Vertical table position in mm from DCS
57c85e6e 161 Double_t dyZN1 = (Double_t) (fData->GetAlignData(0)/10.);
162 Double_t dyZP1 = (Double_t) (fData->GetAlignData(1)/10.);
163 Double_t dyZN2 = (Double_t) (fData->GetAlignData(2)/10.);
164 Double_t dyZP2 = (Double_t) (fData->GetAlignData(3)/10.);
e83c8d88 165 //
166 const char *n1ZDC="ZDC/NeutronZDC_C";
167 const char *p1ZDC="ZDC/ProtonZDC_C";
168 const char *n2ZDC="ZDC/NeutronZDC_A";
169 const char *p2ZDC="ZDC/ProtonZDC_A";
170 //
171 UShort_t iIndex=0;
172 AliGeomManager::ELayerID iLayer = AliGeomManager::kInvalidLayer;
173 UShort_t volid = AliGeomManager::LayerToVolUID(iLayer,iIndex);
174 //
175 new(alobj[0]) AliAlignObjParams(n1ZDC, volid, dx, dyZN1, dz, dpsi, dtheta, dphi, kTRUE);
176 new(alobj[1]) AliAlignObjParams(p1ZDC, volid, dx, dyZP1, dz, dpsi, dtheta, dphi, kTRUE);
177 new(alobj[2]) AliAlignObjParams(n2ZDC, volid, dx, dyZN2, dz, dpsi, dtheta, dphi, kTRUE);
178 new(alobj[3]) AliAlignObjParams(p2ZDC, volid, dx, dyZP2, dz, dpsi, dtheta, dphi, kTRUE);
179
180 // save in CDB storage
181 AliCDBMetaData mdDCS;
182 mdDCS.SetResponsible("Chiara Oppedisano");
183 mdDCS.SetComment("Alignment object for ZDC");
1a1c78d4 184 Bool_t resultAl = Store("Align","Data", array, &mdDCS, 0, kFALSE);
e83c8d88 185 if(resultAl==kFALSE) return 3;
186
187 return 0;
64a7c78d 188}
189
321fe3b8 190//______________________________________________________________________________________________
da2b6160 191UInt_t AliZDCPreprocessor::ProcessChMap()
321fe3b8 192{
198f612a 193 const int kNModules=10, kNch=48, kNScch=32;
e83c8d88 194
3c159ed0 195 // Reading the file for mapping from FXS
da2b6160 196 TList* daqSource = GetFileSources(kDAQ, "MAPPING");
321fe3b8 197 if(!daqSource){
da2b6160 198 AliError(Form("No sources for file ZDCChMapping.dat in run %d ", fRun));
e83c8d88 199 return 4;
321fe3b8 200 }
da2b6160 201 if(daqSource->GetEntries()==0) return 4;
202 Log("\t List of DAQ sources for MAPPING id: "); daqSource->Print();
321fe3b8 203 //
204 TIter iter(daqSource);
205 TObjString* source = 0;
b8d194f5 206 Int_t isou = 0;
198f612a 207 Int_t modMap[kNModules][3], adcMap[kNch][6], scMap[kNScch][6];
3c159ed0 208 //
321fe3b8 209 while((source = dynamic_cast<TObjString*> (iter.Next()))){
92508ce2 210 TString fileName = GetFile(kDAQ, "MAPPING", source->GetName());
da2b6160 211 Log(Form("\t Getting file #%d: ZDCChMapping.dat from %s\n",++isou, source->GetName()));
321fe3b8 212
213 if(fileName.Length() <= 0){
214 Log(Form("No file from source %s!", source->GetName()));
e83c8d88 215 return 4;
321fe3b8 216 }
c00e895a 217 // --- Reading file with calibration data
218 //const char* fname = fileName.Data();
219 if(fileName){
321fe3b8 220 FILE *file;
c00e895a 221 if((file = fopen(fileName,"r")) == NULL){
222 printf("Cannot open file %s \n",fileName.Data());
e83c8d88 223 return 4;
321fe3b8 224 }
c00e895a 225 Log(Form("File %s connected to process data for ADC mapping", fileName.Data()));
321fe3b8 226 //
608444fb 227 for(Int_t j=0; j<kNch; j++){
228 for(Int_t k=0; k<6; k++){
229 int read = fscanf(file,"%d",&adcMap[j][k]);
198f612a 230 if(read == 0) AliDebug(3," Failing in reading data from mapping file");
231 }
232 }
608444fb 233 for(Int_t j=kNch; j<kNch+kNScch; j++){
198f612a 234 for(Int_t k=0; k<6; k++){
608444fb 235 int read = fscanf(file,"%d",&scMap[j-kNch][k]);
198f612a 236 if(read == 0) AliDebug(3," Failing in reading data from mapping file");
237 }
238 }
608444fb 239 for(Int_t j=kNch+kNScch; j<kNModules+kNch+kNScch; j++){
240 for(Int_t k=0; k<3; k++){
241 int read = fscanf(file,"%d",&modMap[j-kNch-kNScch][k]);
e83c8d88 242 if(read == 0) AliDebug(3," Failing in reading data from mapping file");
321fe3b8 243 }
321fe3b8 244 }
245 fclose(file);
246 }
247 else{
c00e895a 248 Log(Form("File %s not found", fileName.Data()));
e83c8d88 249 return 4;
321fe3b8 250 }
3c159ed0 251 }
3c159ed0 252
253 // Store the currently read map ONLY IF it is different
254 // from the entry in the OCDB
198f612a 255 Bool_t adcMapUpdated=kFALSE, scMapUpdated=kFALSE;
3c159ed0 256 Bool_t updateOCDB = kFALSE;
257
258 AliCDBEntry *cdbEntry = GetFromOCDB("Calib","ChMap");
259 if(!cdbEntry){
73bc3a3f 260 Log(" No existing CDB entry for ADC mapping");
3c159ed0 261 updateOCDB = kTRUE;
262 }
263 else{
264 AliZDCChMap *chMap = (AliZDCChMap*) cdbEntry->GetObject();
e83c8d88 265 for(Int_t i=0; i<kNch; i++){
198f612a 266 if( (adcMap[i][1] == chMap->GetADCModule(i))
267 && (adcMap[i][2] == chMap->GetADCChannel(i))
268 && (adcMap[i][4] == chMap->GetDetector(i))
269 && (adcMap[i][5] == chMap->GetSector(i))){
270 adcMapUpdated = kFALSE;
3c159ed0 271 }
198f612a 272 else adcMapUpdated = kTRUE;
273 }
274 for(Int_t i=0; i<kNScch; i++){
275 if( (scMap[i][2] == chMap->GetScChannel(i))
276 && (scMap[i][4] == chMap->GetScDetector(i))
277 && (scMap[i][5] == chMap->GetScSector(i))){
278 scMapUpdated = kFALSE;
279 }
280 else scMapUpdated = kTRUE;
3c159ed0 281 }
282 }
198f612a 283 if(adcMapUpdated || scMapUpdated) updateOCDB = kTRUE;
0d579f58 284 //
e83c8d88 285 Bool_t resChMapStore = kTRUE;
3c159ed0 286 if(updateOCDB==kTRUE){
73bc3a3f 287 Log(" A new entry ZDC/Calib/ChMap will be created");
3c159ed0 288 //
289 // --- Initializing mapping calibration object
290 AliZDCChMap *mapCalib = new AliZDCChMap("ZDC");
291 // Writing channel map in the OCDB
198f612a 292 for(Int_t k=0; k<kNModules; k++){
293 mapCalib->SetModuleMap(k, modMap[k][0], modMap[k][1], modMap[k][2]);
294 }
e83c8d88 295 for(Int_t k=0; k<kNch; k++){
198f612a 296 mapCalib->SetADCModule(k,adcMap[k][1]);
297 mapCalib->SetADCChannel(k,adcMap[k][2]);
298 mapCalib->SetDetector(k,adcMap[k][4]);
299 mapCalib->SetSector(k,adcMap[k][5]);
300 }
301 for(Int_t k=0; k<kNScch; k++){
302 mapCalib->SetScChannel(k, scMap[k][0]);
303 mapCalib->SetScDetector(k, scMap[k][1]);
304 mapCalib->SetScSector(k, scMap[k][2]);
3c159ed0 305 }
198f612a 306 //
0d579f58 307 mapCalib->Print("");
321fe3b8 308 //
309 AliCDBMetaData metaData;
310 metaData.SetBeamPeriod(0);
198f612a 311 metaData.SetResponsible("Chiara Oppedisano");
0d579f58 312 metaData.SetComment("Filling AliZDCChMap object");
321fe3b8 313 //
1a1c78d4 314 resChMapStore = Store("Calib","ChMap",mapCalib, &metaData, 0, kTRUE);
315 printf(" Mapping object stored in OCDB\n");
321fe3b8 316 }
3c159ed0 317 else{
73bc3a3f 318 Log(" ZDC/Calib/ChMap entry in OCDB is valid and won't be updated");
e83c8d88 319 resChMapStore = kTRUE;
3c159ed0 320 }
0d579f58 321
aee13a2d 322 delete daqSource; daqSource=0;
6f427255 323
e83c8d88 324 if(resChMapStore==kFALSE) return 5;
aee13a2d 325 else return 0;
321fe3b8 326
327}
328
64a7c78d 329//______________________________________________________________________________________________
e83c8d88 330UInt_t AliZDCPreprocessor::ProcessppData()
64a7c78d 331{
e83c8d88 332 Bool_t resEnCal=kTRUE, resTowCal=kTRUE;
79563ba1 333
73bc3a3f 334 // *********** Energy calibration
3c159ed0 335 // --- Cheking if there is already the entry in the OCDB
5df9f417 336 AliCDBEntry *cdbEnEntry = GetFromOCDB("Calib", "EnergyCalib");
73bc3a3f 337 if(!cdbEnEntry){
dd98e862 338 Log(Form(" ZDC/Calib/EnergyCalib entry will be created"));
3c159ed0 339 // --- Initializing calibration object
73bc3a3f 340 AliCDBMetaData metaData;
341 metaData.SetBeamPeriod(0);
342 metaData.SetResponsible("Chiara Oppedisano");
3c159ed0 343 //
73bc3a3f 344 AliZDCEnCalib *eCalib = new AliZDCEnCalib("ZDC");
3c159ed0 345 for(Int_t j=0; j<6; j++) eCalib->SetEnCalib(j,1.);
73bc3a3f 346 metaData.SetComment("AliZDCEnCalib object");
347 //eCalib->Print("");
1a1c78d4 348 resEnCal = Store("Calib", "EnergyCalib", eCalib, &metaData, 0, kTRUE);
73bc3a3f 349 }
350 else{
351 // if entry exists it is still valid (=1 for all runs!)
dd98e862 352 Log(Form(" Valid ZDC/Calib/EnergyCalib object already existing in OCDB!!!"));
73bc3a3f 353 resEnCal = kTRUE;
354 }
e83c8d88 355
356 if(resEnCal==kFALSE) return 6;
357
73bc3a3f 358 //
359 // *********** Tower inter-calibration
360 // --- Cheking if there is already the entry in the OCDB
5df9f417 361 AliCDBEntry *cdbTowEntry = GetFromOCDB("Calib", "TowerCalib");
73bc3a3f 362 if(!cdbTowEntry){
363 AliZDCTowerCalib *towCalib = new AliZDCTowerCalib("ZDC");
3c159ed0 364 for(Int_t j=0; j<5; j++){
73bc3a3f 365 towCalib->SetZN1EqualCoeff(j, 1.);
366 towCalib->SetZP1EqualCoeff(j, 1.);
367 towCalib->SetZN2EqualCoeff(j, 1.);
368 towCalib->SetZP2EqualCoeff(j, 1.);
3c159ed0 369 }
73bc3a3f 370 //towCalib->Print("");
371 //
372 AliCDBMetaData metaData;
373 metaData.SetBeamPeriod(0);
374 metaData.SetResponsible("Chiara Oppedisano");
375 metaData.SetComment("AliZDCTowerCalib object");
376 //
1a1c78d4 377 resTowCal = Store("Calib", "TowerCalib", towCalib, &metaData, 0, kTRUE);
73bc3a3f 378 }
379 else{
380 // if entry exists it is still valid (=1 for all runs!)
dd98e862 381 Log(Form(" Valid ZDC/Calib/TowerCalib object already existing in OCDB!!!"));
73bc3a3f 382 resTowCal = kTRUE;
383 }
384
e83c8d88 385 if(resTowCal==kFALSE) return 7;
386
387 return 0;
388}
389
390//______________________________________________________________________________________________
391UInt_t AliZDCPreprocessor::ProcessCalibData()
392{
da2b6160 393 TList* daqSources = GetFileSources(kDAQ, "EMDENERGYCALIB");
e83c8d88 394 if(!daqSources){
395 AliError(Form("No sources for CALIBRATION_EMD run %d !", fRun));
da2b6160 396 return 8;
e83c8d88 397 }
da2b6160 398 Log("\t List of DAQ sources for EMDENERGYCALIB id: "); daqSources->Print();
e83c8d88 399 //
400 TIter iter2(daqSources);
401 TObjString* source = 0;
402 Int_t i=0;
da2b6160 403 Bool_t resEnCal=kTRUE, resTowCal=kTRUE;
404
e83c8d88 405 while((source = dynamic_cast<TObjString*> (iter2.Next()))){
da2b6160 406 TString stringEMDFileName = GetFile(kDAQ, "EMDENERGYCALIB", source->GetName());
e83c8d88 407 if(stringEMDFileName.Length() <= 0){
408 Log(Form("No file from source %s!", source->GetName()));
da2b6160 409 return 8;
e83c8d88 410 }
da2b6160 411 const char* emdFileName = stringEMDFileName.Data();
412 Log(Form("\t Getting file #%d: %s from %s\n",++i,emdFileName,source->GetName()));
413 //
e83c8d88 414 // --- Initializing energy calibration object
415 AliZDCEnCalib *eCalib = new AliZDCEnCalib("ZDC");
da2b6160 416 // --- Reading file with calibration data
e83c8d88 417 if(emdFileName){
418 FILE *file;
419 if((file = fopen(emdFileName,"r")) == NULL){
da2b6160 420 printf("Cannot open file %s \n",emdFileName);
421 return 8;
e83c8d88 422 }
423 Log(Form("File %s connected to process data from EM dissociation events", emdFileName));
424 //
425 Float_t fitValEMD[6];
426 for(Int_t j=0; j<6; j++){
da2b6160 427 if(j<6){
428 int iread = fscanf(file,"%f",&fitValEMD[j]);
429 if(iread==0) AliDebug(3," Failing reading daa from EMD calibration data file");
430 eCalib->SetEnCalib(j,fitValEMD[j]);
431 }
e83c8d88 432 }
433 //
434 fclose(file);
435 }
436 else{
437 Log(Form("File %s not found", emdFileName));
da2b6160 438 return 8;
e83c8d88 439 }
440 //eCalib->Print("");
441 //
442 AliCDBMetaData metaData;
443 metaData.SetBeamPeriod(0);
444 metaData.SetResponsible("Chiara Oppedisano");
445 metaData.SetComment("Filling AliZDCEnCalib object");
446 //
1a1c78d4 447 resEnCal = Store("Calib","EnergyCalib",eCalib, &metaData, 0, kTRUE);
e83c8d88 448 if(resEnCal==kFALSE) return 6;
449 }
450 delete daqSources; daqSources = 0;
da2b6160 451
452 TList* daqSourcesH = GetFileSources(kDAQ, "EMDTOWERCALIB");
e83c8d88 453 if(!daqSourcesH){
454 AliError(Form("No sources for CALIBRATION_EMD run %d !", fRun));
da2b6160 455 return 9;
e83c8d88 456 }
da2b6160 457 Log("\t List of DAQ sources for EMDTOWERCALIB id: "); daqSourcesH->Print();
e83c8d88 458 //
459 TIter iter2H(daqSourcesH);
460 TObjString* sourceH = 0;
461 Int_t iH=0;
e83c8d88 462 while((sourceH = dynamic_cast<TObjString*> (iter2H.Next()))){
da2b6160 463 TString stringtowEMDFileName = GetFile(kDAQ, "EMDTOWERCALIB", sourceH->GetName());
464 if(stringtowEMDFileName.Length() <= 0){
e83c8d88 465 Log(Form("No file from source %s!", sourceH->GetName()));
da2b6160 466 return 9;
e83c8d88 467 }
da2b6160 468 const char * towEMDFileName = stringtowEMDFileName.Data();
469 Log(Form("\t Getting file #%d: %s from source %s\n",++iH,towEMDFileName,sourceH->GetName()));
e83c8d88 470 // --- Initializing energy calibration object
471 AliZDCTowerCalib *towCalib = new AliZDCTowerCalib("ZDC");
da2b6160 472 // --- Reading file with calibration data
473 if(towEMDFileName){
e83c8d88 474 FILE *file;
da2b6160 475 if((file = fopen(towEMDFileName,"r")) == NULL){
476 printf("Cannot open file %s \n",towEMDFileName);
477 return 9;
e83c8d88 478 }
e83c8d88 479 //
480 Float_t equalCoeff[4][5];
481 for(Int_t j=0; j<4; j++){
da2b6160 482 for(Int_t k=0; k<5; k++){
483 int leggi = fscanf(file,"%f",&equalCoeff[j][k]);
484 if(leggi==0) AliDebug(3," Failing reading data from EMD calibration file");
485 if(j==0) towCalib->SetZN1EqualCoeff(k, equalCoeff[j][k]);
486 else if(j==1) towCalib->SetZP1EqualCoeff(k, equalCoeff[j][k]);
487 else if(j==2) towCalib->SetZN2EqualCoeff(k, equalCoeff[j][k]);
488 else if(j==3) towCalib->SetZP2EqualCoeff(k, equalCoeff[j][k]);
489 }
e83c8d88 490 }
491 //
492 fclose(file);
493 }
494 else{
da2b6160 495 Log(Form("File %s not found", towEMDFileName));
496 return 9;
e83c8d88 497 }
498 //towCalib->Print("");
499 //
500 AliCDBMetaData metaData;
501 metaData.SetBeamPeriod(0);
502 metaData.SetResponsible("Chiara Oppedisano");
503 metaData.SetComment("Filling AliZDCTowerCalib object");
504 //
1a1c78d4 505 resTowCal = Store("Calib","TowerCalib",towCalib, &metaData, 0, kTRUE);
e83c8d88 506 if(resTowCal==kFALSE) return 7;
507 }
da2b6160 508 delete daqSourcesH; daqSourcesH = 0;
e83c8d88 509
da2b6160 510
e83c8d88 511 return 0;
512}
513
514//______________________________________________________________________________________________
515UInt_t AliZDCPreprocessor::ProcessPedestalData()
516{
73bc3a3f 517 TList* daqSources = GetFileSources(kDAQ, "PEDESTALDATA");
cb50c7c8 518 if(!daqSources){
78e8a1cc 519 Log(Form("No source for STANDALONE_PEDESTAL run %d !", fRun));
da2b6160 520 return 10;
79563ba1 521 }
da2b6160 522 if(daqSources->GetEntries()==0) return 10;
523 Log("\t List of DAQ sources for PEDESTALDATA id: "); daqSources->Print();
79563ba1 524 //
cb50c7c8 525 TIter iter(daqSources);
da2b6160 526 TObjString* source;
79563ba1 527 Int_t i=0;
da2b6160 528 Bool_t resPedCal=kTRUE, resPedHist=kTRUE;
529
cb50c7c8 530 while((source = dynamic_cast<TObjString*> (iter.Next()))){
73bc3a3f 531 TString stringPedFileName = GetFile(kDAQ, "PEDESTALDATA", source->GetName());
532 if(stringPedFileName.Length() <= 0){
da2b6160 533 Log(Form("No PEDESTALDATA file from source %s!", source->GetName()));
534 return 10;
73bc3a3f 535 }
da2b6160 536 const char* pedFileName = stringPedFileName.Data();
537 Log(Form("\t Getting file #%d: %s from %s\n",++i,pedFileName,source->GetName()));
538 //
e83c8d88 539 // --- Initializing pedestal calibration object
540 AliZDCPedestals *pedCalib = new AliZDCPedestals("ZDC");
541 // --- Reading file with pedestal calibration data
e83c8d88 542 // no. ADCch = (22 signal ch. + 2 reference PMs) * 2 gain chain = 48
543 const Int_t knZDCch = 48;
e83c8d88 544 FILE *file;
545 if((file = fopen(pedFileName,"r")) == NULL){
546 printf("Cannot open file %s \n",pedFileName);
da2b6160 547 return 10;
e83c8d88 548 }
549 Log(Form("File %s connected to process pedestal data", pedFileName));
550 Float_t pedVal[(2*knZDCch)][2];
551 for(Int_t k=0; k<(2*knZDCch); k++){
da2b6160 552 for(Int_t j=0; j<2; j++){
553 int aleggi = fscanf(file,"%f",&pedVal[k][j]);
554 if(aleggi==0) AliDebug(3," Failing reading data from pedestal file");
555 //if(j==1) printf("pedVal[%d] -> %f, %f \n",k,pedVal[k][0],pedVal[k][1]);
556 }
557 if(k<knZDCch){
558 pedCalib->SetMeanPed(k,pedVal[k][0]);
559 pedCalib->SetMeanPedWidth(k,pedVal[k][1]);
560 }
561 else if(k>=knZDCch && k<(2*knZDCch)){
562 pedCalib->SetOOTPed(k-knZDCch,pedVal[k][0]);
563 pedCalib->SetOOTPedWidth(k-knZDCch,pedVal[k][1]);
564 }
565 else if(k>=(2*knZDCch) && k<(3*knZDCch)){
566 pedCalib->SetPedCorrCoeff(k-(2*knZDCch),pedVal[k][0],pedVal[k][1]);
567 }
e83c8d88 568 }
569 fclose(file);
570 //pedCalib->Print("");
571 //
572 AliCDBMetaData metaData;
573 metaData.SetBeamPeriod(0);
574 metaData.SetResponsible("Chiara Oppedisano");
575 metaData.SetComment("Filling AliZDCPedestals object");
576 //
1a1c78d4 577 resPedCal = Store("Calib","Pedestals",pedCalib, &metaData, 0, kTRUE);
da2b6160 578 if(resPedCal==kFALSE) return 11;
64a7c78d 579 }
cb50c7c8 580 delete daqSources; daqSources = 0;
da2b6160 581
582 TList* daqSourceH = GetFileSources(kDAQ, "PEDESTALHISTOS");
73bc3a3f 583 if(!daqSourceH){
da2b6160 584 Log(Form("No source for PEDESTALHISTOS id run %d !", fRun));
585 return 12;
73bc3a3f 586 }
da2b6160 587 Log("\t List of DAQ sources for PEDESTALHISTOS id: "); daqSourceH->Print();
73bc3a3f 588 //
589 TIter iterH(daqSourceH);
590 TObjString* sourceH = 0;
591 Int_t iH=0;
592 while((sourceH = dynamic_cast<TObjString*> (iterH.Next()))){
da2b6160 593 TString stringPedFileName = GetFile(kDAQ, "PEDESTALHISTOS", sourceH->GetName());
73bc3a3f 594 if(stringPedFileName.Length() <= 0){
da2b6160 595 Log(Form("No PEDESTALHISTOS file from source %s!", sourceH->GetName()));
596 return 12;
73bc3a3f 597 }
da2b6160 598 const char* pedFileName = stringPedFileName.Data();
599 Log(Form("\t Getting file #%d: %s from %s\n",++iH, pedFileName, sourceH->GetName()));
600 resPedHist = StoreReferenceFile(pedFileName, "pedestalReference.root");
601 if(resPedHist==kFALSE) return 13;
73bc3a3f 602 }
da2b6160 603 delete daqSourceH; daqSourceH=0;
e83c8d88 604
605 return 0;
606}
607
608//______________________________________________________________________________________________
609UInt_t AliZDCPreprocessor::ProcessLaserData()
610{
73bc3a3f 611 TList* daqSources = GetFileSources(kDAQ, "LASERDATA");
1ee299a5 612 if(!daqSources){
613 AliError(Form("No sources for STANDALONE_LASER run %d !", fRun));
da2b6160 614 return 14;
1ee299a5 615 }
da2b6160 616 if(daqSources->GetEntries()==0) return 14;
617 Log("\t List of DAQ sources for LASERDATA id: "); daqSources->Print();
1ee299a5 618 //
619 TIter iter2(daqSources);
620 TObjString* source = 0;
621 Int_t i=0;
da2b6160 622 Bool_t resLaserCal=kTRUE, resLaserHist=kTRUE;
623
1ee299a5 624 while((source = dynamic_cast<TObjString*> (iter2.Next()))){
da2b6160 625 TString stringLaserFileName = GetFile(kDAQ, "LASERDATA", source->GetName());
626 if(stringLaserFileName.Length() <= 0){
73bc3a3f 627 Log(Form("No LASER file from source %s!", source->GetName()));
da2b6160 628 return 14;
73bc3a3f 629 }
da2b6160 630 const char* laserFileName = stringLaserFileName.Data();
631 Log(Form("\t Getting file #%d: %s from %s\n",++i,laserFileName,source->GetName()));
632 //
73bc3a3f 633 // --- Initializing pedestal calibration object
634 AliZDCLaserCalib *lCalib = new AliZDCLaserCalib("ZDC");
635 // --- Reading file with pedestal calibration data
73bc3a3f 636 if(laserFileName){
637 FILE *file;
638 if((file = fopen(laserFileName,"r")) == NULL){
639 printf("Cannot open file %s \n",laserFileName);
da2b6160 640 return 14;
1ee299a5 641 }
73bc3a3f 642 Log(Form("File %s connected to process data from LASER events", laserFileName));
1ee299a5 643 //
73bc3a3f 644 Float_t ivalRead[22][4];
645 for(Int_t j=0; j<22; j++){
da2b6160 646 for(Int_t k=0; k<4; k++){
647 int aleggi = fscanf(file,"%f",&ivalRead[j][k]);
648 if(aleggi==0) AliDebug(3," Failng reading data from laser file");
73bc3a3f 649 //printf(" %d %1.0f ",k, ivalRead[j][k]);
650 }
651 lCalib->SetDetector(j, (Int_t) ivalRead[j][0]);
652 lCalib->SetSector(j, (Int_t) ivalRead[j][1]);
653 lCalib->SetfPMValue(j, ivalRead[j][2]);
654 lCalib->SetfPMWidth(j, ivalRead[j][3]);
655 }
656 fclose(file);
657 }
658 else{
659 Log(Form("File %s not found", laserFileName));
da2b6160 660 return 14;
73bc3a3f 661 }
662 //lCalib->Print("");
663 //
664 AliCDBMetaData metaData;
665 metaData.SetBeamPeriod(0);
666 metaData.SetResponsible("Chiara Oppedisano");
667 metaData.SetComment("Filling AliZDCLaserCalib object");
668 //
1a1c78d4 669 resLaserCal = Store("Calib","LaserCalib",lCalib, &metaData, 0, kTRUE);
da2b6160 670 if(resLaserCal==kFALSE) return 15;
1ee299a5 671 }
73bc3a3f 672 delete daqSources; daqSources = 0;
da2b6160 673
73bc3a3f 674 TList* daqSourceH = GetFileSources(kDAQ, "LASERHISTOS");
675 if(!daqSourceH){
676 AliError(Form("No sources for STANDALONE_LASER run %d !", fRun));
da2b6160 677 return 16;
73bc3a3f 678 }
da2b6160 679 Log("\t List of DAQ sources for LASERHISTOS id: "); daqSourceH->Print();
73bc3a3f 680 //
681 TIter iter2H(daqSourceH);
682 TObjString* sourceH = 0;
683 Int_t iH=0;
684 while((sourceH = dynamic_cast<TObjString*> (iter2H.Next()))){
da2b6160 685 Log(Form("\t Getting file #%d\n",++iH));
686 TString stringLaserFileName = GetFile(kDAQ, "LASERHISTOS", sourceH->GetName());
687 if(stringLaserFileName.Length() <= 0){
73bc3a3f 688 Log(Form("No LASER file from source %s!", sourceH->GetName()));
da2b6160 689 return 16;
73bc3a3f 690 }
da2b6160 691 resLaserHist = StoreReferenceFile(stringLaserFileName.Data(), "laserReference.root");
e83c8d88 692 //
da2b6160 693 if(resLaserHist==kFALSE) return 17;
73bc3a3f 694 }
695 delete daqSourceH; daqSourceH = 0;
e83c8d88 696
697 return 0;
698}
699
0d579f58 700
701//______________________________________________________________________________________________
702UInt_t AliZDCPreprocessor::ProcessMBCalibData()
703{
704 TList* daqSources = GetFileSources(kDAQ, "MBCALIB");
705 if(!daqSources){
706 AliError(Form("No sources for CALIBRATION_MB run %d !", fRun));
707 return 18;
708 }
709 if(daqSources->GetEntries()==0) return 18;
710 Log("\t List of DAQ sources for MBCALIB id: "); daqSources->Print();
711 //
712 TIter iter2(daqSources);
713 TObjString* source = 0;
714 Int_t i=0;
715 Bool_t resMBCal=kTRUE;
716
717 while((source = dynamic_cast<TObjString*> (iter2.Next()))){
718 TString stringMBFileName = GetFile(kDAQ, "MBCALIB", source->GetName());
719 if(stringMBFileName.Length() <= 0){
720 Log(Form("No MBCALIB file from source %s!", source->GetName()));
721 return 18;
722 }
723 const char* mbFileName = stringMBFileName.Data();
724 Log(Form("\t Getting file #%d: %s from %s\n",++i,mbFileName,source->GetName()));
725 //
726 // --- Initializing calibration object
727 AliZDCMBCalib *mbCalib = new AliZDCMBCalib("ZDC");
728 // --- Reading file with calibration data
729 if(mbFileName){
730 TFile * fileHistos = TFile::Open(mbFileName);
731 Log(Form("File %s connected to process data from CALIBRATION_MB events", mbFileName));
732 //
733 fileHistos->cd();
734 TH2F *hZDCvsZEM = (TH2F*) fileHistos->Get("hZDCvsZEM");
735 TH2F *hZDCCvsZEM = (TH2F*) fileHistos->Get("hZDCCvsZEM");
736 TH2F *hZDCAvsZEM = (TH2F*) fileHistos->Get("hZDCAvsZEM");
737 //
738 mbCalib->SetZDCvsZEM(hZDCvsZEM);
739 mbCalib->SetZDCCvsZEM(hZDCCvsZEM);
740 mbCalib->SetZDCAvsZEM(hZDCAvsZEM);
741 //
742 //fileHistos->Close();
743 }
744 else{
745 Log(Form("File %s not found", mbFileName));
746 return 14;
747 }
748 //
749 AliCDBMetaData metaData;
750 metaData.SetBeamPeriod(0);
751 metaData.SetResponsible("Chiara Oppedisano");
752 metaData.SetComment("Filling AliZDCMBCalib object");
753 //
754 //mbCalib->Dump();
755 //
756 resMBCal = Store("Calib","MBCalib",mbCalib, &metaData, 0, kTRUE);
757 printf(" here 1000\n");
758 if(resMBCal==kFALSE) return 19;
759 }
760 delete daqSources; daqSources = 0;
761
762 return 0;
763}
764
e83c8d88 765//______________________________________________________________________________________________
766UInt_t AliZDCPreprocessor::Process(TMap* dcsAliasMap)
767{
768 UInt_t resDCS = 0;
769 UInt_t resChMap=0;
0d579f58 770 UInt_t resEnergyCalib=0, resPedestalCalib=0, resLaserCalib=0, resMBCalib=0;
e83c8d88 771
772 // ************************* Process DCS data ****************************
773 if(ProcessDCS()) resDCS = ProcessDCSData(dcsAliasMap);
774
775 // ********************************* From DAQ ************************************
776
777 const char* beamType = GetRunParameter("beamType");
778 TString runType = GetRunType();
da2b6160 779 printf("\t **** AliZDCPreprocessor -> beamType %s, runType %s ****\n",beamType,runType.Data());
e83c8d88 780
781 // ******************************************
0d579f58 782 // ADC channel mapping
e83c8d88 783 // ******************************************
da2b6160 784 resChMap = ProcessChMap();
e83c8d88 785
786 // ******************************************
0d579f58 787 // Calibration param. for p-p data (all = 1)
e83c8d88 788 // ******************************************
789 // NO ENERGY CALIBRATION -> coefficients set to 1.
790 // Temp -> also inter-calibration coefficients are set to 1.
da2b6160 791 if((strcmp(beamType,"p-p")==0) || (strcmp(beamType,"P-P")==0)) resEnergyCalib = ProcessppData();
e83c8d88 792
b8d194f5 793 // *****************************************************
0d579f58 794 // CALIBRATION_EMD -> Energy calibration and equalization
b8d194f5 795 // *****************************************************
0d579f58 796 if((strcmp(beamType,"A-A")==0) && (runType.CompareTo("CALIBRATION_EMD")==0))
e83c8d88 797 resEnergyCalib = ProcessCalibData();
798
799 // *****************************************************
800 // STANDALONE_PEDESTALS -> Pedestal subtraction
801 // *****************************************************
da2b6160 802 if(runType.CompareTo("STANDALONE_PEDESTAL")==0) resPedestalCalib = ProcessPedestalData();
e83c8d88 803
804 // *****************************************************
805 // STANDALONE_LASER -> Signal stability and ageing
806 // *****************************************************
0d579f58 807 else if(runType.CompareTo("STANDALONE_LASER")==0) resLaserCalib = ProcessLaserData();
808
809 // *****************************************************
810 // CALIBRATION_MB -> Signal stability and ageing
811 // *****************************************************
812 else if(runType.CompareTo("CALIBRATION_MB")==0) resMBCalib = ProcessMBCalibData();
e83c8d88 813
028eb4a1 814
e83c8d88 815 if(resDCS!=0) return resDCS;
816 else if(resChMap!=0) return resChMap;
817 else if(resEnergyCalib!=0) return resEnergyCalib;
818 else if(resPedestalCalib!=0) return resPedestalCalib;
819 else if(resLaserCalib!=0) return resLaserCalib;
0d579f58 820 else if(resMBCalib!=0) return resMBCalib;
79563ba1 821
e83c8d88 822 return 0;
cb50c7c8 823
64a7c78d 824}