]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONTrackerConditionDataMaker.cxx
Fixing (again) the HV display for St1 and 2. Should be OK now
[u/mrichter/AliRoot.git] / MUON / AliMUONTrackerConditionDataMaker.cxx
CommitLineData
ca913045 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#include "AliMUONTrackerConditionDataMaker.h"
19
20///\class AliMUONTrackerConditionDataMaker
21///
22/// Producer of AliMUONVTrackerData from OCDB or Ascii file condition data
23///
24/// \author Laurent Aphecetche, Subatech
25
26///\cond CLASSIMP
27ClassImp(AliMUONTrackerConditionDataMaker)
28///\endcond
29
30#include "AliCDBManager.h"
31#include "AliCDBStorage.h"
32#include "AliDCSValue.h"
33#include "AliLog.h"
34#include "AliMpManuIterator.h"
35#include "AliMUON2DMap.h"
36#include "AliMUONCalibParamND.h"
37#include "AliMUONCalibParamNF.h"
38#include "AliMUONCalibParamNI.h"
39#include "AliMUONCalibrationData.h"
40#include "AliMUONDigitCalibrator.h"
41#include "AliMUONPadStatusMaker.h"
42#include "AliMUONPadStatusMapMaker.h"
43#include "AliMUONTrackerData.h"
44#include "AliMUONTrackerIO.h"
45#include "AliMpArrayI.h"
46#include "AliMpConstants.h"
47#include "AliMpDCSNamer.h"
48#include "AliMpDDLStore.h"
49#include "AliMpDEManager.h"
50#include "AliMpDetElement.h"
51#include "TClass.h"
52#include "TMap.h"
53#include "TObjString.h"
54#include "Riostream.h"
55#include "TString.h"
56#include <sstream>
57
58//_____________________________________________________________________________
59AliMUONTrackerConditionDataMaker::AliMUONTrackerConditionDataMaker(Int_t runNumber, const char* ocdbPath, const char* type):
60AliMUONVTrackerDataMaker(),
61fData(0x0),
62fSource(Form("%s-%010d-%s",ocdbPath,runNumber,type))
63{
64 /// ctor from OCDB
65
66 AliCDBStorage* storage = AliCDBManager::Instance()->GetDefaultStorage();
67
68 AliCDBManager::Instance()->SetDefaultStorage(ocdbPath);
69
70 Int_t startOfValidity;
71 AliMUONVStore* store = CreateStore(runNumber,ocdbPath,type,startOfValidity);
b5b2b1cc 72 AliDebug(1,Form("runNumber=%d ocdbPath=%s type=%s startOfValidity=%d store=%p",
73 runNumber,ocdbPath,type,startOfValidity,store));
ca913045 74 if ( store )
75 {
76 fData = CreateData(type,*store,startOfValidity);
77 }
78
79 delete store;
80
81 AliCDBManager::Instance()->SetDefaultStorage(storage);
82}
83
84//_____________________________________________________________________________
85AliMUONTrackerConditionDataMaker::AliMUONTrackerConditionDataMaker(const char* filename, const char* type):
86AliMUONVTrackerDataMaker(),
87fData(0x0),
88fSource(Form("%s-%s",filename,type))
89{
90 /// ctor from an ASCII file
91
92 TString sFilename(gSystem->ExpandPathName(filename));
93
94 std::ifstream in(sFilename.Data());
95 if (in.good())
96 {
97 std::ostringstream stream;
98 char line[1024];
99 while ( in.getline(line,1024) )
100 {
101 stream << line << "\n";
102 }
103
104 in.close();
105
106 Int_t dummy;
107
108 AliMUONVStore* store = CreateStore(-1,stream.str().c_str(),type,dummy);
109
110 if ( store )
111 {
112 fData = CreateData(type,*store,dummy);
113 }
114 delete store;
115 }
116}
117
118//_____________________________________________________________________________
119AliMUONTrackerConditionDataMaker::AliMUONTrackerConditionDataMaker(const char* data, const char* type, Bool_t) :
120AliMUONVTrackerDataMaker(),
121fData(0x0),
122fSource(Form("direct-%s",type))
123{
124 /// ctor from a string containing the ASCII data
125 /// the last parameter is there just to distinguish this ctor from the previous one
126
127 Int_t dummy;
128
129 AliMUONVStore* store = CreateStore(-1,data,type,dummy);
130
131 if ( store )
132 {
133 fData = CreateData(type,*store,dummy);
134 }
135 delete store;
136
137}
138
139//_____________________________________________________________________________
140AliMUONTrackerConditionDataMaker::~AliMUONTrackerConditionDataMaker()
141{
142 /// dtor
143 delete fData;
144}
145
146
147//_____________________________________________________________________________
148AliMUONVTrackerData*
149AliMUONTrackerConditionDataMaker::CreateData(const char* type, AliMUONVStore& store, Int_t startOfValidity)
150{
151 /// Create the data source
152 AliMUONVTrackerData* data(0x0);
153
154 TString stype(type);
155 stype.ToUpper();
156
157 if ( stype == "CAPACITANCES" )
158 {
159 data = new AliMUONTrackerData(Form("CAPA%d",startOfValidity),"Capacitances",2,kTRUE);
160 data->SetDimensionName(0,"Capa");
161 data->SetDimensionName(1,"Injection gain");
162 }
163 else if ( stype == "CONFIG" )
164 {
165 data = new AliMUONTrackerData(Form("CONFIG%d",startOfValidity),"Configuration",1);
166 data->SetDimensionName(0,"there");
167 data->DisableChannelLevel();
168 }
169 else if ( stype == "GAINS" )
170 {
171 data = new AliMUONTrackerData(Form("GAIN%d",startOfValidity),"Gains",7,kTRUE);
172 data->SetDimensionName(0,"gain");
173 data->SetDimensionName(1,"a1");
174 data->SetDimensionName(2,"a2");
175 data->SetDimensionName(3,"thres");
176 data->SetDimensionName(4,"qual1");
177 data->SetDimensionName(5,"qual2");
178 data->SetDimensionName(6,"sat");
179 }
180 else if ( stype == "HV" )
181 {
182 data = new AliMUONTrackerData(Form("HV%d",startOfValidity),"High Voltages",1); //,!isSingleEvent);
183 data->SetDimensionName(0,"HV");
184 }
185 else if ( stype == "OCCUPANCY" )
186 {
187 data = new AliMUONTrackerData(Form("OCC%d",startOfValidity),"OccupancyMap",store);
188 data->SetDimensionName(0,"One");
189 return data; // important to return now to avoid the data->Add(store) later on...
190 }
191 else if ( stype == "PEDESTALS" )
192 {
193 data = new AliMUONTrackerData(Form("PED%d",startOfValidity),"Pedestals",2,kTRUE);
194 data->SetDimensionName(0,"Mean");
195 data->SetDimensionName(1,"Sigma");
196 }
197 else if ( stype == "STATUS" )
198 {
199 data = new AliMUONTrackerData(Form("STATUS%d",startOfValidity),"Status",1,kTRUE);
200 data->SetDimensionName(0,"Bits");
201 }
202 else if ( stype == "STATUSMAP" )
203 {
204 data = new AliMUONTrackerData(Form("STATUSMAP%d",startOfValidity),"Status map",2,kTRUE);
205 data->SetDimensionName(0,"Bits");
206 data->SetDimensionName(1,"Dead");
207 }
208
209 if (!data)
210 {
211 AliErrorClass(Form("Could not create data for type=%s",type));
212 return 0x0;
213 }
214
215 data->Add(store);
216
217 return data;
218}
219
220//_____________________________________________________________________________
221AliMUONVStore*
222AliMUONTrackerConditionDataMaker::CreateHVStore(TMap& m)
223{
224 /// Create a store from hv values
225
226 AliMUONVStore* store = new AliMUON2DMap(kTRUE);
227
228 TIter next(&m);
229 TObjString* s;
230 AliMpDCSNamer hvNamer("TRACKER");
231
232 while ( ( s = static_cast<TObjString*>(next()) ) )
233 {
234 TString name(s->String());
235
236 Int_t hvIndex = hvNamer.DCSIndexFromDCSAlias(name.Data());
237
df7fd1ff 238 Int_t detElemId = hvNamer.DetElemIdFromDCSAlias(name.Data());
239
240 if ( hvIndex >= 0 && detElemId < 0 )
ca913045 241 {
242 // skip switches
243 continue;
244 }
ca913045 245
246 if ( !AliMpDEManager::IsValidDetElemId(detElemId) )
247 {
248 AliErrorClass(Form("Got an invalid DE = %d from alias = %s",
249 detElemId,name.Data()));
250 continue;
251 }
df7fd1ff 252
ca913045 253 Int_t nPCBs = hvNamer.NumberOfPCBs(detElemId);
b5b2b1cc 254 Int_t indexMin = nPCBs ? 0 : hvIndex;
255 Int_t indexMax = nPCBs ? nPCBs : hvIndex+1;
ca913045 256
257 AliMpDetElement* de = AliMpDDLStore::Instance()->GetDetElement(detElemId);
258
b5b2b1cc 259 for ( int i = indexMin ; i < indexMax; ++i )
ca913045 260 {
261 Float_t switchValue(1.0);
262
263 if ( nPCBs )
264 {
265 TString switchName(hvNamer.DCSSwitchName(detElemId,i));
266
267 TPair* p = static_cast<TPair*>(m.FindObject(switchName.Data()));
268 TObjArray* a = static_cast<TObjArray*>(p->Value());
269
270 switchValue = AliMUONPadStatusMaker::SwitchValue(*a);
271 }
272
273 const AliMpArrayI* manus = de->ManusForHV(i);
274
275 if (!manus) continue;
276
277 TPair* p = static_cast<TPair*>(m.FindObject(name.Data()));
278 TObjArray* a = static_cast<TObjArray*>(p->Value());
279 TIter n2(a);
280 AliDCSValue* v;
281 Float_t hvValue(0);
282 Int_t n(0);
283 while ( ( v = static_cast<AliDCSValue*>(n2()) ) )
284 {
285 hvValue += v->GetFloat();
286 ++n;
287 }
288 hvValue *= switchValue;
289
290 if ( n ) hvValue /= n;
291
292 Int_t nofChannels(AliMpConstants::ManuNofChannels());
293
294 for ( Int_t k = 0 ; k < manus->GetSize(); ++k )
295 {
296 Int_t manuId = manus->GetValue(k);
297 AliMUONVCalibParam* param = static_cast<AliMUONVCalibParam*>(store->FindObject(detElemId,manuId));
298 if ( ! param )
299 {
300 param = new AliMUONCalibParamND(1,nofChannels,detElemId,manuId,0);
301 store->Add(param);
302 }
303 for ( Int_t j = 0 ; j < nofChannels; ++j )
304 {
305 param->SetValueAsDouble(j,0,hvValue);
306 }
307 }
308 }
309 }
310
311 return store;
312
313}
314
315//_____________________________________________________________________________
316AliMUONVStore*
317AliMUONTrackerConditionDataMaker::CreateStatusStore(Int_t runNumber)
318{
319 /// Get the status store
320
321 AliMUONDigitCalibrator calibrator(runNumber);
322
323 AliMUONVStore* sm = new AliMUON2DMap(kTRUE);
324
325 AliMpManuIterator it;
326 Int_t detElemId, manuId;
327
328 while (it.Next(detElemId,manuId))
329 {
330 AliMUONVCalibParam* np = new AliMUONCalibParamNI(1,AliMpConstants::ManuNofChannels(),detElemId,manuId);
331 for ( Int_t i = 0; i < np->Size(); ++i )
332 {
333 Int_t value = calibrator.PadStatus(detElemId,manuId,i);
334 np->SetValueAsInt(i,0,value); // "raw" value of the status
335 }
336 sm->Add(np);
337 }
338
339 return sm;
340}
341
342//_____________________________________________________________________________
343AliMUONVStore*
344AliMUONTrackerConditionDataMaker::CreateStatusMapStore(Int_t runNumber)
345{
346 /// Get the status map, and polish it a bit for representation purposes
347
348 AliMUONDigitCalibrator calibrator(runNumber);
349
350 AliMUONVStore* sm = new AliMUON2DMap(kTRUE);
351
352 AliMpManuIterator it;
353 Int_t detElemId, manuId;
354
355 while (it.Next(detElemId,manuId))
356 {
357 AliMUONVCalibParam* np = new AliMUONCalibParamNI(2,AliMpConstants::ManuNofChannels(),detElemId,manuId);
358 for ( Int_t i = 0; i < np->Size(); ++i )
359 {
360 Int_t value = calibrator.StatusMap(detElemId,manuId,i);
361 Int_t channelIsDead = ( value & AliMUONPadStatusMapMaker::SelfDeadMask() );
362 np->SetValueAsInt(i,0,value); // "raw" value of the status map
363 np->SetValueAsInt(i,1,channelIsDead); // simple 0 or 1 for this channel
364 }
365 sm->Add(np);
366 }
367
368 return sm;
369}
370
371//_____________________________________________________________________________
372AliMUONVStore*
373AliMUONTrackerConditionDataMaker::CreateStore(Int_t runNumber,
374 const char* source,
375 const char* type,
376 Int_t& startOfValidity)
377{
378 /// Create the store by reading it from OCDB or from an ASCII file
379
380 TString stype(type);
381 stype.ToUpper();
382
383 AliMUONVStore* store(0x0);
384
385 startOfValidity = 0;
386
387 Bool_t ocdb = (runNumber>=0);
388
389 if ( stype == "CAPACITANCES" )
390 {
391 if ( ocdb )
392 {
393 store = AliMUONCalibrationData::CreateCapacitances(runNumber,&startOfValidity);
394 }
395 else
396 {
397 store = new AliMUON2DMap(20000);
398 AliMUONTrackerIO::DecodeCapacitances(source,*store);
399 }
400 }
401 else if ( stype == "CONFIG" )
402 {
403 AliMUONVStore* tmp(0x0);
404 if ( ocdb )
405 {
406 tmp = AliMUONCalibrationData::CreateConfig(runNumber,&startOfValidity);
407 }
408 else
409 {
410 tmp = new AliMUON2DMap(kTRUE);
411 Bool_t changed(kFALSE);
412 AliMUONTrackerIO::DecodeConfig(source,*tmp,changed);
413 }
414 if ( tmp )
415 {
416 store = ExpandConfig(*tmp);
417 }
418 delete tmp;
419 }
420 else if ( stype == "GAINS" )
421 {
422 AliMUONVStore* gains(0x0);
423 if ( ocdb )
424 {
425 gains = AliMUONCalibrationData::CreateGains(runNumber,&startOfValidity);
426 }
427 else
428 {
429 gains = new AliMUON2DMap(kTRUE);
430 TString comment;
431 AliMUONTrackerIO::DecodeGains(source,*gains,comment);
432 }
433 store = PatchGainStore(*gains);
434 delete gains;
435 }
436 else if ( stype == "OCCUPANCY" )
437 {
438 if ( ocdb )
439 {
440 store = AliMUONCalibrationData::CreateOccupancyMap(runNumber,&startOfValidity);
441 }
442 else
443 {
444 store = new AliMUON2DMap(kTRUE);
445 AliMUONTrackerIO::DecodeOccupancy(source,*store);
446 }
447 }
448 else if ( stype == "PEDESTALS" )
449 {
450 if ( ocdb )
451 {
452 store = AliMUONCalibrationData::CreatePedestals(runNumber,&startOfValidity);
453 }
454 else
455 {
456 store = new AliMUON2DMap(kTRUE);
457 AliMUONTrackerIO::DecodePedestals(source,*store);
458 }
459 }
460
461 /// Below are source that can only be accessed from OCDB
462 if (!store && !ocdb)
463 {
464 return 0x0;
465 }
466
467 if ( stype == "HV" )
468 {
469 TMap* m = AliMUONCalibrationData::CreateHV(runNumber,&startOfValidity);
470 store = CreateHVStore(*m);
471 delete m;
472 }
473 else if ( stype == "STATUS" )
474 {
475 store = CreateStatusStore(runNumber);
476 }
477 else if ( stype == "STATUSMAP" )
478 {
479 store = CreateStatusMapStore(runNumber);
480 }
481
482 return store;
483}
484
485//_____________________________________________________________________________
486AliMUONVStore*
487AliMUONTrackerConditionDataMaker::ExpandConfig(const AliMUONVStore& manuConfig)
488{
489 /// Convert the config from manu level to channel level (just to
490 /// be able to add it correctly to the trackerdata...)
491
492 AliMUONVStore* store = manuConfig.Create();
493
494 TIter next(manuConfig.CreateIterator());
495 AliMUONVCalibParam* p;
496
497 while ( ( p = static_cast<AliMUONVCalibParam*>(next()) ) )
498 {
499 AliMUONVCalibParam* c = new AliMUONCalibParamNF(1,AliMpConstants::ManuNofChannels(),p->ID0(),p->ID1(),0.0);
500
501 AliMpDetElement* de = AliMpDDLStore::Instance()->GetDetElement(p->ID0());
502
503 for ( Int_t i = 0; i < c->Size(); ++i )
504 {
505 if ( de->IsExistingChannel(p->ID1(),i) )
506 {
507 c->SetValueAsFloat(i,0,1.0);
508 }
509 }
510
511 store->Add(c);
512 }
513 return store;
514}
515
516//_____________________________________________________________________________
517Long64_t
518AliMUONTrackerConditionDataMaker::Merge(TCollection*)
519{
520 /// Merge
521 AliError("Not implemented. Does it have sense ?");
522 return 0;
523}
524
525//_____________________________________________________________________________
526AliMUONVStore*
527AliMUONTrackerConditionDataMaker::PatchGainStore(const AliMUONVStore& gains)
528{
529 /// Polish the gain store :
530 /// a) adding a dimension, computed from a1, and called gain = 1/a1/0.2
531 /// where 0.2 is internal capa in pF, and gain is then in mV/fC
532 /// b) splitting the quality in two
533
534 AliMUONVStore* store = gains.Create();
535
536 TIter next(gains.CreateIterator());
537 AliMUONVCalibParam* param;
538
539 while ( ( param = static_cast<AliMUONVCalibParam*>(next()) ) )
540 {
541 AliMUONVCalibParam* nd = new AliMUONCalibParamND(param->Dimension()+2,
542 param->Size(),
543 param->ID0(),
544 param->ID1());
545 for ( Int_t i = 0; i < param->Size(); ++i )
546 {
547
548 Int_t qual = param->ValueAsInt(i,3);
549 Int_t q1 = (qual & 0xF0) >> 4; // linear fit quality
550 Int_t q2 = qual & 0xF; // parabolic fit quality
551 Double_t gain = 0.0;
552
553 if ( param->ValueAsFloat(i,0) > 1E-9 ) gain = 1.0/param->ValueAsFloat(i,0)/0.2;
554
555 nd->SetValueAsDouble(i,0,gain); // gain
556 nd->SetValueAsDouble(i,1,param->ValueAsFloat(i,0)); // a1
557 nd->SetValueAsDouble(i,2,param->ValueAsFloat(i,1)); // a2
558 nd->SetValueAsInt(i,3,param->ValueAsInt(i,2)); // thres
559 nd->SetValueAsInt(i,4,q1); // qual1
560 nd->SetValueAsInt(i,5,q2); // qual2
561 nd->SetValueAsInt(i,6,param->ValueAsInt(i,4)); // sat
562 }
563 store->Add(nd);
564 }
565
566 return store;
567}
568