]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONCalibrationData.cxx
fix typo
[u/mrichter/AliRoot.git] / MUON / AliMUONCalibrationData.cxx
CommitLineData
c5bdf179 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
1a477a77 16// $Id: AliMUONCalibrationData.cxx 59486 2012-11-07 22:06:24Z laphecet $
c5bdf179 17
18#include "AliMUONCalibrationData.h"
19
20#include "AliCDBEntry.h"
21#include "AliCDBManager.h"
4bec0403 22#include "AliCodeTimer.h"
32f1b761 23#include "AliDCSValue.h"
c5bdf179 24#include "AliLog.h"
32f1b761 25#include "AliMpDCSNamer.h"
b37b9546 26#include "AliMpIntPair.h"
32f1b761 27#include "AliMUONGlobalCrateConfig.h"
28#include "AliMUONRegionalTriggerConfig.h"
0045b488 29#include "AliMUONRejectList.h"
e7d7fa47 30#include "AliMUONTriggerEfficiencyCells.h"
31#include "AliMUONTriggerLut.h"
32f1b761 32#include "AliMUONVCalibParam.h"
a0eca509 33#include "AliMUONVStore.h"
34#include "AliMUONVStore.h"
92c23b09 35
4bec0403 36#include <Riostream.h>
37#include <TClass.h>
38#include <TMap.h>
b37b9546 39#include <TMath.h>
c5bdf179 40
3d1463c8 41//-----------------------------------------------------------------------------
5398f946 42/// \class AliMUONCalibrationData
43///
48ed403b 44/// For the moment, this class stores pedestals, gains, hv (for tracker)
45/// and lut, masks and efficiencies (for trigger) that are fetched from the CDB.
e7d7fa47 46///
47/// This class is to be considered as a convenience class.
48/// Its aim is to ease retrieval of calibration data from the
49/// condition database.
50///
51/// It acts as a "facade" to a bunch of underlying
52/// containers/calibration classes.
53///
5398f946 54/// \author Laurent Aphecetche
3d1463c8 55//-----------------------------------------------------------------------------
e7d7fa47 56
b80faac0 57using std::cout;
58using std::endl;
5398f946 59/// \cond CLASSIMP
c5bdf179 60ClassImp(AliMUONCalibrationData)
5398f946 61/// \endcond
c5bdf179 62
9ee1d6ff 63AliMUONVStore* AliMUONCalibrationData::fgBypassPedestals(0x0);
64AliMUONVStore* AliMUONCalibrationData::fgBypassGains(0x0);
8f29b706 65
1a477a77
LA
66UInt_t AliMUONCalibrationData::fgkDCSSt1Flag(42);
67
68namespace
b37b9546 69{
70 void MarkForDeletion(Int_t* indices, Int_t first, Int_t last)
71 {
72 for ( Int_t i = first; i <= last; ++i )
73 {
74 indices[i] = 1;
75 }
76 }
77}
78
c5bdf179 79//_____________________________________________________________________________
80AliMUONCalibrationData::AliMUONCalibrationData(Int_t runNumber,
81 Bool_t deferredInitialization)
82: TObject(),
83fIsValid(kTRUE),
84fRunNumber(runNumber),
85fGains(0x0),
c3ce65fd 86fPedestals(0x0),
48ed403b 87fHV(0x0),
49e110ec 88fTriggerDCS(0x0),
e7d7fa47 89fLocalTriggerBoardMasks(0x0),
92c23b09 90fRegionalTriggerConfig(0x0),
91fGlobalTriggerCrateConfig(0x0),
e7d7fa47 92fTriggerLut(0x0),
c1bbaf66 93fTriggerEfficiency(0x0),
d067ba7c 94fCapacitances(0x0),
2b8a1212 95fNeighbours(0x0),
0045b488 96fOccupancyMap(0x0),
6c870207 97fRejectList(0x0),
98fConfig(0x0)
c5bdf179 99{
5398f946 100/// Default ctor.
101
c3ce65fd 102 // If deferredInitialization is false, we read *all* calibrations
103 // at once.
104 // So when using this class to access only one kind of calibrations (e.g.
105 // only pedestals), you should put deferredInitialization to kTRUE, which
106 // will instruct this object to fetch the data only when neeeded.
5398f946 107
c5bdf179 108 if ( deferredInitialization == kFALSE )
109 {
5562688f 110 Gains();
111 Pedestals();
7eafe398 112 OccupancyMap();
0045b488 113 RejectList();
5562688f 114 HV();
49e110ec 115 TriggerDCS();
5562688f 116 LocalTriggerBoardMasks(0);
92c23b09 117 RegionalTriggerConfig();
118 GlobalTriggerCrateConfig();
5562688f 119 TriggerLut();
120 TriggerEfficiency();
121 Capacitances();
122 Neighbours();
6c870207 123 Config();
c5bdf179 124 }
125}
126
c5bdf179 127//_____________________________________________________________________________
128AliMUONCalibrationData::~AliMUONCalibrationData()
129{
f436adf2 130 /// Destructor. Note that we're the owner of our pointers if the OCDB cache
131 /// is not set. Otherwise the cache is supposed to take care of them...
132 if (!(AliCDBManager::Instance()->GetCacheFlag())) Reset();
c3ce65fd 133}
c3ce65fd 134
135//_____________________________________________________________________________
5562688f 136AliMUONVStore*
137AliMUONCalibrationData::Capacitances() const
c3ce65fd 138{
5562688f 139 /// Create (if needed) and return the internal store for capacitances.
140
141 if (!fCapacitances)
c3ce65fd 142 {
5562688f 143 fCapacitances = CreateCapacitances(fRunNumber);
c3ce65fd 144 }
5562688f 145 return fCapacitances;
c5bdf179 146}
147
148//_____________________________________________________________________________
5562688f 149AliMUONVStore*
143cd71a 150AliMUONCalibrationData::CreateCapacitances(Int_t runNumber, Int_t* startOfValidity)
c5bdf179 151{
5562688f 152 /// Create capa store from OCDB for a given run
153
143cd71a 154 return dynamic_cast<AliMUONVStore*>(CreateObject(runNumber,"MUON/Calib/Capacitances",startOfValidity));
5562688f 155}
5398f946 156
5562688f 157//_____________________________________________________________________________
158AliMUONVStore*
143cd71a 159AliMUONCalibrationData::CreateGains(Int_t runNumber, Int_t* startOfValidity)
5562688f 160{
161 /// Create a new gain store from the OCDB for a given run
143cd71a 162 return dynamic_cast<AliMUONVStore*>(CreateObject(runNumber,"MUON/Calib/Gains",startOfValidity));
c5bdf179 163}
164
165//_____________________________________________________________________________
92c23b09 166AliMUONGlobalCrateConfig*
143cd71a 167AliMUONCalibrationData::CreateGlobalTriggerCrateConfig(Int_t runNumber, Int_t* startOfValidity)
c5bdf179 168{
92c23b09 169 /// Create the internal store for GlobalTriggerCrateConfig from OCDB
48ed403b 170
143cd71a 171 return dynamic_cast<AliMUONGlobalCrateConfig*>(CreateObject(runNumber,"MUON/Calib/GlobalTriggerCrateConfig",startOfValidity));
48ed403b 172}
173
92c23b09 174
32f1b761 175//______________________________________________________________________________
b37b9546 176Bool_t AliMUONCalibrationData::CheckHVGroup(TObjArray& values, Int_t first, Int_t last, Double_t& value, Int_t& slope, TString* msg)
32f1b761 177{
b37b9546 178 // Get the HV of the values between first and last indices
179 // return the HV slope (in Volt per second) and a message
180 // Return kFALSE if we must discard the group
181 //
32f1b761 182
b37b9546 183 if (msg) *msg="";
32f1b761 184
b37b9546 185 if ( last < first ) return kFALSE;
186 if ( last - first < 2 ) return kFALSE;
32f1b761 187
b37b9546 188 Double_t a(0.0);
189 Double_t b(0.0);
190
191 Float_t HVSAME(1); // 1 volts
192
193 AliDCSValue* vfirst = static_cast<AliDCSValue*>(values.UncheckedAt(first));
194 AliDCSValue* vlast = static_cast<AliDCSValue*>(values.UncheckedAt(last));
195
196 Int_t deltaHV = TMath::Nint(TMath::Abs(vfirst->GetFloat()-vlast->GetFloat()));
32f1b761 197
b37b9546 198 if ( deltaHV < HVSAME ) return kFALSE;
199
200 for ( Int_t i = first; i <= last; ++i )
201 {
202 AliDCSValue* v = static_cast<AliDCSValue*>(values.UncheckedAt(i));
203
204 Double_t y = v->GetFloat() - vfirst->GetFloat();
205 Double_t x = v->GetTimeStamp() - vfirst->GetTimeStamp();
32f1b761 206
b37b9546 207 a += x*y;
208 b += x*x;
209 }
32f1b761 210
b37b9546 211 value = a/b;
212 slope = value > 0 ? 1 : -1;
213 value = TMath::Abs(value);
32f1b761 214
b37b9546 215 UInt_t deltaTime = vlast->GetTimeStamp() - vfirst->GetTimeStamp();
32f1b761 216
b37b9546 217 if (msg)
32f1b761 218 {
b37b9546 219 if (slope>0) (*msg) = Form("RU%d[%d:%d](%d)",TMath::Nint(value),first,last,deltaTime);
220 if (slope<0) (*msg) = Form("RD%d[%d:%d](%d)",TMath::Nint(value),first,last,deltaTime);
32f1b761 221
b37b9546 222 if ( TMath::Nint(value) == 0 )
32f1b761 223 {
b37b9546 224 // this is to protect for the few cases
225 // (see e.g. MchHvLvLeft/Chamber00Left/Quad2Sect0.actual.vMon in run 134497)
226 // where we can have *lots* of values (2483 in this example) but that
227 // are more or less constant...
228 //
229 // or simply to remove small ramps
230 //
231 slope = 0;
232 value = (vfirst->GetFloat()+vlast->GetFloat())/2.0;
233 *msg = Form("FLUCT%d[%d:%d]",TMath::Nint(value),first,last);
32f1b761 234 }
235 }
236
b37b9546 237 return kTRUE;
238}
239
240//______________________________________________________________________________
241Bool_t AliMUONCalibrationData::PatchHVValues(TObjArray& values,
8a599b39 242 TString* msg,
243 Bool_t dryRun)
b37b9546 244{
245 /// We do here a little bit of massaging of the HV values, if needed.
246 ///
247 /// The main point is to "gather" values that are within a given small amount
248 /// of time (typically 60 seconds) and infer a slope from those values
249 /// slope > 0 means it is a ramp-up, slope < 0 that's a ramp-down
250 ///
251 /// This is to avoid both the "ramp-down-before-end-of-run" and the
252 /// "ramp-up-after-start-of-run" syndroms...
253 ///
8a599b39 254 /// Use dryRun = kTRUE to fill the messages *without* altering the values
255 ///
b37b9546 256 /// Return kFALSE is the kind of HV (trouble) case we have here
257 /// has not been identified...
258 ///
259
260 UInt_t DELTATIME(60); // in seconds
261 Int_t IENDRU(60); // in seconds
262
263 // Start by finding groups of values which are not separated (each) by more than
264 // deltaTime
265
266 Bool_t gather(kFALSE);
267 Int_t ifirst(0);
268 Int_t ilast(0);
269 TObjArray groups;
270 groups.SetOwner(kTRUE);
271
272 for ( Int_t i = values.GetLast(); i > 0; --i )
32f1b761 273 {
b37b9546 274 AliDCSValue* vi = static_cast<AliDCSValue*>(values.UncheckedAt(i));
275 AliDCSValue* vj = static_cast<AliDCSValue*>(values.UncheckedAt(i-1));
276
277 if ( vi->GetTimeStamp() - vj->GetTimeStamp() < DELTATIME )
32f1b761 278 {
b37b9546 279 if ( !gather )
280 {
281 gather = kTRUE;
282 ifirst = i;
283 }
284 ilast=i;
32f1b761 285 }
b37b9546 286 else
32f1b761 287 {
b37b9546 288 if ( gather )
289 {
290 ilast=i;
291
292 groups.Add(new AliMpIntPair(ilast,ifirst));
293 }
294 gather = kFALSE;
32f1b761 295 }
32f1b761 296 }
297
b37b9546 298 if (gather)
32f1b761 299 {
b37b9546 300 groups.Add(new AliMpIntPair(0,ifirst));
32f1b761 301 }
b37b9546 302
303 TIter nextGroup(&groups,kIterBackward);
304 AliMpIntPair* p;
305 TString internalMsg;
306 Int_t ngroups(0);
307
308 Int_t nRU(0);
309 Int_t nRD(0);
310 Int_t nStartRU(0);
311 Int_t nEndAndShortRU(0);
312 Int_t nEndRD(0);
313 Int_t nTripRD(0);
314 Int_t nFluct(0);
8a599b39 315 TObjArray trips;
316 trips.SetOwner(kTRUE);
32f1b761 317
b37b9546 318 while ( ( p = static_cast<AliMpIntPair*>(nextGroup()) ) )
32f1b761 319 {
b37b9546 320 Double_t value;
321 Int_t slope;
32f1b761 322
b37b9546 323 TString groupMsg;
324
325 AliDebugClass(1,Form("group %d:%d",p->GetFirst(),p->GetSecond()));
326
327 Bool_t ok = CheckHVGroup(values,p->GetFirst(),p->GetSecond(),value,slope,&groupMsg);
328
329 if (!ok) continue;
330
331 ++ngroups;
332
333 if ( slope > 0 )
334 {
335 if ( p->GetFirst() == 0 )
336 {
337 // start with a ramp-up
338 ++nStartRU;
339 }
340 else if ( p->GetSecond() == values.GetLast() && TMath::Nint(value) < IENDRU )
341 {
342 ++nEndAndShortRU;
343 }
344 else
345 {
346 // ramp-up in the middle of nowhere...
347 ++nRU;
348 }
349 }
350 else if ( slope < 0 )
32f1b761 351 {
b37b9546 352 if ( p->GetSecond() == values.GetLast() )
353 {
354 // end with a ramp-down
355 ++nEndRD;
356 }
357 else
358 {
359 // ramp-down in the middle of nowhere
360 ++nRD;
361 }
362
363 AliDCSValue* d = static_cast<AliDCSValue*>(values.At(p->GetSecond()));
364
365 if ( d->GetFloat() < AliMpDCSNamer::TrackerHVOFF() )
366 {
367 ++nTripRD;
8a599b39 368 AliDCSValue* tripStart = static_cast<AliDCSValue*>(values.At(p->GetFirst()));
369 trips.Add(new AliMpIntPair(tripStart->GetTimeStamp(),TMath::Nint(tripStart->GetFloat())));
b37b9546 370 }
32f1b761 371 }
b37b9546 372 else
32f1b761 373 {
b37b9546 374 ++nFluct;
32f1b761 375 }
b37b9546 376
377 internalMsg += groupMsg;
378 internalMsg += " ";
32f1b761 379 }
380
b37b9546 381 /*
382
383 Once we have "decoded" the groups we try to find out which of
384 the following cases we're facing :
385
386 case A = -------- = OK(1)
387
388 case B = ----
389 \
390 \ = OK, once we have removed the ramp-down (2)
391
392 case C = -----
393 /
394 / = OK, once we have removed the ramp-up (3)
395
396 case D = -----
397 / \
398 / \ = OK, once we have removed the ramp-down (2) and the ramp-up (3)
399
400 case E = ----
401 \
402 \____ = TRIP = BAD (here the ramp-down slope should be bigger than in case C)
403
404 case F = ----
405 \ ----- = BAD (trip + ramp-up at end of run)
406 \____/
407
408 case G = fluctuations (within a range defined in CheckHVGroup...)
409
410 case H =
411 /
412 / = ramp-up right at the end-of-run = OK (4)
413 ------
414
415 (1) OK means the group is identified correctly, still the value can be below ready...
416 (2) ramp-down values will be removed if the ramp is indeed the last values in the serie
417 i.e. it's really an end-of-run problem (otherwise it's not case B)
418 (3) ramp-up values will be removed if the ramp is indeed the first values in the serie
419 i.e. it's really a start-of-run problem (otherwise it's not case C)
420 (4) OK if short enough...
421
422 Any other case is unknown and we'll :
423 a) return kFALSE
424 b) assume the channel is OFF.
425
426
427 */
428
429 AliDebugClass(1,Form("msg=%s ngroupds=%d",internalMsg.Data(),ngroups));
430 AliDebugClass(1,Form("nRU %d nRD %d nStartRU %d nEndRD %d nTripRD %d nFluct %d",
431 nRU,nRD,nStartRU,nEndRD,nTripRD,nFluct));
432
433 TString hvCase("OTHER");
434 int dummy(0),a(-1),b(-1);
8763322f 435 char r[81];
b37b9546 436 Int_t nvalues = values.GetSize();
437 Int_t* indices = new Int_t[nvalues];
438 memset(indices,0,nvalues*sizeof(Int_t));
439
440 AliDCSValue* vfirst = static_cast<AliDCSValue*>(values.UncheckedAt(0));
441 AliDCSValue* vlast = static_cast<AliDCSValue*>(values.UncheckedAt(values.GetLast()));
442
443 UInt_t meanTimeStamp = ( vfirst->GetTimeStamp() + vlast->GetTimeStamp() ) / 2;
444
445 if ( ngroups == 0 )
32f1b761 446 {
b37b9546 447 hvCase = "A";
448 }
449 else if ( nTripRD > 0 )
450 {
8a599b39 451 const Double_t HVLOWTRIP(600); // a trip below this value is considered a "low trip"
452 // i.e. one starting for a non-operational voltage
453
454 internalMsg += Form("NT:%d ",nTripRD);
455
b37b9546 456 if ( nRU > 0 && nRD > 0 )
32f1b761 457 {
b37b9546 458 hvCase = "F";
32f1b761 459 }
460 else
461 {
b37b9546 462 hvCase = "E";
32f1b761 463 }
8a599b39 464
465 for ( Int_t iTrip = 0; iTrip <= trips.GetLast(); ++iTrip )
466 {
467 AliMpIntPair* tripPair = static_cast<AliMpIntPair*>(trips.At(iTrip));
468 TString tripType("TRIP");
469 if ( tripPair->GetSecond() < HVLOWTRIP)
470 {
471 tripType = "LOWTRIP";
472 }
473
474 internalMsg += Form("%s SV:%d TS:%d ",tripType.Data(),tripPair->GetSecond(),tripPair->GetFirst());
475 }
476
477 // we put here the TRIP value as SV:value
478 // for cases where there's a drop in voltage but the starting point was
479 // below operational voltage, so strictly speaking it's *not* a trip, but
480 // more a big fluctuation
481 if ( !dryRun )
482 {
483 MarkForDeletion(indices,0,values.GetLast());
484 values.Add(new AliDCSValue(static_cast<Float_t>(0),meanTimeStamp));
485 }
b37b9546 486 }
487 else if ( nStartRU > 0 && nRU == 0 && nRD == 0 && nEndRD == 0 )
488 {
489 hvCase = "C";
8a599b39 490 if (!dryRun)
491 {
492 sscanf(internalMsg.Data(),"RU%10d[%10d:%10d]%80s",&dummy,&a,&b,r);
493 MarkForDeletion(indices,a,b);
494 }
b37b9546 495 }
496 else if ( nStartRU > 0 && nEndRD > 0 && nRD == 0 && nRU == 0 )
497 {
498 hvCase = "D";
8a599b39 499 if (!dryRun)
500 {
501 sscanf(internalMsg.Data(),"RU%10d[%10d:%10d]%80s",&dummy,&a,&b,r);
502 MarkForDeletion(indices,a,b-1);
503 Int_t i = internalMsg.Index("RD",strlen("RD"),0,TString::kExact);
504 sscanf(internalMsg(i,internalMsg.Length()-i).Data(),
505 "RD%10d[%10d:%10d]%80s",&dummy,&a,&b,r);
506 MarkForDeletion(indices,a+1,b);
507 }
b37b9546 508 }
509 else if ( nEndRD > 0 && nStartRU == 0 && nRU == 0 && nRD == 0 )
510 {
511 hvCase = "B";
8a599b39 512 if (!dryRun)
513 {
514 Int_t i = internalMsg.Index("RD",strlen("RD"),0,TString::kExact);
515 sscanf(internalMsg(i,internalMsg.Length()-i).Data(),
516 "RD%10d[%10d:%10d]%80s",&dummy,&a,&b,r);
517 MarkForDeletion(indices,a,b);
518 }
b37b9546 519 }
520 else if ( nFluct > 0 )
521 {
522 hvCase = "G";
8a599b39 523 if (!dryRun)
b37b9546 524 {
8a599b39 525 TObjArray* af = internalMsg.Tokenize(" ");
526 TIter next(af);
527 TObjString* str;
528 while ( ( str = static_cast<TObjString*>(next()) ) )
b37b9546 529 {
8a599b39 530 TString s(str->String());
531 if ( s.BeginsWith("FLUCT") )
532 {
533 sscanf(s.Data(),"FLUCT%d[%d:%d]",&dummy,&a,&b);
534 MarkForDeletion(indices,a,b);
535 }
b37b9546 536 }
8a599b39 537 delete af;
b37b9546 538 }
b37b9546 539 }
540 else if ( nEndAndShortRU > 0 && nStartRU == 0 && nRU == 0 && nRD == 0 && nEndRD == 0 )
541 {
542 hvCase = "H";
8a599b39 543 if (!dryRun)
544 {
545 sscanf(internalMsg.Data(),"RU%10d[%10d:%10d]%80s",&dummy,&a,&b,r);
546 MarkForDeletion(indices,a,b);
547 }
b37b9546 548 }
549 else
550 {
551 // last chance...
552 // here we know it's not a trip, so let's assume everything is OK
553 // if first and last value are in the same ballpark
554
555 const Double_t HVFLUCT(20); // volts
556
557 if ( TMath::Abs(vfirst->GetFloat() - vlast->GetFloat()) < HVFLUCT )
558 {
559 hvCase = "Z";
560 }
8a599b39 561 if (!dryRun)
562 {
563 MarkForDeletion(indices,1,nvalues-1);
564 }
32f1b761 565 }
566
8a599b39 567 if (!dryRun)
32f1b761 568 {
8a599b39 569 for ( Int_t i = 0; i < nvalues; ++i )
b37b9546 570 {
8a599b39 571 if ( indices[i] )
572 {
573 values.RemoveAt(i);
574 }
b37b9546 575 }
8a599b39 576
577 values.Compress();
b37b9546 578 }
32f1b761 579
b37b9546 580 delete[] indices;
581
582 if ( !values.GetEntries() )
583 {
584 AliErrorClass(Form("No value left after patch... Check that !!! initial # of values=%d msg=%s",
585 nvalues,internalMsg.Data()));
586 hvCase = "OTHER";
587 }
588
8a599b39 589 if (!dryRun)
b37b9546 590 {
8a599b39 591 // take the max of the remaining values
592 TIter nextA(&values);
593 AliDCSValue* val;
594 Float_t maxval(-9999);
595
596 while ( ( val = static_cast<AliDCSValue*>(nextA()) ) )
b37b9546 597 {
8a599b39 598 if ( val->GetFloat() > maxval )
599 {
600 maxval = val->GetFloat();
601 }
b37b9546 602 }
b37b9546 603
8a599b39 604 values.Clear();
b37b9546 605
8a599b39 606 values.Add(new AliDCSValue(maxval,meanTimeStamp));
607 }
b37b9546 608
609 // once the case is inferred, add a "CASE:%10d",hvCase.Data()
610 // to the msg
611 // so we can them sum up for all channels and get a summary per run...
612
613 internalMsg += Form("CASE:%s",hvCase.Data());
614
615 if (msg) *msg = internalMsg.Data();
616
617 return hvCase=="OTHER" ? kFALSE : kTRUE;
32f1b761 618}
92c23b09 619
1a477a77
LA
620//_____________________________________________________________________________
621void AliMUONCalibrationData::AddToMap(const TMap& sourceMap,
622 TMap& destMap,
623 const TString& key,
624 const char* source,
625 const char* dest)
626{
627 /// Remap
628
629 TString newkey(key);
630
631 newkey.ReplaceAll(source,dest);
632
633 TPair* pair = static_cast<TPair*>(sourceMap.FindObject(key.Data()));
634
635 destMap.Add(new TObjString(newkey.Data()),pair->Value());
636}
637
638//_____________________________________________________________________________
639void AliMUONCalibrationData::PatchSt1DCSAliases(TMap& hvMap)
640{
641 /// It was discovered (in sept. 2013) that the DCS aliases for St1 was
642 /// wrongly assigned (in the hardware), so the correspondence between DCS channels
643 /// and actual HV channels is wrong for St1 in the DCS (and thus in the DCS archive,
644 /// and so in the OCDB HV object).
645 ///
646 /// It affects all the OCDB object written in 2010-2013.
647 ///
648 /// This method fixes that.
649
650 if ( hvMap.GetUniqueID() == fgkDCSSt1Flag )
651 {
652 // already clean object. Do nothing
653 return;
654 }
655
656 TIter next(&hvMap);
657 TObjString* hvChannelName;
658
659 TMap newmap;
660 newmap.SetOwnerKeyValue(kTRUE,kFALSE);
661
662 while ( ( hvChannelName = static_cast<TObjString*>(next()) ) )
663 {
664 TString name(hvChannelName->String());
665 TString newname(name);
666
667 // the problem is limited to St1 = ch1+ch2 (or, in DCS parlance, ch0+ch1)
668 // do it "by hand" as we "only" have 8 names to change
669
670 if ( name.Contains("Chamber00Left") )
671 {
672 if (name.Contains("Quad1Sect0")) AddToMap(hvMap,newmap,name,"Quad1Sect0","Quad2Sect0"); // channel 0 of Board00 (alidcscae020)
673
674 if (name.Contains("Quad1Sect1")) AddToMap(hvMap,newmap,name,"Quad1Sect1","Quad2Sect1"); // channel 1
675 if (name.Contains("Quad1Sect2")) AddToMap(hvMap,newmap,name,"Quad1Sect2","Quad2Sect2"); // channel 2
676
677 if (name.Contains("Quad2Sect2")) AddToMap(hvMap,newmap,name,"Quad2Sect2","Quad1Sect0"); // channel 3
678 if (name.Contains("Quad2Sect1")) AddToMap(hvMap,newmap,name,"Quad2Sect1","Quad1Sect1"); // channel 4
679 if (name.Contains("Quad2Sect0")) AddToMap(hvMap,newmap,name,"Quad2Sect0","Quad1Sect2"); // channel 5
680 }
681 else if ( name.Contains("Chamber01Left"))
682 {
683 if (name.Contains("Quad2Sect2")) AddToMap(hvMap,newmap,name,"Quad2Sect2","Quad2Sect0"); // channel 9 of Board00 (alidcscae020)
684 if (name.Contains("Quad2Sect0")) AddToMap(hvMap,newmap,name,"Quad2Sect0","Quad2Sect2"); // channel 11
685 }
686 else
687 {
688 AddToMap(hvMap,newmap,name,name,name);
689 }
690 }
691
692 // copy newmap to hvMap
693
694 TIter nextNewMap(&newmap);
695 while ( ( hvChannelName = static_cast<TObjString*>(nextNewMap()) ) )
696 {
697 TPair* oldPair = static_cast<TPair*>(hvMap.FindObject(hvChannelName->String().Data()));
698 TPair* newPair = static_cast<TPair*>(newmap.FindObject(hvChannelName->String().Data()));
699
700 TObjArray* newValues = static_cast<TObjArray*>(newPair->Value());
701
702 oldPair->SetValue(newValues);
703 }
704}
705
c1bbaf66 706//_____________________________________________________________________________
5562688f 707TMap*
b37b9546 708AliMUONCalibrationData::CreateHV(Int_t runNumber,
709 Int_t* startOfValidity,
710 Bool_t patched,
8a599b39 711 TList* messages,
712 Bool_t dryRun)
c1bbaf66 713{
5562688f 714 /// Create a new HV map from the OCDB for a given run
8a599b39 715 ///
716 /// dryRun is only usefull with patched=kTRUE and non-empty messages) :
717 /// it allow to get the list of messages without altering the values at all
718 /// (A patch without a patch, so to speak...)
719 ///
720
32f1b761 721 TMap* hvMap = dynamic_cast<TMap*>(CreateObject(runNumber,"MUON/Calib/HV",startOfValidity));
b37b9546 722
8763322f 723 if (!hvMap) return 0x0;
1a477a77
LA
724
725 PatchSt1DCSAliases(*hvMap);
8763322f 726
32f1b761 727 if (patched)
728 {
729 TIter next(hvMap);
730 TObjString* hvChannelName;
731
732 while ( ( hvChannelName = static_cast<TObjString*>(next()) ) )
733 {
734 TString name(hvChannelName->String());
735
736 if ( name.Contains("sw") ) continue; // skip switches
39d66ea2 737
738 if ( name.Contains("iMon") ) continue; // skip HV currents
739
32f1b761 740 TPair* hvPair = static_cast<TPair*>(hvMap->FindObject(name.Data()));
741 TObjArray* values = static_cast<TObjArray*>(hvPair->Value());
742 if (!values)
743 {
744 AliErrorClass(Form("Could not get values for alias %s",name.Data()));
745 }
746 else
747 {
b37b9546 748 TString msg;
749
750 AliDebugClass(1,Form("channel %s",name.Data()));
8a599b39 751 Bool_t ok = PatchHVValues(*values,&msg,dryRun);
b37b9546 752
753 if ( messages )
754 {
49d622ec 755 messages->Add(new TObjString(Form("%s %s",hvChannelName->String().Data(),msg.Data())));
b37b9546 756 }
32f1b761 757
b37b9546 758 if (!ok)
32f1b761 759 {
b37b9546 760 AliErrorClass(Form("PatchHVValue was not successfull ! This is serious ! "
761 "You'll have to check the logic for channel %s in run %09d",
762 name.Data(),runNumber));
32f1b761 763 }
764 }
765 }
766
767 }
b37b9546 768
769 if ( messages )
770 {
771 Int_t a(0),b(0),c(0),d(0),e(0),f(0),g(0),h(0),u(0),z(0);
772 TIter next(messages);
773 TObjString* msg;
6350d0c0 774 char hvCase('u');
b37b9546 775
776 while ( ( msg = static_cast<TObjString*>(next()) ) )
777 {
778 Int_t i = msg->String().Index("CASE",strlen("CASE"),0,TString::kExact);
779
780 if ( i >= 0 )
781 {
8763322f 782 sscanf(msg->String()(i,msg->String().Length()-i).Data(),"CASE:%10c",&hvCase);
b37b9546 783 }
784
785 switch (hvCase)
786 {
787 case 'A': ++a; break;
788 case 'B': ++b; break;
789 case 'C': ++c; break;
790 case 'D': ++d; break;
791 case 'E': ++e; break;
792 case 'F': ++f; break;
793 case 'G': ++g; break;
794 case 'H': ++h; break;
795 case 'Z': ++z; break;
796 default: ++u; break;
797 }
798 }
799
800 messages->Add(new TObjString(Form("SUMMARY : # of cases A(%3d) B(%3d) C(%3d) D(%3d) E(%3d) F(%3d) G(%3d) H(%3d) Z(%3d) OTHER(%3d)",
801 a,b,c,d,e,f,g,h,z,u)));
802 }
803
32f1b761 804 return hvMap;
c1bbaf66 805}
806
49e110ec 807//_____________________________________________________________________________
808TMap*
809AliMUONCalibrationData::CreateTriggerDCS(Int_t runNumber, Int_t* startOfValidity)
810{
811 /// Create a new Trigger HV and curent map from the OCDB for a given run
812 return dynamic_cast<TMap*>(CreateObject(runNumber,"MUON/Calib/TriggerDCS",startOfValidity));
813}
814
d067ba7c 815//_____________________________________________________________________________
a0eca509 816AliMUONVStore*
143cd71a 817AliMUONCalibrationData::CreateLocalTriggerBoardMasks(Int_t runNumber, Int_t* startOfValidity)
d067ba7c 818{
5562688f 819 /// Get the internal store for LocalTriggerBoardMasks from OCDB
820
143cd71a 821 return dynamic_cast<AliMUONVStore*>(CreateObject(runNumber,"MUON/Calib/LocalTriggerBoardMasks",startOfValidity));
d067ba7c 822}
823
48ed403b 824//_____________________________________________________________________________
a0eca509 825AliMUONVStore*
143cd71a 826AliMUONCalibrationData::CreateNeighbours(Int_t runNumber, Int_t* startOfValidity)
48ed403b 827{
5562688f 828 /// Create a neighbour store from the OCDB for a given run
143cd71a 829 return dynamic_cast<AliMUONVStore*>(CreateObject(runNumber,"MUON/Calib/Neighbours",startOfValidity));
c5bdf179 830}
831
d067ba7c 832//_____________________________________________________________________________
5562688f 833TObject*
143cd71a 834AliMUONCalibrationData::CreateObject(Int_t runNumber, const char* path, Int_t* startOfValidity)
d067ba7c 835{
5562688f 836 /// Access the CDB for a given path (e.g. MUON/Calib/Pedestals),
837 /// and return the corresponding TObject.
d067ba7c 838
b37b9546 839 AliCodeTimerAutoClass(Form("%09d : %s",runNumber,path),0);
4bec0403 840
5562688f 841 AliCDBManager* man = AliCDBManager::Instance();
842
465302eb 843 AliCDBEntry* entry = man->Get(path,runNumber);
5562688f 844
5562688f 845 if (entry)
d067ba7c 846 {
143cd71a 847 if ( startOfValidity ) *startOfValidity = entry->GetId().GetFirstRun();
848
4bec0403 849 TObject* object = entry->GetObject();
82586209 850 if (!(man->GetCacheFlag()))
851 {
852 entry->SetOwner(kFALSE);
853 delete entry;
854 }
cdffeaea 855// else
856// {
857// entry->SetOwner(kTRUE); //FIXME : this should be done but is causing problems with RecoParams at the end of the reco : investigate why...
858// }
4bec0403 859 return object;
860 }
143cd71a 861 else
862 {
863 if ( startOfValidity ) *startOfValidity = AliCDBRunRange::Infinity();
864 }
865
0045b488 866 {
867
b37b9546 868 AliCodeTimerAutoClass(Form("Failed to get %s for run %09d",path,runNumber),1);
0045b488 869
870 }
871
5562688f 872 return 0x0;
d067ba7c 873}
874
2b8a1212 875//_____________________________________________________________________________
876AliMUONVStore*
7eafe398 877AliMUONCalibrationData::CreateOccupancyMap(Int_t runNumber, Int_t* startOfValidity)
2b8a1212 878{
7eafe398 879 /// Create a new occupancy map store from the OCDB for a given run
880 return dynamic_cast<AliMUONVStore*>(CreateObject(runNumber,"MUON/Calib/OccupancyMap",startOfValidity));
2b8a1212 881}
882
0045b488 883//_____________________________________________________________________________
884AliMUONRejectList*
885AliMUONCalibrationData::CreateRejectList(Int_t runNumber, Int_t* startOfValidity)
886{
887 /// Create a new rejectlist store from the OCDB for a given run
888 return dynamic_cast<AliMUONRejectList*>(CreateObject(runNumber,"MUON/Calib/RejectList",startOfValidity));
889}
890
c1bbaf66 891//_____________________________________________________________________________
a0eca509 892AliMUONVStore*
143cd71a 893AliMUONCalibrationData::CreatePedestals(Int_t runNumber, Int_t* startOfValidity)
c1bbaf66 894{
5562688f 895 /// Create a new pedestal store from the OCDB for a given run
143cd71a 896 return dynamic_cast<AliMUONVStore*>(CreateObject(runNumber,"MUON/Calib/Pedestals",startOfValidity));
c1bbaf66 897}
898
6c870207 899//_____________________________________________________________________________
900AliMUONVStore*
901AliMUONCalibrationData::CreateConfig(Int_t runNumber, Int_t* startOfValidity)
902{
903 /// Create a new config store from the OCDB for a given run
904 return dynamic_cast<AliMUONVStore*>(CreateObject(runNumber,"MUON/Calib/Config",startOfValidity));
905}
906
92c23b09 907
c5bdf179 908//_____________________________________________________________________________
92c23b09 909AliMUONRegionalTriggerConfig*
143cd71a 910AliMUONCalibrationData::CreateRegionalTriggerConfig(Int_t runNumber, Int_t* startOfValidity)
5562688f 911{
92c23b09 912 /// Create the internal store for RegionalTriggerConfig from OCDB
5562688f 913
143cd71a 914 return dynamic_cast<AliMUONRegionalTriggerConfig*>(CreateObject(runNumber,"MUON/Calib/RegionalTriggerConfig",startOfValidity));
5562688f 915}
916
917//_____________________________________________________________________________
918AliMUONTriggerEfficiencyCells*
143cd71a 919AliMUONCalibrationData::CreateTriggerEfficiency(Int_t runNumber, Int_t* startOfValidity)
c5bdf179 920{
5562688f 921 /// Create trigger efficiency object from OCBD
922
143cd71a 923 return dynamic_cast<AliMUONTriggerEfficiencyCells*>(CreateObject(runNumber,"MUON/Calib/TriggerEfficiency",startOfValidity));
5562688f 924}
5398f946 925
5562688f 926//_____________________________________________________________________________
927AliMUONTriggerLut*
143cd71a 928AliMUONCalibrationData::CreateTriggerLut(Int_t runNumber, Int_t* startOfValidity)
5562688f 929{
930 /// Create trigger LUT from OCDB
931
143cd71a 932 return dynamic_cast<AliMUONTriggerLut*>(CreateObject(runNumber,"MUON/Calib/TriggerLut",startOfValidity));
5562688f 933}
934
935//_____________________________________________________________________________
936AliMUONVStore*
937AliMUONCalibrationData::Gains() const
938{
939 /// Create (if needed) and return the internal store for gains.
9ee1d6ff 940 if (fgBypassGains) return fgBypassGains;
8f29b706 941
c5bdf179 942 if (!fGains)
943 {
5562688f 944 fGains = CreateGains(fRunNumber);
c5bdf179 945 }
946 return fGains;
947}
b37b9546 948
e7d7fa47 949//_____________________________________________________________________________
5562688f 950AliMUONVCalibParam*
951AliMUONCalibrationData::Gains(Int_t detElemId, Int_t manuId) const
e7d7fa47 952{
5562688f 953/// Return the gains for a given (detElemId, manuId) pair
954/// Note that, unlike the DeadChannel case, if the result is 0x0, that's an
955/// error (meaning that we should get gains for all channels).
5398f946 956
5562688f 957 AliMUONVStore* gains = Gains();
958 if (!gains)
959 {
960 return 0x0;
961 }
962
963 return static_cast<AliMUONVCalibParam*>(gains->FindObject(detElemId,manuId));
e7d7fa47 964}
965
966//_____________________________________________________________________________
92c23b09 967AliMUONGlobalCrateConfig*
968AliMUONCalibrationData::GlobalTriggerCrateConfig() const
e7d7fa47 969{
92c23b09 970 /// Return the config for the global trigger board.
5562688f 971
92c23b09 972 if (!fGlobalTriggerCrateConfig)
e7d7fa47 973 {
92c23b09 974 fGlobalTriggerCrateConfig = CreateGlobalTriggerCrateConfig(fRunNumber);
e7d7fa47 975 }
92c23b09 976 return fGlobalTriggerCrateConfig;
e7d7fa47 977}
978
92c23b09 979
e7d7fa47 980//_____________________________________________________________________________
5562688f 981TMap*
32f1b761 982AliMUONCalibrationData::HV(Bool_t patched) const
e7d7fa47 983{
5562688f 984 /// Return the calibration for a given (detElemId, manuId) pair
48ed403b 985
5562688f 986 if (!fHV)
e7d7fa47 987 {
32f1b761 988 fHV = CreateHV(fRunNumber,0,patched);
e7d7fa47 989 }
5562688f 990 return fHV;
e7d7fa47 991}
992
49e110ec 993//_____________________________________________________________________________
994TMap*
995AliMUONCalibrationData::TriggerDCS() const
996{
997 /// Return the calibration for a given (detElemId, manuId) pair
998
999 if (!fTriggerDCS)
1000 {
1001 fTriggerDCS = CreateTriggerDCS(fRunNumber);
1002 }
1003 return fTriggerDCS;
1004}
1005
e7d7fa47 1006//_____________________________________________________________________________
a0eca509 1007AliMUONVStore*
5562688f 1008AliMUONCalibrationData::Neighbours() const
e7d7fa47 1009{
5562688f 1010 /// Create (if needed) and return the internal store for neighbours.
1011 if (!fNeighbours)
1012 {
1013 fNeighbours = CreateNeighbours(fRunNumber);
1014 }
1015 return fNeighbours;
1016}
1017
1018//_____________________________________________________________________________
1019AliMUONVCalibParam*
1020AliMUONCalibrationData::LocalTriggerBoardMasks(Int_t localBoardNumber) const
1021{
1022/// Return the masks for a given trigger local board.
5398f946 1023
e7d7fa47 1024 if (!fLocalTriggerBoardMasks)
1025 {
5562688f 1026 fLocalTriggerBoardMasks = CreateLocalTriggerBoardMasks(fRunNumber);
1027 }
1028
1029 if ( fLocalTriggerBoardMasks )
1030 {
1031 AliMUONVCalibParam* ltbm =
1032 static_cast<AliMUONVCalibParam*>(fLocalTriggerBoardMasks->FindObject(localBoardNumber));
1033 if (!ltbm)
e7d7fa47 1034 {
5562688f 1035 AliError(Form("Could not get mask for localBoardNumber=%d",localBoardNumber));
e7d7fa47 1036 }
5562688f 1037 return ltbm;
e7d7fa47 1038 }
5562688f 1039 return 0x0;
e7d7fa47 1040}
1041
2b8a1212 1042//_____________________________________________________________________________
1043AliMUONVStore*
7eafe398 1044AliMUONCalibrationData::OccupancyMap() const
2b8a1212 1045{
7eafe398 1046 /// Get occupancy map
1047 if (!fOccupancyMap)
2b8a1212 1048 {
7eafe398 1049 fOccupancyMap = CreateOccupancyMap(fRunNumber);
2b8a1212 1050 }
7eafe398 1051 return fOccupancyMap;
2b8a1212 1052}
1053
0045b488 1054//_____________________________________________________________________________
1055AliMUONRejectList*
1056AliMUONCalibrationData::RejectList() const
1057{
1058 /// Get reject list
1059 if (!fRejectList)
1060 {
1061 fRejectList = CreateRejectList(fRunNumber);
1062 }
1063 return fRejectList;
1064}
1065
8f29b706 1066//_____________________________________________________________________________
1067void
1068AliMUONCalibrationData::BypassStores(AliMUONVStore* ped, AliMUONVStore* gain)
1069{
1070 /// Force the use of those pedestals and gains
9ee1d6ff 1071 fgBypassPedestals = ped;
1072 fgBypassGains = gain;
8f29b706 1073
1074}
1075
c5bdf179 1076//_____________________________________________________________________________
a0eca509 1077AliMUONVStore*
5562688f 1078AliMUONCalibrationData::Pedestals() const
c5bdf179 1079{
5562688f 1080 /// Return pedestals
8f29b706 1081
9ee1d6ff 1082 if (fgBypassPedestals) return fgBypassPedestals;
8f29b706 1083
c5bdf179 1084 if (!fPedestals)
1085 {
5562688f 1086 fPedestals = CreatePedestals(fRunNumber);
c5bdf179 1087 }
1088 return fPedestals;
1089}
1090
6c870207 1091//_____________________________________________________________________________
1092AliMUONVStore*
1093AliMUONCalibrationData::Config() const
1094{
1095 /// Return config
1096
1097 if (!fConfig)
1098 {
1099 fConfig = CreateConfig(fRunNumber);
1100 }
1101 return fConfig;
1102}
1103
5562688f 1104//_____________________________________________________________________________
1105AliMUONVCalibParam*
1106AliMUONCalibrationData::Pedestals(Int_t detElemId, Int_t manuId) const
1107{
1108 /// Return the pedestals for a given (detElemId, manuId) pair.
1109 /// A return value of 0x0 is considered an error, meaning we should get
1110 /// pedestals for all channels.
1111
1112 AliMUONVStore* pedestals = Pedestals();
1113 if (!pedestals)
1114 {
1115 return 0x0;
1116 }
1117
1118 return static_cast<AliMUONVCalibParam*>(pedestals->FindObject(detElemId,manuId));
1119}
1120
c5bdf179 1121//_____________________________________________________________________________
1122void
1123AliMUONCalibrationData::Print(Option_t*) const
1124{
5562688f 1125 /// A very basic dump of our guts.
5398f946 1126
c5bdf179 1127 cout << "RunNumber " << RunNumber()
e7d7fa47 1128 << " fGains=" << fGains
1129 << " fPedestals=" << fPedestals
6c870207 1130 << " fConfig=" << fConfig
48ed403b 1131 << " fHV=" << fHV
49e110ec 1132 << " fTriggerDCS=" << fTriggerDCS
e7d7fa47 1133 << " fLocalTriggerBoardMasks=" << fLocalTriggerBoardMasks
92c23b09 1134 << " fRegionalTriggerConfig=" << fRegionalTriggerConfig
1135 << " fGlobalTriggerCrateConfig=" << fGlobalTriggerCrateConfig
e7d7fa47 1136 << " fTriggerLut=" << fTriggerLut
c5bdf179 1137 << endl;
1138}
1139
92c23b09 1140
e7d7fa47 1141//_____________________________________________________________________________
92c23b09 1142AliMUONRegionalTriggerConfig*
1143AliMUONCalibrationData::RegionalTriggerConfig() const
e7d7fa47 1144{
92c23b09 1145 /// Return the config for the regional trigger board.
48ed403b 1146
92c23b09 1147 if (!fRegionalTriggerConfig)
e7d7fa47 1148 {
92c23b09 1149 fRegionalTriggerConfig = CreateRegionalTriggerConfig(fRunNumber);
e7d7fa47 1150 }
92c23b09 1151 return fRegionalTriggerConfig;
e7d7fa47 1152}
1153
92c23b09 1154
e7d7fa47 1155//_____________________________________________________________________________
1156AliMUONTriggerEfficiencyCells*
1157AliMUONCalibrationData::TriggerEfficiency() const
1158{
5398f946 1159/// Return the trigger efficiency.
1160
e7d7fa47 1161 if (!fTriggerEfficiency)
1162 {
5562688f 1163 fTriggerEfficiency = CreateTriggerEfficiency(fRunNumber);
e7d7fa47 1164 }
1165 return fTriggerEfficiency;
1166}
1167
5562688f 1168
e7d7fa47 1169//_____________________________________________________________________________
1170AliMUONTriggerLut*
1171AliMUONCalibrationData::TriggerLut() const
1172{
5398f946 1173/// Return the trigger look up table.
1174
e7d7fa47 1175 if (!fTriggerLut)
1176 {
5562688f 1177 fTriggerLut = CreateTriggerLut(fRunNumber);
e7d7fa47 1178 }
1179 return fTriggerLut;
1180}
1181
c1bbaf66 1182//_____________________________________________________________________________
1183void
1184AliMUONCalibrationData::Reset()
1185{
1186/// Reset all data
1187
82586209 1188 AliCodeTimerAuto("",0);
1189
6c870207 1190 delete fConfig;
1191 fConfig = 0x0;
c1bbaf66 1192 delete fPedestals;
1193 fPedestals = 0x0;
1194 delete fGains;
1195 fGains = 0x0;
1196 delete fHV;
1197 fHV = 0x0;
49e110ec 1198 delete fTriggerDCS;
1199 fTriggerDCS = 0x0;
c1bbaf66 1200 delete fLocalTriggerBoardMasks;
1201 fLocalTriggerBoardMasks = 0x0;
92c23b09 1202 delete fRegionalTriggerConfig;
1203 fRegionalTriggerConfig = 0x0;
1204 delete fGlobalTriggerCrateConfig;
1205 fGlobalTriggerCrateConfig = 0x0;
1206
c1bbaf66 1207 delete fTriggerLut;
1208 fTriggerLut = 0x0;
1209 delete fTriggerEfficiency;
1210 fTriggerEfficiency = 0x0;
1211 delete fCapacitances;
1212 fCapacitances = 0x0;
d067ba7c 1213 delete fNeighbours;
1214 fNeighbours = 0x0;
c1bbaf66 1215}
1216
630711ed 1217//_____________________________________________________________________________
1218void
1219AliMUONCalibrationData::Check(Int_t runNumber)
1220{
1221 /// Self-check to see if we can read all data for a given run
1222 /// from the current OCDB...
1223
1224 if ( ! CreateCapacitances(runNumber) )
1225 {
1226 AliErrorClass("Could not read capacitances");
1227 }
1228 else
1229 {
1230 AliInfoClass("Capacitances read OK");
1231 }
1232
1233 if ( ! CreateGains(runNumber) )
1234 {
1235 AliErrorClass("Could not read gains");
1236 }
1237 else
1238 {
1239 AliInfoClass("Gains read OK");
1240 }
1241
1242 if ( ! CreateGlobalTriggerCrateConfig(runNumber) )
1243 {
1244 AliErrorClass("Could not read Trigger Crate Config");
1245 }
1246 else
1247 {
1248 AliInfoClass("TriggerBoardMasks read OK");
1249 }
1250
1251 if ( ! CreateHV(runNumber) )
1252 {
1253 AliErrorClass("Could not read HV");
1254 }
1255 else
1256 {
1257 AliInfoClass("HV read OK");
49e110ec 1258 }
1259
1260 if ( ! CreateTriggerDCS(runNumber) )
1261 {
1262 AliErrorClass("Could not read Trigger HV and Currents");
1263 }
1264 else
1265 {
1266 AliInfoClass("Trigger HV and Currents read OK");
630711ed 1267 }
1268
1269 if ( ! CreateNeighbours(runNumber) )
1270 {
1271 AliErrorClass("Could not read Neighbours");
1272 }
1273 else
1274 {
1275 AliInfoClass("Neighbours read OK");
1276 }
1277
1278 if ( ! CreateLocalTriggerBoardMasks(runNumber) )
1279 {
1280 AliErrorClass("Could not read LocalTriggerBoardMasks");
1281 }
1282 else
1283 {
1284 AliInfoClass("LocalTriggerBoardMasks read OK");
1285 }
1286
1287 if ( ! CreatePedestals(runNumber) )
1288 {
1289 AliErrorClass("Could not read pedestals");
1290 }
1291 else
1292 {
1293 AliInfoClass("Pedestals read OK");
1294 }
6c870207 1295
1296 if ( ! CreateConfig(runNumber) )
1297 {
1298 AliErrorClass("Could not read config");
1299 }
1300 else
1301 {
1302 AliInfoClass("Config read OK");
1303 }
630711ed 1304
1305 if ( ! CreateRegionalTriggerConfig(runNumber) )
1306 {
1307 AliErrorClass("Could not read RegionalTriggerConfig");
1308 }
1309 else
1310 {
1311 AliInfoClass("RegionalTriggerBoardMasks read OK");
1312 }
1313
1314 if ( ! CreateTriggerLut(runNumber) )
1315 {
1316 AliErrorClass("Could not read TriggerLut");
1317 }
1318 else
1319 {
1320 AliInfoClass("TriggerLut read OK");
1321 }
1322
1323 if ( ! CreateTriggerEfficiency(runNumber) )
1324 {
1325 AliErrorClass("Could not read TriggerEfficiency");
1326 }
1327 else
1328 {
1329 AliInfoClass("TriggerEfficiency read OK");
1330 }
1331}