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