]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/MUON/OnlineAnalysis/AliHLTMUONHitReconstructorComponent.cxx
Add setters and getters for filtering criteria (Marian)
[u/mrichter/AliRoot.git] / HLT / MUON / OnlineAnalysis / AliHLTMUONHitReconstructorComponent.cxx
CommitLineData
b0201cbe 1/**************************************************************************
960d54ad 2 * This file is property of and copyright by the ALICE HLT Project *
3 * All rights reserved. *
b0201cbe 4 * *
960d54ad 5 * Primary Authors: *
6 * Indranil Das <indra.das@saha.ac.in> *
b0201cbe 7 * *
8 * Permission to use, copy, modify and distribute this software and its *
9 * documentation strictly for non-commercial purposes is hereby granted *
10 * without fee, provided that the above copyright notice appears in all *
11 * copies and that both the copyright notice and this permission notice *
12 * appear in the supporting documentation. The authors make no claims *
960d54ad 13 * about the suitability of this software for any purpose. It is *
b0201cbe 14 * provided "as is" without express or implied warranty. *
15 **************************************************************************/
16
17/* $Id$ */
18
6253e09b 19///
20///
21/// The HitRec Component is designed to deal the rawdata inputfiles to findout the
22/// the reconstructed hits. The output is send to the output block for further
23/// processing.
24///
25/// Author : Indranil Das ( indra.das@saha.ac.in || indra.ehep@gmail.com )
26///
b0201cbe 27
960d54ad 28#include "AliHLTMUONRecHitsBlockStruct.h"
b0201cbe 29#include "AliHLTMUONHitReconstructorComponent.h"
b12fe461 30#include "AliHLTMUONHitReconstructor.h"
960d54ad 31#include "AliHLTMUONConstants.h"
668eee9f 32#include "AliHLTMUONUtils.h"
5ff5f960 33#include "AliHLTMUONDataBlockWriter.h"
a6b16447 34#include "AliHLTMUONHitReconstructor.h"
b0201cbe 35#include "AliHLTLogging.h"
36#include "AliHLTSystem.h"
37#include "AliHLTDefinitions.h"
29486e5a 38#include <cstdlib>
39#include <cerrno>
40#include <cassert>
93a75941 41#include <fstream>
b0201cbe 42
ee3678d3 43//STEER
44#include "AliCDBManager.h"
93a75941 45#include "AliCDBStorage.h"
ee3678d3 46#include "AliGeomManager.h"
47
48//MUON
49#include "AliMUONGeometryTransformer.h"
50#include "AliMUONCalibrationData.h"
51#include "AliMUONVCalibParam.h"
52
a6b16447 53//MUON/mapping
ee3678d3 54#include "AliMpCDB.h"
55#include "AliMpPad.h"
56#include "AliMpSegmentation.h"
57#include "AliMpDDLStore.h"
58#include "AliMpDEIterator.h"
59#include "AliMpVSegmentation.h"
60#include "AliMpDEManager.h"
61#include "AliMpDetElement.h"
62
b0201cbe 63ClassImp(AliHLTMUONHitReconstructorComponent)
64
65
29486e5a 66AliHLTMUONHitReconstructorComponent::AliHLTMUONHitReconstructorComponent() :
154cba94 67 AliHLTMUONProcessor(),
29486e5a 68 fHitRec(NULL),
a6b16447 69 fDDL(-1),
93a75941 70 fLutSize(0),
71 fLut(NULL),
ee3678d3 72 fIdToEntry(),
29486e5a 73 fWarnForUnexpecedBlock(false)
b0201cbe 74{
6253e09b 75 ///
76 /// Default constructor.
77 ///
b0201cbe 78}
79
960d54ad 80
b0201cbe 81AliHLTMUONHitReconstructorComponent::~AliHLTMUONHitReconstructorComponent()
82{
6253e09b 83 ///
84 /// Default destructor.
85 ///
ee3678d3 86
87 if (fHitRec != NULL)
88 {
89 delete fHitRec;
90 }
93a75941 91 if (fLut != NULL)
92 {
878cb83d 93 delete [] fLut;
93a75941 94 }
960d54ad 95}
b0201cbe 96
960d54ad 97const char* AliHLTMUONHitReconstructorComponent::GetComponentID()
98{
6253e09b 99 ///
100 /// Inherited from AliHLTComponent. Returns the component ID.
101 ///
102
29486e5a 103 return AliHLTMUONConstants::HitReconstructorId();
b0201cbe 104}
105
b0201cbe 106
960d54ad 107void AliHLTMUONHitReconstructorComponent::GetInputDataTypes( std::vector<AliHLTComponentDataType>& list)
108{
6253e09b 109 ///
110 /// Inherited from AliHLTProcessor. Returns the list of expected input data types.
111 ///
112
29486e5a 113 list.clear();
668eee9f 114 list.push_back( AliHLTMUONConstants::DDLRawDataType() );
960d54ad 115}
b0201cbe 116
b0201cbe 117
960d54ad 118AliHLTComponentDataType AliHLTMUONHitReconstructorComponent::GetOutputDataType()
119{
6253e09b 120 ///
121 /// Inherited from AliHLTComponent. Returns the output data type.
122 ///
123
29486e5a 124 return AliHLTMUONConstants::RecHitsBlockDataType();
960d54ad 125}
b0201cbe 126
b0201cbe 127
960d54ad 128void AliHLTMUONHitReconstructorComponent::GetOutputDataSize( unsigned long& constBase, double& inputMultiplier )
129{
6253e09b 130 ///
131 /// Inherited from AliHLTComponent. Returns an estimate of the expected output data size.
132 ///
133
13f09bc1 134 constBase = sizeof(AliHLTMUONRecHitsBlockWriter::HeaderType);
29486e5a 135 inputMultiplier = 1;
960d54ad 136}
b0201cbe 137
b0201cbe 138
960d54ad 139AliHLTComponent* AliHLTMUONHitReconstructorComponent::Spawn()
140{
6253e09b 141 ///
142 /// Inherited from AliHLTComponent. Creates a new object instance.
143 ///
144
29486e5a 145 return new AliHLTMUONHitReconstructorComponent;
960d54ad 146}
b0201cbe 147
b0201cbe 148
29486e5a 149int AliHLTMUONHitReconstructorComponent::DoInit(int argc, const char** argv)
960d54ad 150{
6253e09b 151 ///
152 /// Inherited from AliHLTComponent.
153 /// Parses the command line parameters and initialises the component.
154 ///
b0201cbe 155
ee3678d3 156 HLTInfo("Initialising dHLT hit reconstruction component.");
960d54ad 157
93a75941 158 // Must make sure that fHitRec and fLut is deleted if it is still
159 // allocated for whatever reason.
a6b16447 160 FreeMemory();
161
ee3678d3 162 try
163 {
164 fHitRec = new AliHLTMUONHitReconstructor();
960d54ad 165 }
ee3678d3 166 catch (const std::bad_alloc&)
b8d467da 167 {
ee3678d3 168 HLTError("Could not allocate more memory for the hit reconstructor component.");
169 return -ENOMEM;
b8d467da 170 }
960d54ad 171
a6b16447 172 // Initialise fields with default values then parse the command line.
173 fDDL = -1;
174 fIdToEntry.clear();
ee3678d3 175 fWarnForUnexpecedBlock = false;
a6b16447 176
ee3678d3 177 const char* lutFileName = NULL;
178 const char* cdbPath = NULL;
179 Int_t run = -1;
180 bool useCDB = false;
181
182 for (int i = 0; i < argc; i++)
183 {
184 HLTDebug("argv[%d] == %s", i, argv[i]);
185
186 if (strcmp( argv[i], "-ddl" ) == 0)
187 {
188 if (argc <= i+1)
189 {
190 HLTError("The DDL number was not specified. Must be in the range [13..20].");
a6b16447 191 FreeMemory(); // Make sure we cleanup to avoid partial initialisation.
192 return -EINVAL;
ee3678d3 193 }
194
195 char* cpErr = NULL;
196 unsigned long num = strtoul( argv[i+1], &cpErr, 0 );
197 if (cpErr == NULL or *cpErr != '\0')
198 {
93a75941 199 HLTError("Cannot convert '%s' to DDL a number.", argv[i+1] );
a6b16447 200 FreeMemory(); // Make sure we cleanup to avoid partial initialisation.
201 return -EINVAL;
ee3678d3 202 }
203 if (num < 13 or 20 < num)
204 {
205 HLTError("The DDL number must be in the range [13..20].");
a6b16447 206 FreeMemory(); // Make sure we cleanup to avoid partial initialisation.
207 return -EINVAL;
ee3678d3 208 }
93a75941 209 fDDL = num - 1; // convert to range [12..19]
ee3678d3 210
211 i++;
212 continue;
213 } // -ddl argument
214
215 if (strcmp( argv[i], "-lut" ) == 0)
216 {
217 if (argc <= i+1)
218 {
219 HLTError("The lookup table filename was not specified.");
a6b16447 220 FreeMemory(); // Make sure we cleanup to avoid partial initialisation.
221 return -EINVAL;
ee3678d3 222 }
223 lutFileName = argv[i+1];
224 i++;
225 continue;
226 } // -lut argument
227
228 if (strcmp( argv[i], "-cdb" ) == 0)
229 {
230 useCDB = true;
231 continue;
232 } // -cdb argument
233
234 if (strcmp( argv[i], "-cdbpath" ) == 0)
235 {
236 if ( argc <= i+1 )
237 {
238 HLTError("The CDB path was not specified." );
a6b16447 239 FreeMemory(); // Make sure we cleanup to avoid partial initialisation.
240 return -EINVAL;
ee3678d3 241 }
242 cdbPath = argv[i+1];
243 useCDB = true;
244 i++;
245 continue;
246 } // -cdb argument
247
248 if (strcmp( argv[i], "-run" ) == 0)
249 {
250 if ( argc <= i+1 )
251 {
252 HLTError("The RUN number was not specified." );
a6b16447 253 FreeMemory(); // Make sure we cleanup to avoid partial initialisation.
254 return -EINVAL;
ee3678d3 255 }
256
257 char* cpErr = NULL;
258 run = Int_t( strtoul(argv[i+1], &cpErr, 0) );
259 if (cpErr == NULL or *cpErr != '\0')
260 {
261 HLTError("Cannot convert '%s' to a valid run number."
262 " Expected an integer value.", argv[i+1]
263 );
a6b16447 264 FreeMemory(); // Make sure we cleanup to avoid partial initialisation.
265 return -EINVAL;
ee3678d3 266 }
267
268 i++;
269 continue;
270 } // -run argument
271
272 if (strcmp( argv[i], "-warn_on_unexpected_block" ) == 0)
273 {
274 fWarnForUnexpecedBlock = true;
275 continue;
276 }
277
278 HLTError("Unknown option '%s'", argv[i]);
a6b16447 279 FreeMemory(); // Make sure we cleanup to avoid partial initialisation.
280 return -EINVAL;
ee3678d3 281
282 } // for loop
283
93a75941 284 if (lutFileName == NULL) useCDB = true;
285
a6b16447 286 if (fDDL == -1)
287 {
288 HLTWarning("DDL number not specified. Cannot check if incomming data is valid.");
289 }
290
93a75941 291 int result = 0;
ee3678d3 292 if (useCDB)
293 {
93a75941 294 HLTInfo("Loading lookup table information from CDB for DDL %d.", fDDL+1);
295 if (fDDL == -1)
296 HLTWarning("DDL number not specified. The lookup table loaded from CDB will be empty!");
297 result = ReadCDB(cdbPath, run);
960d54ad 298 }
ee3678d3 299 else
300 {
93a75941 301 HLTInfo("Loading lookup table information from file %s.", lutFileName);
302 result = ReadLookUpTable(lutFileName);
ee3678d3 303 }
93a75941 304 if (result != 0)
ee3678d3 305 {
93a75941 306 // Error messages already generated in ReadCDB or ReadLookUpTable.
a6b16447 307 FreeMemory(); // Make sure we cleanup to avoid partial initialisation.
93a75941 308 return result;
ee3678d3 309 }
310
93a75941 311 fHitRec->SetLookUpTable(fLut, &fIdToEntry);
ee3678d3 312
313 return 0;
b0201cbe 314}
315
960d54ad 316
317int AliHLTMUONHitReconstructorComponent::DoDeinit()
318{
6253e09b 319 ///
320 /// Inherited from AliHLTComponent. Performs a cleanup of the component.
321 ///
322
ee3678d3 323 HLTInfo("Deinitialising dHLT hit reconstruction component.");
a6b16447 324 FreeMemory();
ee3678d3 325 return 0;
b0201cbe 326}
327
b0201cbe 328
960d54ad 329int AliHLTMUONHitReconstructorComponent::DoEvent(
330 const AliHLTComponentEventData& evtData,
b8d467da 331 const AliHLTComponentBlockData* blocks,
332 AliHLTComponentTriggerData& /*trigData*/,
333 AliHLTUInt8_t* outputPtr,
960d54ad 334 AliHLTUInt32_t& size,
335 std::vector<AliHLTComponentBlockData>& outputBlocks
336 )
337{
6253e09b 338 ///
339 /// Inherited from AliHLTProcessor. Processes the new event data.
340 ///
341
29486e5a 342 // Process an event
343 unsigned long totalSize = 0; // Amount of memory currently consumed in bytes.
b0201cbe 344
29486e5a 345 HLTDebug("Processing event %llu with %u input data blocks.",
346 evtData.fEventID, evtData.fBlockCnt
347 );
348
349 // Loop over all input blocks in the event
450e0b36 350 for (AliHLTUInt32_t n = 0; n < evtData.fBlockCnt; n++)
5ff5f960 351 {
450e0b36 352 HLTDebug("Handling block: %u, with fDataType = '%s', fPtr = %p and fSize = %u bytes.",
353 n, DataType2Text(blocks[n].fDataType).c_str(), blocks[n].fPtr, blocks[n].fSize
5ff5f960 354 );
29486e5a 355
668eee9f 356 if (blocks[n].fDataType != AliHLTMUONConstants::DDLRawDataType()
357 or not AliHLTMUONUtils::IsTrackerDDL(blocks[n].fSpecification)
358 )
29486e5a 359 {
360 // Log a message indicating that we got a data block that we
361 // do not know how to handle.
29486e5a 362 if (fWarnForUnexpecedBlock)
450e0b36 363 HLTWarning("Received a data block of a type we cannot handle: '%s', spec: 0x%X",
364 DataType2Text(blocks[n].fDataType).c_str(), blocks[n].fSpecification
29486e5a 365 );
366 else
450e0b36 367 HLTDebug("Received a data block of a type we cannot handle: '%s', spec: 0x%X",
368 DataType2Text(blocks[n].fDataType).c_str(), blocks[n].fSpecification
29486e5a 369 );
370
371 continue;
372 }
373
a6b16447 374 if (fDDL != -1)
ee3678d3 375 {
dba14d7d 376 if (AliHLTMUONUtils::SpecToDDLNumber(blocks[n].fSpecification) != fDDL)
a6b16447 377 {
378 HLTWarning("Received raw data from an unexpected DDL.");
379 }
ee3678d3 380 }
381
29486e5a 382 // Create a new output data block and initialise the header.
383 AliHLTMUONRecHitsBlockWriter block(outputPtr+totalSize, size-totalSize);
384 if (not block.InitCommonHeader())
385 {
8bade2be 386 HLTError("There is not enough space in the output buffer for the new data block."
29486e5a 387 " We require at least %u bytes, but have %u bytes left.",
388 sizeof(AliHLTMUONRecHitsBlockWriter::HeaderType),
389 block.BufferSize()
390 );
391 break;
392 }
393
394 AliHLTUInt32_t totalDDLSize = blocks[n].fSize / sizeof(AliHLTUInt32_t);
395 AliHLTUInt32_t ddlRawDataSize = totalDDLSize - fHitRec->GetkDDLHeaderSize();
396 AliHLTUInt32_t* buffer = reinterpret_cast<AliHLTUInt32_t*>(blocks[n].fPtr)
397 + fHitRec->GetkDDLHeaderSize();
398 AliHLTUInt32_t nofHit = block.MaxNumberOfEntries();
399
ee3678d3 400#ifdef DEBUG
29486e5a 401 HLTDebug("=========== Dumping DDL payload buffer ==========");
402 for (AliHLTUInt32_t j = 0; j < totalDDLSize; j++)
403 HLTDebug("buffer[%d] : %x",j,buffer[j]);
404 HLTDebug("================== End of dump =================");
ee3678d3 405#endif // DEBUG
29486e5a 406
407 if (not fHitRec->Run(buffer, ddlRawDataSize, block.GetArray(), nofHit))
408 {
154cba94 409 HLTError("Error while processing the hit reconstruction algorithm.");
29486e5a 410 size = totalSize; // Must tell the framework how much buffer space was used.
a6b16447 411 return -EIO;
29486e5a 412 }
413
414 // nofHit should now contain the number of reconstructed hits actually found
415 // and filled into the output data block, so we can set this number.
416 assert( nofHit <= block.MaxNumberOfEntries() );
417 block.SetNumberOfEntries(nofHit);
418
419 HLTDebug("Number of reconstructed hits found is %d", nofHit);
420
421 // Fill a block data structure for our output block.
422 AliHLTComponentBlockData bd;
423 FillBlockData(bd);
424 bd.fPtr = outputPtr;
425 // This block's start (offset) is after all other blocks written so far.
426 bd.fOffset = totalSize;
427 bd.fSize = block.BytesUsed();
428 bd.fDataType = AliHLTMUONConstants::RecHitsBlockDataType();
429 bd.fSpecification = blocks[n].fSpecification;
430 outputBlocks.push_back(bd);
431
432 // Increase the total amount of data written so far to our output memory
433 totalSize += block.BytesUsed();
5ff5f960 434 }
29486e5a 435 // Finally we set the total size of output memory we consumed.
436 size = totalSize;
437
438 return 0;
b0201cbe 439}
440
441
a6b16447 442void AliHLTMUONHitReconstructorComponent::FreeMemory()
443{
444 /// Deletes any allocated objects if they are allocated else nothing is
445 /// done for objects not yet allocated.
446 /// This is used as a helper method to make sure the corresponding pointers
93a75941 447 /// are NULL and we get back to a well defined state.
a6b16447 448
449 if (fHitRec != NULL)
450 {
451 delete fHitRec;
452 fHitRec = NULL;
453 }
93a75941 454 if (fLut != NULL)
455 {
878cb83d 456 delete [] fLut;
93a75941 457 fLut = NULL;
458 fLutSize = 0;
459 }
a6b16447 460
461 fIdToEntry.clear();
462}
463
464
93a75941 465int AliHLTMUONHitReconstructorComponent::ReadLookUpTable(const char* lutFileName)
ee3678d3 466{
93a75941 467 /// Read in the lookup table from a text file.
468 /// Note that this method could leave fLut allocated which is cleaned up
469 /// by DoInit with a call to FreeMemory().
470
471 assert( fLut == NULL );
472 assert( fLutSize == 0 );
473 assert( fIdToEntry.empty() );
474
475 std::ifstream file(lutFileName);
476 if (not file.good())
477 {
478 HLTError("Could not open the LUT file %s", lutFileName);
479 return -ENOENT;
480 }
481
482 // First count the number of lines of text in the LUT file before decoding.
483 // This is not the most optimal. It would be better to read and decode at the
484 // same time but we are not allowed to use STL and ROOT containers are too
485 // heavy for this task. At least this is done only at the start of run.
486 std::string str;
487 AliHLTUInt32_t lineCount = 0;
488 while (std::getline(file, str)) lineCount++;
489 if (not file.eof())
490 {
491 HLTError("There was a problem reading the LUT file %s", lutFileName);
492 return -EIO;
493 }
494 if (lineCount == 0)
495 {
496 HLTWarning("The LUT file %s was empty.", lutFileName);
497 }
498
499 // Add one extra LUT line for the first element which is used as a sentinel value.
500 lineCount++;
501
502 try
503 {
504 fLut = new AliHLTMUONHitRecoLutRow[lineCount];
505 fLutSize = lineCount;
506 }
507 catch (const std::bad_alloc&)
508 {
509 HLTError("Could not allocate more memory for the lookuptable.");
510 return -ENOMEM;
511 }
512
513 // Initialise the sentinel value.
514 fLut[0].fDetElemId = 0;
515 fLut[0].fIX = 0;
516 fLut[0].fIY = 0;
517 fLut[0].fRealX = 0.0;
518 fLut[0].fRealY = 0.0;
519 fLut[0].fRealZ = 0.0;
520 fLut[0].fHalfPadSize = 0.0;
521 fLut[0].fPlane = -1;
522 fLut[0].fPed = -1;
523 fLut[0].fSigma = -1;
524 fLut[0].fA0 = -1;
525 fLut[0].fA1 = -1;
526 fLut[0].fThres = -1;
527 fLut[0].fSat = -1;
528
529 // Clear the eof flag and start reading from the beginning of the file again.
530 file.clear();
531 file.seekg(0, std::ios::beg);
532 if (not file.good())
533 {
534 HLTError("There was a problem seeking in the LUT file %s", lutFileName);
535 return -EIO;
536 }
537
538 AliHLTInt32_t idManuChannel;
539 for (AliHLTUInt32_t i = 1; i < fLutSize; i++)
540 {
541 if (std::getline(file, str).fail())
542 {
543 HLTError("There was a problem reading line %d of LUT file %s", i, lutFileName);
544 return -EIO;
545 }
546
547 int result = sscanf(
548 str.c_str(), "%d\t%d\t%d\t%d\t%e\t%e\t%e\t%e\t%d\t%e\t%e\t%e\t%e\t%d\t%d",
549 &idManuChannel, &fLut[i].fDetElemId, &fLut[i].fIX,
550 &fLut[i].fIY, &fLut[i].fRealX,
551 &fLut[i].fRealY, &fLut[i].fRealZ,
552 &fLut[i].fHalfPadSize, &fLut[i].fPlane,
553 &fLut[i].fPed, &fLut[i].fSigma, &fLut[i].fA0,
554 &fLut[i].fA1, &fLut[i].fThres, &fLut[i].fSat
555 );
556
557 if (result != 15)
558 {
559 HLTError("Line %d in LUT file %s does not contain 15 elements.", i, lutFileName);
560 return -EIO;
561 }
562
563 fIdToEntry[idManuChannel] = i;
564 }
565
566 return 0;
ee3678d3 567}
568
569
93a75941 570int AliHLTMUONHitReconstructorComponent::ReadCDB(const char* cdbPath, Int_t run)
b0201cbe 571{
dba14d7d 572 /// Reads LUT from CDB.
93a75941 573
574 assert( fLut == NULL );
575 assert( fLutSize == 0 );
576 assert( fIdToEntry.empty() );
577
578 std::vector<AliHLTMUONHitRecoLutRow> lutList;
579 AliHLTMUONHitRecoLutRow lut;
580 AliHLTUInt32_t iEntry = 0;
581
dba14d7d 582 int result = FetchMappingStores(cdbPath, run);
583 // Error message already generated in FetchMappingStores.
584 if (result != 0) return result;
93a75941 585 AliMpDDLStore* ddlStore = AliMpDDLStore::Instance();
dba14d7d 586
93a75941 587 AliMpSegmentation* mpSegFactory = AliMpSegmentation::Instance();
588 if (mpSegFactory == NULL)
589 {
590 HLTError("Could not find segmentation mapping (AliMpSegmentation) instance.");
591 return -EIO;
592 }
593
594 AliGeomManager::LoadGeometry();
595 AliMUONGeometryTransformer chamberGeometryTransformer;
596 if (not chamberGeometryTransformer.LoadGeometryData())
597 {
598 HLTError("Failed to load geomerty data.");
599 return -ENOENT;
600 }
601
602 AliMUONCalibrationData calibData(run);
603
604 Int_t chamberId;
605
606 for(Int_t iCh = 6; iCh < 10; iCh++)
607 {
608 chamberId = iCh;
609
610 AliMpDEIterator it;
611 for ( it.First(chamberId); ! it.IsDone(); it.Next() )
612 {
613 Int_t detElemId = it.CurrentDEId();
614 int iDDL = ddlStore->GetDetElement(detElemId)->GetDdlId();
615 if (iDDL != fDDL) continue;
616
617 for (Int_t iCath = 0 ; iCath <= 1 ; iCath++)
618 {
619 AliMp::CathodType cath;
620
621 if(iCath == 0)
622 cath = AliMp::kCath0;
623 else
624 cath = AliMp::kCath1;
625
626 const AliMpVSegmentation* seg = mpSegFactory->GetMpSegmentation(detElemId, cath);
627 AliMp::PlaneType plane = seg->PlaneType();
628 Int_t maxIX = seg->MaxPadIndexX();
629 Int_t maxIY = seg->MaxPadIndexY();
630
631 Int_t idManuChannel, manuId, channelId, buspatchId;
632 AliHLTFloat32_t padSizeX, padSizeY;
633 AliHLTFloat32_t halfPadSize;
634 Double_t realX, realY, realZ;
635 Double_t localX, localY, localZ;
636 Float_t calibA0Coeff,calibA1Coeff,pedestal,sigma;
637 Int_t thresold,saturation;
638
639 // Pad Info of a slat to print in lookuptable
640 for (Int_t iX = 0; iX<= maxIX ; iX++)
641 for (Int_t iY = 0; iY<= maxIY ; iY++)
642 {
643 if (not seg->HasPad(AliMpIntPair(iX,iY))) continue;
644
645 AliMpPad pad = seg->PadByIndices(AliMpIntPair(iX,iY), kFALSE);
646
647 // Getting Manu id
648 manuId = pad.GetLocation().GetFirst();
649 manuId &= 0x7FF; // 11 bits
650
651 buspatchId = ddlStore->GetBusPatchId(detElemId,manuId);
652
653 // Getting channel id
654 channelId = pad.GetLocation().GetSecond();
655 channelId &= 0x3F; // 6 bits
656
657 idManuChannel = buspatchId << 11;
658 idManuChannel = (idManuChannel | manuId) << 6;
659 idManuChannel |= channelId;
660
661 localX = pad.Position().X();
662 localY = pad.Position().Y();
663 localZ = 0.0;
664
665 chamberGeometryTransformer.Local2Global(
666 detElemId,localX,localY,localZ,
667 realX,realY,realZ
668 );
669
670 padSizeX = pad.Dimensions().X();
671 padSizeY = pad.Dimensions().Y();
672
673 calibA0Coeff = (calibData.Gains(detElemId, manuId))->ValueAsFloat(channelId, 0);
674 calibA1Coeff = (calibData.Gains(detElemId, manuId))->ValueAsFloat(channelId, 1);
675 thresold = (calibData.Gains(detElemId, manuId))->ValueAsInt(channelId, 2);
676 saturation = (calibData.Gains(detElemId, manuId))->ValueAsInt(channelId, 4);
677
678 pedestal = (calibData.Pedestals(detElemId, manuId))->ValueAsFloat(channelId, 0);
679 sigma = (calibData.Pedestals(detElemId, manuId))->ValueAsFloat(channelId, 1);
680
681 if (plane == 0)
682 halfPadSize = padSizeX;
683 else
684 halfPadSize = padSizeY;
685
686 fIdToEntry[idManuChannel] = iEntry+1;
687
688 lut.fDetElemId = detElemId;
689 lut.fIX = iX;
690 lut.fIY = iY;
691 lut.fRealX = realX;
692 lut.fRealY = realY;
693 lut.fRealZ = realZ;
694 lut.fHalfPadSize = halfPadSize;
695 lut.fPlane = plane;
696 lut.fPed = pedestal;
697 lut.fSigma = sigma;
698 lut.fA0 = calibA0Coeff;
699 lut.fA1 = calibA1Coeff;
700 lut.fThres = thresold;
701 lut.fSat = saturation;
702
703 lutList.push_back(lut);
704 iEntry++;
705 } // iX, iY loop
706 } // iCath loop
707 } // detElemId loop
708 } // ichamber loop
709
710 try
711 {
712 // Use iEntry+1 since we add one extra LUT line for the first element
713 // which is used as a sentinel value.
714 fLut = new AliHLTMUONHitRecoLutRow[iEntry+1];
715 fLutSize = iEntry+1;
716 }
717 catch (const std::bad_alloc&)
718 {
719 HLTError("Could not allocate more memory for the lookuptable.");
720 return -ENOMEM;
721 }
722
723 // Initialise the sentinel value.
724 fLut[0].fDetElemId = 0;
725 fLut[0].fIX = 0;
726 fLut[0].fIY = 0;
727 fLut[0].fRealX = 0.0;
728 fLut[0].fRealY = 0.0;
729 fLut[0].fRealZ = 0.0;
730 fLut[0].fHalfPadSize = 0.0;
731 fLut[0].fPlane = -1;
732 fLut[0].fPed = -1;
733 fLut[0].fSigma = -1;
734 fLut[0].fA0 = -1;
735 fLut[0].fA1 = -1;
736 fLut[0].fThres = -1;
737 fLut[0].fSat = -1;
738
739 for (AliHLTUInt32_t i = 0; i < iEntry; i++)
740 fLut[i+1] = lutList[i];
741
742 return 0;
b0201cbe 743}
744
b0201cbe 745
93a75941 746bool AliHLTMUONHitReconstructorComponent::GenerateLookupTable(
747 AliHLTInt32_t ddl, const char* filename,
ee3678d3 748 const char* cdbPath, Int_t run
749 )
b0201cbe 750{
93a75941 751 /// Generates a ASCII text file containing the lookup table (LUT) from
752 /// the CDB, which can be used for the hit reconstructor component later.
753 /// @param ddl Must be the DDL for which to generate the DDL,
754 /// in the range [13..20].
755 /// @param filename The name of the LUT file to generate.
756 /// @param cdbPath The CDB path to use.
757 /// @param run The run number to use for the CDB.
758 /// @return True if the generation of the LUT file succeeded.
759
760 AliHLTMUONHitReconstructorComponent comp;
761
762 if (ddl < 12 or 19 < ddl)
763 {
764 std::cerr << "ERROR: the DDL number must be in the range [12..19]." << std::endl;
765 return false;
766 }
767
768 comp.fDDL = ddl;
769 if (comp.ReadCDB(cdbPath, run) != 0) return false;
770
771 char str[1024*4];
772 std::fstream file(filename, std::ios::out);
773 if (not file)
774 {
775 std::cerr << "ERROR: could not open file: " << filename << std::endl;
776 return false;
777 }
778
779 assert( comp.fLut != NULL );
780
781 for (IdManuChannelToEntry::iterator id = comp.fIdToEntry.begin();
782 id != comp.fIdToEntry.end();
783 id++
784 )
785 {
786 AliHLTInt32_t idManuChannel = id->first;
787 AliHLTInt32_t row = id->second;
ee3678d3 788
93a75941 789 assert( row < comp.fLutSize );
ee3678d3 790
93a75941 791 sprintf(str, "%d\t%d\t%d\t%d\t%.15e\t%.15e\t%.15e\t%.15e\t%d\t%.15e\t%.15e\t%.15e\t%.15e\t%d\t%d",
792 idManuChannel, comp.fLut[row].fDetElemId, comp.fLut[row].fIX,
793 comp.fLut[row].fIY, comp.fLut[row].fRealX,
794 comp.fLut[row].fRealY, comp.fLut[row].fRealZ,
795 comp.fLut[row].fHalfPadSize, comp.fLut[row].fPlane,
796 comp.fLut[row].fPed, comp.fLut[row].fSigma, comp.fLut[row].fA0,
797 comp.fLut[row].fA1, comp.fLut[row].fThres, comp.fLut[row].fSat
798 );
ee3678d3 799
93a75941 800 file << str << endl;
801 if (file.fail())
802 {
803 std::cerr << "ERROR: There was an I/O error when writing to the file: "
804 << filename << std::endl;
805 return false;
806 }
807 }
808
809 return true;
b0201cbe 810}