]>
Commit | Line | Data |
---|---|---|
ea199e33 | 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 | #if !defined(__CINT__) || defined(__MAKECINT__) | |
19 | ||
e54bf126 | 20 | /// \ingroup macros |
21 | /// \file TestMUONPreprocessor.C | |
22 | /// \brief The macro for testing the shuttle preprocessors | |
23 | /// | |
608c3123 | 24 | /// This macro runs the test preprocessor for MUON. |
25 | /// It uses AliTestShuttle to simulate a full Shuttle process | |
49e110ec | 26 | /// |
2c1e4958 | 27 | /// You must load relevant libraries (besides normal MUON ones -which is done |
28 | /// easily by executing root from the $ALICE_ROOT/MUON directory to use | |
29 | /// the rootlogon.C there) before compiling this macro : | |
49e110ec | 30 | /// <pre> |
31 | /// gSystem->Load("$ALICE_ROOT/SHUTTLE/TestShuttle/libTestShuttle"); | |
6c870207 | 32 | /// gSystem->Load("libMUONshuttle"); |
49e110ec | 33 | /// </pre> |
6c870207 | 34 | /// Last line above assume you have $ALICE_ROOT/MUON/lib/tgt_[arch] (where |
35 | /// libMUONshuttle is located) in your LD_LIBRARY_PATH | |
608c3123 | 36 | /// |
2c1e4958 | 37 | /// Having $ALICE_ROOT/SHUTTLE/TestShuttle directory in your LD_LIBRARY_PATH |
38 | /// (or DYLD_LIBRARY_PATH on Mac OS X) won't hurt either... | |
39 | /// | |
40 | /// You must also make a link of some OCDB entries to have the mapping loaded | |
41 | /// correctly : | |
42 | /// | |
9088e63b | 43 | /// <pre> |
39d66ea2 | 44 | /// cd $ALICE_ROOT/SHUTTLE/TestShuttle/TestCDB |
2c1e4958 | 45 | /// mkdir -p MUON/Calib |
46 | /// cd MUON/Calib | |
47 | /// ln -si $ALICE_ROOT/OCDB/MUON/Calib/MappingData . | |
9088e63b | 48 | /// </pre> |
2c1e4958 | 49 | /// |
50 | /// and Align/Baseline if you'd like to test GMS subprocessor : | |
51 | /// | |
9088e63b | 52 | /// <pre> |
39d66ea2 | 53 | /// cd $ALICE_ROOT/SHUTTLE/TestShuttle/TestCDB |
9088e63b | 54 | /// mkdir -p MUON/Align |
2c1e4958 | 55 | /// cd MUON/Align |
56 | /// ln -si $ALICE_ROOT/OCDB/MUON/Align/Baseline . | |
9088e63b | 57 | /// </pre> |
2c1e4958 | 58 | /// |
608c3123 | 59 | /// The input data has to be created first by other processes (or is created |
60 | /// here by CreateDCSAliasMap() for tracker HV). | |
61 | /// | |
62 | /// To play with it, you'll have to set/modify several lines, to | |
e54bf126 | 63 | /// - a) select input files, using shuttle->AddInputFile() |
64 | /// - b) select run type, using shuttle->AddInputRunParameter() (the run type | |
65 | /// dictates which task is really performed by the MUONPreprocessor | |
608c3123 | 66 | /// |
49e110ec | 67 | /// The sourceDirectory is there to "emulate" what the real preprocessor will |
68 | /// find on the FXS, and is assumed to have the following structure : | |
e54bf126 | 69 | /// <pre> |
042cd64e | 70 | /// CONFIG/ |
71 | /// LDC0.config | |
72 | /// LDC1.config | |
73 | /// LDC2.config | |
74 | /// LDC3.config | |
49e110ec | 75 | /// GAINS/ |
76 | /// LDC0.gain | |
77 | /// LDC1.gain | |
78 | /// LDC2.gain | |
79 | /// LDC3.gain | |
80 | /// GMS/ | |
81 | /// GMS.root | |
7eafe398 | 82 | /// OCCUPANCY/ |
83 | /// mch.occupancy | |
49e110ec | 84 | /// PEDESTALS/ |
85 | /// LDC0.ped | |
86 | /// LDC1.ped | |
87 | /// LDC2.ped | |
88 | /// LDC3.ped | |
6c870207 | 89 | /// LDC4.conf |
90 | /// CONFIG/ | |
91 | /// LDC0.conf | |
92 | /// LDC1.conf | |
93 | /// LDC2.conf | |
94 | /// LDC3.conf | |
95 | /// LDC4.conf | |
49e110ec | 96 | /// TRIGGER/ |
97 | /// ExportedFiles.dat (mandatory) | |
98 | /// MtgGlobalCrate-1.dat | |
99 | /// MtgLocalLut-1.dat | |
100 | /// MtgLocalMask-1.dat | |
101 | /// MtgRegionalCrate-1.dat | |
102 | /// </pre> | |
103 | /// | |
104 | /// IMPORTANT: | |
105 | /// The trigger files have to be present in order for the algorithm to work correctly. | |
106 | /// If you want to test the Trigger DCS maps only, but you don't have the .dat trigger files, | |
107 | /// you have to create dummy files through : | |
108 | /// <pre> | |
109 | /// cd sourceDirectory/TRIGGER | |
110 | /// echo -e "MtgLocalMask-1.dat\nMtgRegionalCrate-1.dat\nMtgGlobalCrate-1.dat\nMtgLocalLut-1.dat" > ExportedFiles.dat | |
111 | /// touch MtgLocalMask-1.dat MtgRegionalCrate-1.dat MtgGlobalCrate-1.dat MtgLocalLut-1.dat | |
e54bf126 | 112 | /// </pre> |
5699c0e6 | 113 | /// |
e54bf126 | 114 | /// For more information on usage, please see the \ref README_shuttle page. |
5699c0e6 | 115 | /// |
49e110ec | 116 | /// \author Laurent Aphecetche, SUBATECH Nantes; \n |
117 | /// Diego Stocco, SUBATECH Nantes | |
ea199e33 | 118 | |
608c3123 | 119 | #include "TestMUONPreprocessor.h" |
8a2055e0 | 120 | |
121 | #include "AliMUONTrackerPreprocessor.h" | |
2ab3623b | 122 | #include "AliMUONTriggerPreprocessor.h" |
5699c0e6 | 123 | |
124 | #include "AliLog.h" | |
8a2055e0 | 125 | |
6c870207 | 126 | #include "AliMpBusPatch.h" |
8a2055e0 | 127 | #include "AliMpExMap.h" |
128 | #include "AliMpHelper.h" | |
6c870207 | 129 | #include "AliMpDDLStore.h" |
49e110ec | 130 | #include "AliMpDCSNamer.h" |
8a2055e0 | 131 | #include "AliMpCDB.h" |
132 | ||
ea199e33 | 133 | #include "AliCDBManager.h" |
8a2055e0 | 134 | #include "AliCDBEntry.h" |
ea199e33 | 135 | #include "AliCDBId.h" |
8a2055e0 | 136 | #include "AliShuttleInterface.h" |
ea199e33 | 137 | #include "AliTestShuttle.h" |
8a2055e0 | 138 | #include "AliDCSValue.h" |
139 | ||
ea199e33 | 140 | #include "Riostream.h" |
141 | #include "TSystem.h" | |
ea199e33 | 142 | #include "TMap.h" |
ea199e33 | 143 | #include "TObjArray.h" |
ea199e33 | 144 | #include "TObjString.h" |
8a2055e0 | 145 | #include "TString.h" |
ea199e33 | 146 | #include "TRandom.h" |
ea199e33 | 147 | #endif |
148 | ||
6c870207 | 149 | //______________________________________________________________________________ |
49e110ec | 150 | void TestMUONPreprocessor(Int_t runNumber=80, |
151 | const char* runType="CALIBRATION", | |
152 | const char* sourceDirectory="/afs/cern.ch/user/l/laphecet/public") | |
ea199e33 | 153 | { |
f37df338 | 154 | // runType can be : |
155 | // | |
7103cd04 | 156 | // PEDESTAL -> pedestals |
49419555 | 157 | // CALIBRATION -> gains |
f37df338 | 158 | // PHYSICS -> HV |
159 | // GMS | |
49e110ec | 160 | |
ea199e33 | 161 | // create AliTestShuttle instance |
162 | // The parameters are run, startTime, endTime | |
6c870207 | 163 | |
164 | gSystem->Load("libTestShuttle.so"); | |
165 | ||
608c3123 | 166 | AliTestShuttle* shuttle = new AliTestShuttle(runNumber, 0, 1); |
9e62d05d | 167 | |
39d66ea2 | 168 | const char* inputCDB = "local://$ALICE_ROOT/SHUTTLE/TestShuttle/TestCDB"; |
3dd0ddc5 | 169 | |
5699c0e6 | 170 | AliTestShuttle::SetMainCDB(inputCDB); |
162637e4 | 171 | AliTestShuttle::SetMainRefStorage("local://$ALICE_ROOT/OCDB/SHUTTLE/TestShuttle/TestReference"); |
9e62d05d | 172 | |
c2d0667a | 173 | TString rt(runType); |
174 | rt.ToUpper(); | |
5699c0e6 | 175 | |
c2d0667a | 176 | if ( rt.Contains("PHYSICS") ) |
5699c0e6 | 177 | { |
49e110ec | 178 | // Create DCS aliases |
6498767e | 179 | TMap* dcsAliasMap = CreateDCSAliasMap(inputCDB, runNumber); |
49e110ec | 180 | |
c2d0667a | 181 | if ( dcsAliasMap ) |
182 | { | |
183 | // now give the alias map to the shuttle | |
184 | shuttle->SetDCSInput(dcsAliasMap); | |
185 | } | |
186 | } | |
5699c0e6 | 187 | |
9e62d05d | 188 | printf("Test Shuttle temp dir: %s\n", AliShuttleInterface::GetShuttleTempDir()); |
189 | printf("Test Shuttle log dir: %s\n", AliShuttleInterface::GetShuttleLogDir()); | |
190 | printf("Test OCDB storage Uri: %s\n", AliShuttleInterface::GetMainCDB().Data()); | |
191 | printf("Test Reference storage Uri: %s\n", AliShuttleInterface::GetMainRefStorage().Data()); | |
192 | ||
608c3123 | 193 | // The shuttle can process files that originate from DCS, DAQ and HLT. |
ea199e33 | 194 | // To test it, we provide some local files and locations where these would be found when |
195 | // the online machinery would be there. | |
196 | // In real life this functions would be produces by the sub-detectors | |
197 | // calibration programs in DCS, DAQ or HLT. These files can then be retrieved using the Shuttle. | |
198 | // | |
199 | // Files are added with the function AliTestShuttle::AddInputFile. The syntax is: | |
200 | // AddInputFile(<system>, <detector>, <id>, <source>, <local-file>) | |
608c3123 | 201 | // In this example we add 4 files originating from different LDCs but with the same id (PEDESTALS) |
ea199e33 | 202 | |
49e110ec | 203 | shuttle->AddInputFile(AliTestShuttle::kDAQ,"MCH","PEDESTALS","LDC0",Form("%s/PEDESTALS/LDC0.ped",sourceDirectory)); |
204 | shuttle->AddInputFile(AliTestShuttle::kDAQ,"MCH","PEDESTALS","LDC1",Form("%s/PEDESTALS/LDC1.ped",sourceDirectory)); | |
205 | shuttle->AddInputFile(AliTestShuttle::kDAQ,"MCH","PEDESTALS","LDC2",Form("%s/PEDESTALS/LDC2.ped",sourceDirectory)); | |
206 | shuttle->AddInputFile(AliTestShuttle::kDAQ,"MCH","PEDESTALS","LDC3",Form("%s/PEDESTALS/LDC3.ped",sourceDirectory)); | |
6c870207 | 207 | shuttle->AddInputFile(AliTestShuttle::kDAQ,"MCH","PEDESTALS","LDC4",Form("%s/PEDESTALS/LDC4.ped",sourceDirectory)); |
49419555 | 208 | |
6c870207 | 209 | shuttle->AddInputFile(AliTestShuttle::kDAQ,"MCH","CONFIG","LDC0",Form("%s/CONFIG/LDC0.conf",sourceDirectory)); |
210 | shuttle->AddInputFile(AliTestShuttle::kDAQ,"MCH","CONFIG","LDC1",Form("%s/CONFIG/LDC1.conf",sourceDirectory)); | |
211 | shuttle->AddInputFile(AliTestShuttle::kDAQ,"MCH","CONFIG","LDC2",Form("%s/CONFIG/LDC2.conf",sourceDirectory)); | |
212 | shuttle->AddInputFile(AliTestShuttle::kDAQ,"MCH","CONFIG","LDC3",Form("%s/CONFIG/LDC3.conf",sourceDirectory)); | |
213 | shuttle->AddInputFile(AliTestShuttle::kDAQ,"MCH","CONFIG","LDC4",Form("%s/CONFIG/LDC4.conf",sourceDirectory)); | |
214 | ||
49e110ec | 215 | shuttle->AddInputFile(AliTestShuttle::kDAQ,"MCH","GAINS","LDC0",Form("%s/GAINS/LDC0.gain",sourceDirectory)); |
216 | shuttle->AddInputFile(AliTestShuttle::kDAQ,"MCH","GAINS","LDC1",Form("%s/GAINS/LDC1.gain",sourceDirectory)); | |
217 | shuttle->AddInputFile(AliTestShuttle::kDAQ,"MCH","GAINS","LDC2",Form("%s/GAINS/LDC2.gain",sourceDirectory)); | |
218 | shuttle->AddInputFile(AliTestShuttle::kDAQ,"MCH","GAINS","LDC3",Form("%s/GAINS/LDC3.gain",sourceDirectory)); | |
49419555 | 219 | |
7eafe398 | 220 | shuttle->AddInputFile(AliTestShuttle::kDAQ,"MCH","OCCUPANCY","MON",Form("%s/OCCUPANCY/mch.occupancy",sourceDirectory)); |
221 | ||
608c3123 | 222 | // and GMS file |
49e110ec | 223 | shuttle->AddInputFile(AliTestShuttle::kDCS,"MCH","GMS","GMS",Form("%s/GMS/GMS.root",sourceDirectory)); |
038d1637 | 224 | |
2ab3623b | 225 | // and then the trigger stuff |
49e110ec | 226 | shuttle->AddInputFile(AliTestShuttle::kDAQ,"MTR","LOCAL","LDC0",Form("%s/TRIGGER/MtgLocalMask-1.dat",sourceDirectory)); |
227 | shuttle->AddInputFile(AliTestShuttle::kDAQ,"MTR","REGIONAL","LDC0",Form("%s/TRIGGER/MtgRegionalCrate-1.dat",sourceDirectory)); | |
228 | shuttle->AddInputFile(AliTestShuttle::kDAQ,"MTR","GLOBAL","LDC0",Form("%s/TRIGGER/MtgGlobalCrate-1.dat",sourceDirectory)); | |
229 | shuttle->AddInputFile(AliTestShuttle::kDAQ,"MTR","LUT","LDC0",Form("%s/TRIGGER/MtgLocalLut-1.dat",sourceDirectory)); | |
230 | shuttle->AddInputFile(AliTestShuttle::kDAQ,"MTR","EXPORTED","LDC0",Form("%s/TRIGGER/ExportedFiles.dat",sourceDirectory)); | |
231 | ||
608c3123 | 232 | // The shuttle can read run parameters stored in the DAQ run logbook. |
233 | // To test it, we must provide the run parameters manually. They will be retrieved in the preprocessor | |
234 | // using GetRunParameter function. | |
235 | // In real life the parameters will be retrieved automatically from the run logbook; | |
f37df338 | 236 | shuttle->SetInputRunType(runType); |
608c3123 | 237 | |
82945276 | 238 | shuttle->AddInputRunParameter("totalEvents","20"); |
239 | ||
ea199e33 | 240 | // Create the preprocessor that should be tested, it registers itself automatically to the shuttle |
9e62d05d | 241 | new AliMUONTrackerPreprocessor(shuttle); |
2ab3623b | 242 | new AliMUONTriggerPreprocessor(shuttle); |
243 | ||
ea199e33 | 244 | shuttle->Print(); |
245 | ||
246 | // Test the preprocessor | |
247 | shuttle->Process(); | |
608c3123 | 248 | } |
ea199e33 | 249 | |
6c870207 | 250 | //______________________________________________________________________________ |
251 | void GenerateConfig() | |
252 | { | |
253 | /// Generate "fake" configuration files for the tracker. One per LDC. | |
254 | ||
255 | Bool_t undefStorage(kFALSE); | |
256 | ||
257 | AliCDBManager* man = AliCDBManager::Instance(); | |
258 | if (!man->IsDefaultStorageSet()) | |
259 | { | |
260 | undefStorage = kTRUE; | |
261 | man->SetDefaultStorage("local://$ALICE_ROOT/OCDB"); | |
262 | man->SetRun(0); | |
263 | } | |
264 | ||
265 | // Load mapping | |
266 | Bool_t ok = AliMpCDB::LoadDDLStore(); | |
267 | ||
268 | if (undefStorage) | |
269 | { | |
270 | man->UnsetDefaultStorage(); | |
271 | } | |
272 | ||
273 | if (!ok) | |
274 | { | |
275 | AliErrorGeneral("GenerateConfig","Could not load DDLStore from OCDB"); | |
276 | return; | |
277 | } | |
278 | ||
279 | ofstream* files[5]; | |
280 | for ( Int_t i = 0; i < 5; ++i ) | |
281 | { | |
282 | files[i]=0; | |
283 | } | |
284 | ||
285 | TIter next(AliMpDDLStore::Instance()->CreateBusPatchIterator()); | |
286 | AliMpBusPatch* bp; | |
287 | ||
288 | while ( ( bp = static_cast<AliMpBusPatch*>(next()) ) ) | |
289 | { | |
290 | Int_t ddl = bp->GetDdlId(); | |
291 | ||
292 | Int_t ldc = ddl/4; | |
293 | ||
294 | if (!files[ldc]) | |
295 | { | |
296 | files[ldc] = new ofstream(Form("LDC%d.conf",ldc)); | |
297 | *(files[ldc]) << "# changed" << endl; | |
298 | } | |
299 | ||
300 | for ( Int_t imanu = 0; imanu < bp->GetNofManus(); ++imanu ) | |
301 | { | |
302 | *(files[ldc]) << bp->GetId() << " " << bp->GetManuId(imanu) << endl; | |
303 | } | |
304 | } | |
305 | ||
306 | for ( Int_t i = 0; i < 5; ++i ) | |
307 | { | |
308 | if ( files[i] ) files[i]->close(); | |
309 | delete files[i]; | |
310 | } | |
311 | } | |
312 | ||
313 | //______________________________________________________________________________ | |
6498767e | 314 | TMap* CreateDCSAliasMap(const char* inputCDB, Int_t runNumber) |
608c3123 | 315 | { |
49e110ec | 316 | /// Creates a DCS structure for MUON Tracker HV and Trigger DCS and Currents |
608c3123 | 317 | /// |
318 | /// The structure is the following: | |
319 | /// TMap (key --> value) | |
320 | /// <DCSAlias> --> <valueList> | |
321 | /// <DCSAlias> is a string | |
322 | /// <valueList> is a TObjArray of AliDCSValue | |
323 | /// An AliDCSValue consists of timestamp and a value in form of a AliSimpleValue | |
324 | ||
5699c0e6 | 325 | Bool_t undefStorage(kFALSE); |
326 | ||
327 | AliCDBManager* man = AliCDBManager::Instance(); | |
328 | if (!man->IsDefaultStorageSet()) | |
329 | { | |
330 | undefStorage = kTRUE; | |
331 | man->SetDefaultStorage(inputCDB); | |
6498767e | 332 | man->SetRun(runNumber); |
5699c0e6 | 333 | } |
334 | ||
331a617a | 335 | // Load mapping |
5699c0e6 | 336 | Bool_t ok = AliMpCDB::LoadDDLStore(); |
337 | ||
338 | if (undefStorage) | |
339 | { | |
340 | man->UnsetDefaultStorage(); | |
341 | } | |
342 | ||
343 | if (!ok) | |
344 | { | |
345 | AliErrorGeneral("CreateDCSAliasMap","Could not load DDLStore from OCDB"); | |
346 | return 0x0; | |
347 | } | |
ba55f1e6 | 348 | |
608c3123 | 349 | TMap* aliasMap = new TMap; |
350 | aliasMap->SetOwner(kTRUE); | |
351 | ||
352 | TRandom random(0); | |
49e110ec | 353 | |
354 | const Char_t* detName[2] = { "TRACKER", "TRIGGER" }; | |
355 | ||
356 | for(Int_t idet=0; idet<2; idet++){ | |
357 | ||
358 | TString sDetName(detName[idet]); | |
359 | sDetName.ToUpper(); | |
608c3123 | 360 | |
49e110ec | 361 | AliMpDCSNamer dcsNamer(detName[idet]); |
608c3123 | 362 | |
49e110ec | 363 | TObjArray* aliases = dcsNamer.GenerateAliases(); |
608c3123 | 364 | |
49e110ec | 365 | for ( Int_t i = 0; i < aliases->GetEntries(); ++i ) |
608c3123 | 366 | { |
49e110ec | 367 | TObjString* alias = static_cast<TObjString*>(aliases->At(i)); |
368 | TString& aliasName = alias->String(); | |
369 | if ( aliasName.Contains("sw") && sDetName.Contains("TRACKER")) | |
370 | { | |
6c870207 | 371 | // HV Switch (St345 only) |
372 | TObjArray* valueSet = new TObjArray; | |
373 | valueSet->SetOwner(kTRUE); | |
374 | Bool_t bvalue = kTRUE; | |
375 | // Float_t r = random.Uniform(); | |
376 | // if ( r < 0.007 ) value = kFALSE; | |
377 | // if ( aliasName.Contains("DE513sw2") ) value = kFALSE; | |
378 | ||
379 | for ( UInt_t timeStamp = 0; timeStamp < 60*3; timeStamp += 60 ) | |
380 | { | |
381 | AliDCSValue* dcsValue = new AliDCSValue(bvalue,timeStamp); | |
382 | valueSet->Add(dcsValue); | |
383 | } | |
384 | aliasMap->Add(new TObjString(*alias),valueSet); | |
608c3123 | 385 | } |
49e110ec | 386 | else |
608c3123 | 387 | { |
6c870207 | 388 | TObjArray* valueSet = new TObjArray; |
389 | valueSet->SetOwner(kTRUE); | |
390 | for ( UInt_t timeStamp = 0; timeStamp < 60*15; timeStamp += 120 ) | |
391 | { | |
392 | Float_t value = 0; | |
393 | if(sDetName.Contains("TRACKER")){ | |
39d66ea2 | 394 | if ( aliasName.Contains("vMon")) |
395 | { | |
396 | value = random.Gaus(1750,62.5); | |
397 | if ( aliasName == "MchHvLvLeft/Chamber00Left/Quad2Sect1.actual.vMon") value = 500; | |
398 | } | |
399 | else | |
400 | { | |
401 | value = random.Gaus(10,2); | |
402 | if ( aliasName == "MchHvLvLeft/Chamber00Left/Quad2Sect1.actual.iMon") value = 50; | |
403 | } | |
6c870207 | 404 | } |
405 | else if(aliasName.Contains("iMon")){ | |
406 | value = random.Gaus(2.,0.4); | |
407 | } | |
408 | else { | |
409 | value = random.Gaus(8000.,16.); | |
410 | } | |
411 | ||
412 | AliDCSValue* dcsValue = new AliDCSValue(value,timeStamp); | |
413 | valueSet->Add(dcsValue); | |
414 | } | |
415 | if ( aliasName == "MchHvLvLeft/Chamber04Left/Slat06.actual.vMon" ) continue; | |
416 | if ( aliasName == "MTR_INSIDE_MT22_RPC3_HV.vEff" ) continue; | |
417 | if ( aliasName == "MTR_OUTSIDE_MT21_RPC4_HV.actual.iMon" ) continue; | |
418 | aliasMap->Add(new TObjString(*alias),valueSet); | |
608c3123 | 419 | } |
49e110ec | 420 | } // loop on aliases |
6c870207 | 421 | |
49e110ec | 422 | delete aliases; |
423 | } // loop on detectors (tracker and trigger) | |
608c3123 | 424 | |
2fbe202b | 425 | AliMpCDB::UnloadAll(); |
426 | ||
608c3123 | 427 | return aliasMap; |
ea199e33 | 428 | } |
608c3123 | 429 |