]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/TestMUONPreprocessor.C
Extacting the OCDB in a separate module. The detectors have write permission in the...
[u/mrichter/AliRoot.git] / MUON / TestMUONPreprocessor.C
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
20 /// \ingroup macros
21 /// \file TestMUONPreprocessor.C
22 /// \brief The macro for testing the shuttle preprocessors 
23 ///
24 /// This macro runs the test preprocessor for MUON.
25 /// It uses AliTestShuttle to simulate a full Shuttle process
26 /// It requires to have linked the MUON OCDB files in TestShuttle/TestCDB:
27 /// <pre>
28 /// cd $ALICE_ROOT/SHUTTLE/TestShuttle/TestCDB
29 /// mkdir MUON
30 /// ln -s $ALICE_ROOT/MUON/Calib MUON/Calib
31 /// </pre>
32 ///
33 /// You must load relevant libraries (besides normal MUON ones) before
34 /// compiling this macro :
35 /// <pre>
36 /// gSystem->Load("$ALICE_ROOT/SHUTTLE/TestShuttle/libTestShuttle");
37 /// gSystem->Load("libMUONshuttle");
38 /// </pre>
39 ///
40 /// The input data has to be created first by other processes (or is created
41 /// here by CreateDCSAliasMap() for tracker HV).
42 ///
43 /// To play with it, you'll have to set/modify several lines, to
44 /// - a) select input files, using shuttle->AddInputFile()
45 /// - b) select run type, using shuttle->AddInputRunParameter() (the run type
46 ///      dictates which task is really performed by the MUONPreprocessor
47 ///
48 /// The sourceDirectory is there to "emulate" what the real preprocessor will
49 /// find on the FXS, and is assumed to have the following structure :
50 /// <pre>
51 /// GAINS/
52 ///    LDC0.gain
53 ///    LDC1.gain
54 ///    LDC2.gain
55 ///    LDC3.gain
56 /// GMS/
57 ///    GMS.root
58 /// PEDESTALS/
59 ///    LDC0.ped
60 ///    LDC1.ped
61 ///    LDC2.ped
62 ///    LDC3.ped
63 /// TRIGGER/
64 ///    ExportedFiles.dat (mandatory)
65 ///    MtgGlobalCrate-1.dat
66 ///    MtgLocalLut-1.dat
67 ///    MtgLocalMask-1.dat
68 ///    MtgRegionalCrate-1.dat
69 /// </pre>
70 ///
71 /// IMPORTANT:
72 /// The trigger files have to be present in order for the algorithm to work correctly.
73 /// If you want to test the Trigger DCS maps only, but you don't have the .dat trigger files,
74 /// you have to create dummy files through :
75 /// <pre>
76 /// cd sourceDirectory/TRIGGER
77 /// echo -e "MtgLocalMask-1.dat\nMtgRegionalCrate-1.dat\nMtgGlobalCrate-1.dat\nMtgLocalLut-1.dat" > ExportedFiles.dat
78 /// touch MtgLocalMask-1.dat MtgRegionalCrate-1.dat MtgGlobalCrate-1.dat MtgLocalLut-1.dat
79 /// </pre>
80 ///
81 /// For more information on usage, please see the \ref README_shuttle page.
82 ///
83 /// \author Laurent Aphecetche, SUBATECH Nantes; \n
84 ///         Diego Stocco, SUBATECH Nantes
85
86 #include "TestMUONPreprocessor.h"
87
88 #include "AliMUONTrackerPreprocessor.h"
89 #include "AliMUONTriggerPreprocessor.h"
90
91 #include "AliLog.h"
92
93 #include "AliMpExMap.h"
94 #include "AliMpHelper.h"
95 #include "AliMpDCSNamer.h"
96 #include "AliMpCDB.h"
97
98 #include "AliCDBManager.h"
99 #include "AliCDBEntry.h"
100 #include "AliCDBId.h"
101 #include "AliShuttleInterface.h"
102 #include "AliTestShuttle.h"
103 #include "AliDCSValue.h"
104
105 #include "Riostream.h"
106 #include "TSystem.h"
107 #include "TMap.h"
108 #include "TObjArray.h"
109 #include "TObjString.h"
110 #include "TString.h"
111 #include "TRandom.h"
112 #endif
113
114 void TestMUONPreprocessor(Int_t runNumber=80, 
115                           const char* runType="CALIBRATION",
116                           const char* sourceDirectory="/afs/cern.ch/user/l/laphecet/public")
117 {
118   // runType can be :
119   //
120   // PEDESTAL -> pedestals
121   // CALIBRATION -> gains
122   // PHYSICS -> HV
123   // GMS
124
125   // create AliTestShuttle instance
126   // The parameters are run, startTime, endTime
127   AliTestShuttle* shuttle = new AliTestShuttle(runNumber, 0, 1);
128   
129   const char* inputCDB = "local://$ALICE_ROOT/OCDB/SHUTTLE/TestShuttle/TestCDB";
130   //const char* inputCDB = "alien://folder=/alice/testdata/2008/TS08a/OCDB";
131   
132   AliTestShuttle::SetMainCDB(inputCDB);
133   AliTestShuttle::SetMainRefStorage("local://$ALICE_ROOT/OCDB/SHUTTLE/TestShuttle/TestReference");
134
135   TString rt(runType);
136   rt.ToUpper();
137   
138   if ( rt.Contains("PHYSICS") )
139   {
140     // Create DCS aliases
141     TMap* dcsAliasMap = CreateDCSAliasMap(inputCDB, runNumber);
142
143     if ( dcsAliasMap ) 
144     {
145       // now give the alias map to the shuttle
146       shuttle->SetDCSInput(dcsAliasMap);
147     }
148   }
149   
150   printf("Test Shuttle temp dir: %s\n", AliShuttleInterface::GetShuttleTempDir());
151   printf("Test Shuttle log dir: %s\n", AliShuttleInterface::GetShuttleLogDir());
152   printf("Test OCDB storage Uri: %s\n", AliShuttleInterface::GetMainCDB().Data());
153   printf("Test Reference storage Uri: %s\n", AliShuttleInterface::GetMainRefStorage().Data());
154   
155   // The shuttle can process files that originate from DCS, DAQ and HLT.
156   // To test it, we provide some local files and locations where these would be found when
157   // the online machinery would be there.
158   // In real life this functions would be produces by the sub-detectors
159   // calibration programs in DCS, DAQ or HLT. These files can then be retrieved using the Shuttle.
160   //
161   // Files are added with the function AliTestShuttle::AddInputFile. The syntax is:
162   // AddInputFile(<system>, <detector>, <id>, <source>, <local-file>)
163   // In this example we add 4 files originating from different LDCs but with the same id (PEDESTALS)
164
165   shuttle->AddInputFile(AliTestShuttle::kDAQ,"MCH","PEDESTALS","LDC0",Form("%s/PEDESTALS/LDC0.ped",sourceDirectory));
166   shuttle->AddInputFile(AliTestShuttle::kDAQ,"MCH","PEDESTALS","LDC1",Form("%s/PEDESTALS/LDC1.ped",sourceDirectory));
167   shuttle->AddInputFile(AliTestShuttle::kDAQ,"MCH","PEDESTALS","LDC2",Form("%s/PEDESTALS/LDC2.ped",sourceDirectory));
168   shuttle->AddInputFile(AliTestShuttle::kDAQ,"MCH","PEDESTALS","LDC3",Form("%s/PEDESTALS/LDC3.ped",sourceDirectory));
169
170   shuttle->AddInputFile(AliTestShuttle::kDAQ,"MCH","GAINS","LDC0",Form("%s/GAINS/LDC0.gain",sourceDirectory));
171   shuttle->AddInputFile(AliTestShuttle::kDAQ,"MCH","GAINS","LDC1",Form("%s/GAINS/LDC1.gain",sourceDirectory));
172   shuttle->AddInputFile(AliTestShuttle::kDAQ,"MCH","GAINS","LDC2",Form("%s/GAINS/LDC2.gain",sourceDirectory));
173   shuttle->AddInputFile(AliTestShuttle::kDAQ,"MCH","GAINS","LDC3",Form("%s/GAINS/LDC3.gain",sourceDirectory));
174
175   // and GMS file
176   shuttle->AddInputFile(AliTestShuttle::kDCS,"MCH","GMS","GMS",Form("%s/GMS/GMS.root",sourceDirectory));
177
178   // and then the trigger stuff
179   shuttle->AddInputFile(AliTestShuttle::kDAQ,"MTR","LOCAL","LDC0",Form("%s/TRIGGER/MtgLocalMask-1.dat",sourceDirectory));
180   shuttle->AddInputFile(AliTestShuttle::kDAQ,"MTR","REGIONAL","LDC0",Form("%s/TRIGGER/MtgRegionalCrate-1.dat",sourceDirectory));
181   shuttle->AddInputFile(AliTestShuttle::kDAQ,"MTR","GLOBAL","LDC0",Form("%s/TRIGGER/MtgGlobalCrate-1.dat",sourceDirectory));
182   shuttle->AddInputFile(AliTestShuttle::kDAQ,"MTR","LUT","LDC0",Form("%s/TRIGGER/MtgLocalLut-1.dat",sourceDirectory));
183   shuttle->AddInputFile(AliTestShuttle::kDAQ,"MTR","EXPORTED","LDC0",Form("%s/TRIGGER/ExportedFiles.dat",sourceDirectory));
184
185   // The shuttle can read run parameters stored in the DAQ run logbook.
186   // To test it, we must provide the run parameters manually. They will be retrieved in the preprocessor
187   // using GetRunParameter function.
188   // In real life the parameters will be retrieved automatically from the run logbook;
189   shuttle->SetInputRunType(runType);
190   
191   // Create the preprocessor that should be tested, it registers itself automatically to the shuttle
192   new AliMUONTrackerPreprocessor(shuttle);
193   new AliMUONTriggerPreprocessor(shuttle);
194   
195   shuttle->Print();
196   
197   // Test the preprocessor
198   shuttle->Process();
199 }
200
201 TMap* CreateDCSAliasMap(const char* inputCDB, Int_t runNumber)
202 {
203   /// Creates a DCS structure for MUON Tracker HV and Trigger DCS and Currents
204   ///
205   /// The structure is the following:
206   ///   TMap (key --> value)
207   ///     <DCSAlias> --> <valueList>
208   ///     <DCSAlias> is a string
209   ///     <valueList> is a TObjArray of AliDCSValue
210   ///     An AliDCSValue consists of timestamp and a value in form of a AliSimpleValue
211   
212   Bool_t undefStorage(kFALSE);
213   
214   AliCDBManager* man = AliCDBManager::Instance();
215   if (!man->IsDefaultStorageSet())
216   {
217     undefStorage = kTRUE;
218     man->SetDefaultStorage(inputCDB);
219     man->SetRun(runNumber);
220   }
221   
222   // Load mapping
223   Bool_t ok = AliMpCDB::LoadDDLStore();
224   
225   if (undefStorage)
226   {
227     man->UnsetDefaultStorage();
228   }
229   
230   if (!ok)
231   {
232     AliErrorGeneral("CreateDCSAliasMap","Could not load DDLStore from OCDB");
233     return 0x0;
234   }
235
236   TMap* aliasMap = new TMap;
237   aliasMap->SetOwner(kTRUE);
238   
239   TRandom random(0);
240
241   const Char_t* detName[2] = { "TRACKER", "TRIGGER" };
242
243   for(Int_t idet=0; idet<2; idet++){
244
245     TString sDetName(detName[idet]);
246     sDetName.ToUpper();
247   
248     AliMpDCSNamer dcsNamer(detName[idet]);
249   
250     TObjArray* aliases = dcsNamer.GenerateAliases();
251   
252     for ( Int_t i = 0; i < aliases->GetEntries(); ++i ) 
253     {
254       TObjString* alias = static_cast<TObjString*>(aliases->At(i));
255       TString& aliasName = alias->String();
256       if ( aliasName.Contains("sw") && sDetName.Contains("TRACKER")) 
257       {
258         // HV Switch (St345 only)
259         TObjArray* valueSet = new TObjArray;
260         valueSet->SetOwner(kTRUE);
261         Bool_t value = kTRUE;
262 //      Float_t r = random.Uniform();
263 //      if ( r < 0.007 ) value = kFALSE;      
264 //      if ( aliasName.Contains("DE513sw2") ) value = kFALSE;
265       
266         for ( UInt_t timeStamp = 0; timeStamp < 60*3; timeStamp += 60 )
267         {
268           AliDCSValue* dcsValue = new AliDCSValue(value,timeStamp);
269           valueSet->Add(dcsValue);
270         }
271         aliasMap->Add(new TObjString(*alias),valueSet);
272       }
273       else
274       {
275         TObjArray* valueSet = new TObjArray;
276         valueSet->SetOwner(kTRUE);
277         for ( UInt_t timeStamp = 0; timeStamp < 60*15; timeStamp += 120 )
278         {
279           Float_t value = 0;
280           if(sDetName.Contains("TRACKER")){
281             value = random.Gaus(1750,62.5);
282             if ( aliasName == "MchHvLvLeft/Chamber00Left/Quad2Sect1.actual.vMon") value = 500;
283           }
284           else if(aliasName.Contains("imon")){
285             value = random.Gaus(0.4,0.02);
286           }
287           else {
288             value = random.Gaus(8000,100);
289           }
290         
291           AliDCSValue* dcsValue = new AliDCSValue(value,timeStamp);
292           valueSet->Add(dcsValue);
293         }
294         if ( aliasName == "MchHvLvLeft/Chamber04Left/Slat06.actual.vMon" ) continue;
295         if ( aliasName == "MTR_INSIDE_MT22_RPC3_HV.vmon" ) continue;
296         aliasMap->Add(new TObjString(*alias),valueSet);
297       }
298     } // loop on aliases
299
300     delete aliases;
301   } // loop on detectors (tracker and trigger)
302   
303
304     
305   AliMpCDB::UnloadAll();
306   
307   return aliasMap;
308 }
309