]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/TRD/AliHLTTRDTrackerV1Component.cxx
TRD online reco update (Theodor)
[u/mrichter/AliRoot.git] / HLT / TRD / AliHLTTRDTrackerV1Component.cxx
1 // $Id: AliHLTTRDTrackerV1Component.cxx 23618 2008-01-29 13:07:38Z hristov $
2
3 //**************************************************************************
4 //* This file is property of and copyright by the ALICE HLT Project        * 
5 //* ALICE Experiment at CERN, All rights reserved.                         *
6 //*                                                                        *
7 //* Primary Authors:                                                       *
8 //*                  for The ALICE HLT Project.                            *
9 //*                                                                        *
10 //* Permission to use, copy, modify and distribute this software and its   *
11 //* documentation strictly for non-commercial purposes is hereby granted   *
12 //* without fee, provided that the above copyright notice appears in all   *
13 //* copies and that both the copyright notice and this permission notice   *
14 //* appear in the supporting documentation. The authors make no claims     *
15 //* about the suitability of this software for any purpose. It is          *
16 //* provided "as is" without express or implied warranty.                  *
17 //**************************************************************************
18
19 /** @file   AliHLTTRDTrackerV1Component.cxx
20     @author 
21     @date   
22     @brief  A TRDTrackerV1 processing component for the HLT.
23 */
24
25 #if __GNUC__ >= 3
26 using namespace std;
27 #endif
28
29 #include "AliHLTTRDTrackerV1Component.h"
30 #include "AliHLTTRDDefinitions.h"
31 #include "AliHLTTRDCluster.h"
32 #include "AliHLTTRDTrack.h"
33 #include "AliHLTTRDUtils.h"
34
35 #include "TFile.h"
36 #include "TChain.h"
37
38 #include "AliGeomManager.h"
39 #include "AliCDBManager.h"
40 #include "AliCDBStorage.h"
41 #include "AliCDBEntry.h"
42 #include "AliESDEvent.h"
43 #include "AliMagF.h"
44 #include "AliESDfriend.h"
45
46 #include "AliTRDcalibDB.h"
47 #include "AliTRDReconstructor.h"
48 #include "AliTRDtrackerV1.h"
49 #include "AliTRDrecoParam.h"
50
51 #include <cstdlib>
52 #include <cerrno>
53 #include <string>
54
55 #ifdef HAVE_VALGRIND_CALLGRIND_H
56 #include <valgrind/callgrind.h>
57 #else
58 #define CALLGRIND_START_INSTRUMENTATION do { } while (0)
59 #define CALLGRIND_STOP_INSTRUMENTATION do { } while (0)
60 #endif
61
62 ClassImp(AliHLTTRDTrackerV1Component)
63     
64 AliHLTTRDTrackerV1Component::AliHLTTRDTrackerV1Component():
65   AliHLTProcessor(),
66   fOutputPercentage(100), // By default we copy to the output exactly what we got as input 
67   fTracker(NULL),
68   fRecoParam(NULL),
69   fReconstructor(NULL),
70   fESD(NULL),
71   fClusterArray(NULL),
72   fRecoParamType(-1),
73   fNtimeBins(-1),
74   fMagneticField(-1),
75   fPIDmethod(1),
76   fgeometryFileName(""),
77   fieldStrength(-101),
78   fSlowTracking(kFALSE),
79   fOutputV1Tracks(kTRUE)
80 {
81   // Default constructor
82
83 }
84
85 AliHLTTRDTrackerV1Component::~AliHLTTRDTrackerV1Component()
86 {
87   // Destructor
88 }
89
90 const char* AliHLTTRDTrackerV1Component::GetComponentID()
91 {
92   // Return the component ID const char *
93   return "TRDTrackerV1"; // The ID of this component
94 }
95
96 void AliHLTTRDTrackerV1Component::GetInputDataTypes( vector<AliHLTComponent_DataType>& list)
97 {
98   // Get the list of input data  
99   list.clear(); // We do not have any requirements for our input data type(s).
100   list.push_back(AliHLTTRDDefinitions::fgkClusterDataType);
101 }
102
103 AliHLTComponentDataType AliHLTTRDTrackerV1Component::GetOutputDataType()
104 {
105   // Get the output data type
106   return kAliHLTMultipleDataType;
107 }
108
109 int AliHLTTRDTrackerV1Component::GetOutputDataTypes(AliHLTComponentDataTypeList& tgtList)
110 {
111   // Get the output data types
112   tgtList.clear();
113   //tgtList.push_back(AliHLTTRDDefinitions::fgkTimeBinPropagationDataType);
114   tgtList.push_back(kAliHLTDataTypeTrack | kAliHLTDataOriginTRD);
115   tgtList.push_back(AliHLTTRDDefinitions::fgkTRDSATracksDataType);
116   return tgtList.size();
117 }
118
119 void AliHLTTRDTrackerV1Component::GetOutputDataSize( unsigned long& constBase, double& inputMultiplier )
120 {
121   // Get the output data size
122   constBase = 0;
123   inputMultiplier = ((double)fOutputPercentage)/100.0;
124 }
125
126 // Spawn function, return new instance of this class
127 AliHLTComponent* AliHLTTRDTrackerV1Component::Spawn()
128 {
129   return new AliHLTTRDTrackerV1Component;
130 };
131
132
133 int AliHLTTRDTrackerV1Component::DoInit( int argc, const char** argv )
134 {
135   // perform initialization. We check whether our relative output size is specified in the arguments.
136   int iResult=0;
137
138   fReconstructor = new AliTRDReconstructor();
139   HLTDebug("TRDReconstructor at 0x%x", fReconstructor);
140
141   fESD = new AliESDEvent;
142   fESD->CreateStdContent();
143   
144   TString configuration="";
145   TString argument="";
146   for (int i=0; i<argc && iResult>=0; i++) {
147     argument=argv[i];
148     if (!configuration.IsNull()) configuration+=" ";
149     configuration+=argument;
150   }
151
152   if (!configuration.IsNull()) {
153     iResult=Configure(configuration.Data());
154   } else {
155     iResult=Reconfigure(NULL, NULL);
156   }
157
158   if(iResult<0) return iResult;
159
160   fTracker = new AliTRDtrackerV1();
161   HLTDebug("TRDTracker at 0x%x", fTracker);
162   fTracker->SetReconstructor(fReconstructor);
163
164   fClusterArray = new TClonesArray("AliTRDcluster"); // would be nice to allocate memory for all clusters here.
165
166   return iResult;
167 }
168
169 int AliHLTTRDTrackerV1Component::DoDeinit()
170 {
171   // Deinitialization of the component
172
173   fTracker->SetClustersOwner(kFALSE);
174   delete fTracker;
175   fTracker = NULL;
176
177   fClusterArray->Delete();
178   delete fClusterArray;
179   fClusterArray = NULL;
180   
181   // We need to set clusters in Reconstructor to null to prevent from 
182   // double deleting, since we delete TClonesArray by ourself.
183   fReconstructor->SetClusters(0x0);
184   delete fReconstructor;
185   fReconstructor = NULL;
186   delete fESD;
187   fESD = NULL;
188   
189   AliTRDcalibDB::Terminate();
190
191   return 0;
192 }
193
194 int AliHLTTRDTrackerV1Component::DoEvent( const AliHLTComponentEventData& evtData, 
195                                           const AliHLTComponentBlockData* blocks, 
196                                           AliHLTComponent_TriggerData& /*trigData*/, 
197                                           AliHLTUInt8_t* outputPtr, 
198                                           AliHLTUInt32_t& size, 
199                                           vector<AliHLTComponent_BlockData>& outputBlocks )
200 {
201   // Process an event
202
203   if (evtData.fEventID == 1)
204     CALLGRIND_START_INSTRUMENTATION;
205
206   HLTDebug("NofBlocks %i", evtData.fBlockCnt );
207   
208   fESD->Reset();
209   //fESD->SetMagneticField(fSolenoidBz);
210
211   AliHLTUInt32_t totalSize = 0, offset = 0;
212
213   vector<AliHLTComponent_DataType> expectedDataTypes;
214   GetInputDataTypes(expectedDataTypes);
215   for ( unsigned long iBlock = 0; iBlock < evtData.fBlockCnt; iBlock++ ) 
216     {
217       const AliHLTComponentBlockData &block = blocks[iBlock];
218       AliHLTComponentDataType inputDataType = block.fDataType;
219       Bool_t correctDataType = kFALSE;
220
221       for(UInt_t i = 0; i < expectedDataTypes.size(); i++){
222         if( expectedDataTypes.at(i) == inputDataType)
223           correctDataType = kTRUE;
224       }
225       if (!correctDataType)
226         {
227           HLTDebug( "Block # %i/%i; Event 0x%08LX (%Lu) Wrong received datatype: %s - Skipping",
228                     iBlock, evtData.fBlockCnt-1,
229                     evtData.fEventID, evtData.fEventID, 
230                     DataType2Text(inputDataType).c_str());
231           continue;
232         }
233       else {
234         HLTDebug("We get the right data type: Block # %i/%i; Event 0x%08LX (%Lu) Received datatype: %s; Block Size: %i",
235                  iBlock, evtData.fBlockCnt-1,
236                  evtData.fEventID, evtData.fEventID, 
237                  DataType2Text(inputDataType).c_str(),
238                  block.fSize);
239       }
240
241 #ifndef NDEBUG
242       unsigned long constBase;
243       double inputMultiplier;
244       GetOutputDataSize(constBase,inputMultiplier);
245       if(size<(constBase+block.fSize*inputMultiplier)){
246         HLTWarning("Memory Block given might be too small: %i < %i; Event %Lu", size, constBase+block.fSize*inputMultiplier, evtData.fEventID);
247       }
248 #endif      
249
250       AliHLTTRDUtils::ReadClusters(fClusterArray, block.fPtr, block.fSize, &fNtimeBins);
251       HLTDebug("Reading number of time bins from input block. Setting number of timebins to %d", fNtimeBins);
252       AliTRDtrackerV1::SetNTimeBins(fNtimeBins);
253
254       HLTDebug("TClonesArray of clusters: nbEntries = %i", fClusterArray->GetEntriesFast());
255       fTracker->LoadClusters(fClusterArray);
256
257       fTracker->Clusters2Tracks(fESD);
258
259       Int_t nTracks = fESD->GetNumberOfTracks();
260       HLTInfo("Number of tracks  == %d ==", nTracks);  
261
262       TClonesArray* trdTracks;
263       trdTracks = fTracker->GetListOfTracks();
264       
265       if(nTracks>0){
266         HLTDebug("We have an output ESDEvent: 0x%x with %i tracks", fESD, nTracks);
267         AliHLTUInt32_t addedSize = AliHLTTRDUtils::AddESDToOutput(fESD, outputPtr+offset);
268         totalSize += addedSize;
269           
270         // Fill block 
271         AliHLTComponentBlockData bd;
272         FillBlockData( bd );
273         //bd.fPtr = outputPtr;
274         bd.fOffset = offset;
275         bd.fSize = addedSize;
276         bd.fSpecification = block.fSpecification;
277         bd.fDataType = kAliHLTDataTypeTrack | kAliHLTDataOriginTRD;
278         outputBlocks.push_back( bd );
279         HLTDebug("BD ptr 0x%x, offset %i, size %i, datav1Type %s, spec 0x%x ", bd.fPtr, bd.fOffset, bd.fSize, DataType2Text(bd.fDataType).c_str(), bd.fSpecification);
280         offset = totalSize;
281
282         if (fOutputV1Tracks && trdTracks){
283           HLTDebug("We have an output array: pointer to trdTracks = 0x%x, nbEntries = %i", trdTracks, trdTracks->GetEntriesFast());
284           
285           addedSize = AliHLTTRDUtils::AddTracksToOutput(trdTracks, outputPtr+offset, fNtimeBins);
286           totalSize += addedSize;
287           
288           // Fill block 
289           FillBlockData( bd );
290           //bd.fPtr = outputPtr;
291           bd.fOffset = offset;
292           bd.fSize = addedSize;
293           bd.fSpecification = block.fSpecification;
294           bd.fDataType = AliHLTTRDDefinitions::fgkTRDSATracksDataType;
295           outputBlocks.push_back( bd );
296           HLTDebug("BD ptr 0x%x, offset %i, size %i, dataType %s, spec 0x%x ", bd.fPtr, bd.fOffset, bd.fSize, DataType2Text(bd.fDataType).c_str(), bd.fSpecification);
297           offset = totalSize;
298         }
299       }
300       
301       HLTDebug("totalSize: %i", totalSize);
302       
303 //       if ( totalSize > allocSize )
304 //      {
305 //        HLTError("Too much data; Data written over allowed buffer. Amount written: %lu, allowed amount: %lu.",
306 //        totalSize, size );
307 //        return EMSGSIZE;
308 //      }
309
310       //here we are deleting clusters (but not the TClonesArray itself)
311       fTracker->UnloadClusters();
312       AliTRDReconstructor::SetClusters(0x0);
313       fClusterArray->Delete();
314       
315     }
316       
317   size = totalSize;
318   HLTDebug("Event is done. size written to the output is %i", size);
319   return 0;
320 }
321
322 int AliHLTTRDTrackerV1Component::Configure(const char* arguments){
323   int iResult=0;
324   if (!arguments) return iResult;
325   
326   TString allArgs=arguments;
327   TString argument;
328   int bMissingParam=0;
329
330   TObjArray* pTokens=allArgs.Tokenize(" ");
331   if (pTokens) {
332     for (int i=0; i<pTokens->GetEntries() && iResult>=0; i++) {
333       argument=((TObjString*)pTokens->At(i))->GetString();
334       if (argument.IsNull()) continue;
335       
336       if (argument.CompareTo("output_percentage")==0) {
337         if ((bMissingParam=(++i>=pTokens->GetEntries()))) break;
338         HLTInfo("Setting output percentage to: %s", ((TObjString*)pTokens->At(i))->GetString().Data());
339         fOutputPercentage=((TObjString*)pTokens->At(i))->GetString().Atoi();
340         continue;
341       } 
342       else if (argument.CompareTo("-solenoidBz")==0) {
343         if ((bMissingParam=(++i>=pTokens->GetEntries()))) break;
344         fieldStrength=((TObjString*)pTokens->At(i))->GetString().Atof();
345         HLTInfo("Setting Magnetic field to %.1f KGauss", fieldStrength);
346         continue;
347       } 
348       else if (argument.CompareTo("-NTimeBins")==0) {
349         if ((bMissingParam=(++i>=pTokens->GetEntries()))) break;
350         HLTInfo("Option depreceated");
351         continue;
352       } 
353       else if (argument.CompareTo("-geometry")==0) {
354         if ((bMissingParam=(++i>=pTokens->GetEntries()))) break;
355         HLTInfo("Setting geometry to: %s", ((TObjString*)pTokens->At(i))->GetString().Data());
356         fgeometryFileName=((TObjString*)pTokens->At(i))->GetString();
357         continue;
358       } 
359       else if (argument.CompareTo("-lowflux")==0) {
360         fRecoParamType = 0;
361         HLTInfo("Low flux reconstruction selected");
362         continue;
363       }
364       else if (argument.CompareTo("-highflux")==0) {
365         fRecoParamType = 1;
366         HLTInfo("High flux reconstruction selected");
367         continue;
368       }
369       else if (argument.CompareTo("-cosmics")==0) {
370         fRecoParamType = 2;
371         HLTInfo("Cosmics reconstruction selected");
372         continue;
373       }
374       else if (argument.CompareTo("-magnetic_field_ON")==0) {
375         fMagneticField = 1;
376         HLTInfo("Reconstructon with magnetic field");
377         continue;
378       }
379       else if (argument.CompareTo("-magnetic_field_OFF")==0) {
380         fMagneticField = 0;
381         HLTInfo("Reconstructon without magnetic field");
382         continue;
383       }
384       else if (argument.CompareTo("-slowTracking")==0) {
385         fSlowTracking = kTRUE;
386         HLTInfo("Using slow tracking");
387         continue;
388       }
389       else if (argument.CompareTo("-outputV1Tracks")==0) {
390         if ((bMissingParam=(++i>=pTokens->GetEntries()))) break;
391         TString toCompareTo=((TObjString*)pTokens->At(i))->GetString();
392         if (toCompareTo.CompareTo("yes")==0){
393           HLTInfo("Setting OutputV1Tracks to: %s", toCompareTo.Data());
394           fOutputV1Tracks=kTRUE;
395         }
396         else if (toCompareTo.CompareTo("no")==0){
397           HLTInfo("Setting OutputV1Tracks to: %s", toCompareTo.Data());
398           fOutputV1Tracks=kFALSE;
399         }
400         else {
401           HLTError("unknown argument for OutputV1Tracks: %s", toCompareTo.Data());
402           iResult=-EINVAL;
403           break;
404         }
405         continue;
406       } 
407       else if (argument.CompareTo("-PIDmethod")==0) {
408         if ((bMissingParam=(++i>=pTokens->GetEntries()))) break;
409         TString toCompareTo=((TObjString*)pTokens->At(i))->GetString();
410         if (toCompareTo.CompareTo("LH")==0){
411           HLTInfo("Setting PID method to: %s", toCompareTo.Data());
412           fPIDmethod=0;
413         }
414         else if (toCompareTo.CompareTo("NN")==0){
415           HLTInfo("Setting PID method to: %s", toCompareTo.Data());
416           fPIDmethod=1;
417         }
418         else if (toCompareTo.CompareTo("TM")==0){
419           HLTInfo("Setting PID method to: %s", toCompareTo.Data());
420           fPIDmethod=2;
421         }
422         else {
423           HLTError("unknown argument for PID method: %s", toCompareTo.Data());
424           iResult=-EINVAL;
425           break;
426         }
427         continue;
428       } 
429       
430       else {
431         HLTError("unknown argument: %s", argument.Data());
432         iResult=-EINVAL;
433         break;
434       }
435     }
436     delete pTokens;
437   }
438   if (bMissingParam) {
439     HLTError("missing parameter for argument %s", argument.Data());
440     iResult=-EINVAL;
441   }
442   if(iResult>=0){
443     iResult=SetParams();
444   }
445   return iResult;
446 }
447
448 int AliHLTTRDTrackerV1Component::SetParams()
449 {
450   Int_t iResult=0;
451   if(!AliCDBManager::Instance()->IsDefaultStorageSet()){
452     HLTError("DefaultStorage is not set in CDBManager");
453     return -EINVAL;
454   }
455   if(AliCDBManager::Instance()->GetRun()<0){
456     HLTError("Run Number is not set in CDBManager");
457     return -EINVAL;
458   }
459   HLTInfo("CDB default storage: %s; RunNo: %i", (AliCDBManager::Instance()->GetDefaultStorage()->GetBaseFolder()).Data(), AliCDBManager::Instance()->GetRun());
460
461   if(!AliGeomManager::GetGeometry()){
462     if(fgeometryFileName.CompareTo("")==0 || !TFile::Open(fgeometryFileName.Data())){
463       HLTInfo("Loading standard geometry file");
464       AliGeomManager::LoadGeometry();
465     }else{
466       HLTWarning("Loading NON-standard geometry file");
467       AliGeomManager::LoadGeometry(fgeometryFileName.Data());
468     }
469     if(!AliGeomManager::GetGeometry()){
470       HLTError("Could not load geometry");
471       return -EINVAL;
472     }
473   }
474   else{
475     HLTInfo("Geometry Already Loaded!");
476   }
477   
478   if (fRecoParamType == 0)
479     {
480       HLTDebug("Low flux params init.");
481       fRecoParam = AliTRDrecoParam::GetLowFluxParam();
482     }
483
484   if (fRecoParamType == 1)
485     {
486       HLTDebug("High flux params init.");
487       fRecoParam = AliTRDrecoParam::GetHighFluxParam();
488     }
489   
490   if (fRecoParamType == 2)
491     {
492       HLTDebug("Cosmic Test params init.");
493       fRecoParam = AliTRDrecoParam::GetCosmicTestParam();
494     }
495
496   if (fRecoParam == 0)
497     {
498       HLTError("No reco params initialized. Sniffing big trouble!");
499       return -EINVAL;
500     }
501
502   // backward compatibility to AliTRDrecoParam < r34995
503 # ifndef HAVE_NOT_ALITRDRECOPARAM_r34995
504 #   define AliTRDRecoParamSetPIDNeuralNetwork(b) fRecoParam->SetPIDNeuralNetwork(b)
505 # else
506 #   define AliTRDRecoParamSetPIDNeuralNetwork(b) fRecoParam->SetPIDNeuralNetwork()
507 # endif
508
509   switch(fPIDmethod){
510   case 0: AliTRDRecoParamSetPIDNeuralNetwork(kFALSE); break;
511   case 1: AliTRDRecoParamSetPIDNeuralNetwork(kTRUE); break;
512   case 2: AliTRDRecoParamSetPIDNeuralNetwork(kFALSE); break;
513   }
514
515   fRecoParam->SetStreamLevel(AliTRDrecoParam::kTracker, 0);
516   fReconstructor->SetRecoParam(fRecoParam);
517
518   TString recoOptions="sa,!cw";
519   
520   if(!fSlowTracking)
521     recoOptions += ",hlt";
522
523   HLTDebug("Reconstructor options are: %s",recoOptions.Data());
524   fReconstructor->SetOption(recoOptions.Data());
525
526   if (fMagneticField >= 0)
527     {
528       HLTWarning("Setting magnetic field by hand!");
529     }
530   if (!TGeoGlobalMagField::Instance()->IsLocked()) {
531     AliMagF* field;
532     if (fMagneticField == 0){
533       // magnetic field OFF
534       field = new AliMagF("Maps","Maps",0.,0.,AliMagF::k5kGUniform);
535       TGeoGlobalMagField::Instance()->SetField(field);
536       HLTDebug("Magnetic field is OFF.");
537     }else{
538       // magnetic field ON
539       field = new AliMagF("Maps","Maps",-1.,-1.,AliMagF::k5kG);
540       TGeoGlobalMagField::Instance()->SetField(field);
541       HLTDebug("Magnetic field is ON.");
542       if( fMagneticField < 0 )
543         iResult=ReconfigureField();
544     }
545   }else{
546     HLTError("Magnetic field is already set and locked, cannot redefine it." );
547   }
548   return iResult;
549 }
550
551 int AliHLTTRDTrackerV1Component::ReconfigureField()
552 {
553   int iResult=0;
554   if(fieldStrength<-100){
555     const char* pathBField=kAliHLTCDBSolenoidBz;
556
557     if (pathBField) {
558       HLTInfo("reconfigure B-Field from entry %s", pathBField);
559       AliCDBEntry *pEntry = AliCDBManager::Instance()->Get(pathBField/*,GetRunNo()*/);
560       if (pEntry) {
561         TObjString* pString=dynamic_cast<TObjString*>(pEntry->GetObject());
562         if (pString) {
563           HLTInfo("received configuration object string: \'%s\'", pString->GetString().Data());
564           TObjArray* pTokens=pString->GetString().Tokenize(" ");
565           TString argument;
566           int bMissingParam=0;
567           if (pTokens) {
568             for (int i=0; i<pTokens->GetEntries() && iResult>=0; i++) {
569               argument=((TObjString*)pTokens->At(i))->GetString();
570               if (argument.IsNull()) continue;
571       
572               if (argument.CompareTo("-solenoidBz")==0) {
573                 if ((bMissingParam=(++i>=pTokens->GetEntries()))) break;
574                 HLTDebug("Magnetic field in CDB: %s", ((TObjString*)pTokens->At(i))->GetString().Data());
575                 fieldStrength=((TObjString*)pTokens->At(i))->GetString().Atof();
576                 continue;
577               } else {
578                 HLTError("unknown argument %s", argument.Data());
579                 iResult=-EINVAL;
580                 break;
581               }
582             }
583             delete pTokens;
584           }
585         } else {
586           HLTError("configuration object \"%s\" has wrong type, required TObjString", pathBField);
587         }
588       } else {
589         HLTError("cannot fetch object \"%s\" from CDB", pathBField);
590       }
591     }
592   }
593
594   if(fieldStrength>=-100){
595     AliMagF* field = (AliMagF *) TGeoGlobalMagField::Instance()->GetField();
596     HLTDebug("Magnetic field before change: %f KGauss", field->SolenoidField());
597     field->SetFactorSol(1);
598     Double_t initialFieldStrengh=field->SolenoidField();
599     field->SetFactorSol(fieldStrength/initialFieldStrengh);
600     field->SetFactorDip((fieldStrength/initialFieldStrengh>=0) ? 1 : -1);
601     HLTDebug("Magnetic field was changed to %f KGauss.", field->SolenoidField());
602   }
603   return iResult;
604 }
605
606 int AliHLTTRDTrackerV1Component::Reconfigure(const char* cdbEntry, const char* chainId)
607 {
608   // see header file for class documentation
609
610   int iResult=0;
611   const char* path="HLT/ConfigTRD/TrackerV1Component";
612   const char* defaultNotify="";
613   if (cdbEntry) {
614     path=cdbEntry;
615     defaultNotify=" (default)";
616   }
617   if (path) {
618     HLTInfo("reconfigure from entry %s%s, chain id %s", path, defaultNotify,(chainId!=NULL && chainId[0]!=0)?chainId:"<none>");
619     AliCDBEntry *pEntry = AliCDBManager::Instance()->Get(path/*,GetRunNo()*/);
620     if (pEntry) {
621       TObjString* pString=dynamic_cast<TObjString*>(pEntry->GetObject());
622       if (pString) {
623         HLTInfo("received configuration object string: \'%s\'", pString->GetString().Data());
624         iResult=Configure(pString->GetString().Data());
625       } else {
626         HLTError("configuration object \"%s\" has wrong type, required TObjString", path);
627       }
628     } else {
629       HLTError("cannot fetch object \"%s\" from CDB", path);
630     }
631   }
632
633   const char* pathBField=kAliHLTCDBSolenoidBz;
634
635   if (pathBField) {
636     HLTInfo("reconfigure B-Field from entry %s, chain id %s", pathBField,(chainId!=NULL && chainId[0]!=0)?chainId:"<none>");
637     AliCDBEntry *pEntry = AliCDBManager::Instance()->Get(pathBField/*,GetRunNo()*/);
638     if (pEntry) {
639       TObjString* pString=dynamic_cast<TObjString*>(pEntry->GetObject());
640       if (pString) {
641         HLTInfo("received configuration object string: \'%s\'", pString->GetString().Data());
642         iResult=Configure(pString->GetString().Data());
643       } else {
644         HLTError("configuration object \"%s\" has wrong type, required TObjString", pathBField);
645       }
646     } else {
647       HLTError("cannot fetch object \"%s\" from CDB", pathBField);
648     }
649   }
650   
651   return iResult;
652
653 }
654
655 int AliHLTTRDTrackerV1Component::ReadPreprocessorValues(const char* modules)
656 {
657   // see header file for class documentation
658   
659   int iResult = 0;
660   TString str(modules);
661   if(str.Contains("HLT") || str.Contains("TRD") || str.Contains("GRP")){
662   
663     const char* pathBField=kAliHLTCDBSolenoidBz;
664     if (pathBField) {
665
666       HLTInfo("reconfigure B-Field from entry %s, modules %s", pathBField,(modules!=NULL && modules[0]!=0)?modules:"<none>");
667       AliCDBEntry *pEntry = AliCDBManager::Instance()->Get(pathBField/*,GetRunNo()*/);
668       
669       // AliCDBPath path(pathBField);
670       
671       // AliCDBStorage *stor = AliCDBManager::Instance()->GetDefaultStorage();
672       // Int_t version    = stor->GetLatestVersion(pathBField, GetRunNo());
673       // Int_t subVersion = stor->GetLatestSubVersion(pathBField, GetRunNo(), version);
674       // AliCDBEntry *pEntry = stor->Get(path,GetRunNo(), version, subVersion);
675       
676       // HLTInfo("RunNo %d, Version %d, subversion %d", GetRunNo(), version, subVersion);
677       
678       if (pEntry) {
679         TObjString* pString=dynamic_cast<TObjString*>(pEntry->GetObject());
680         if (pString) {
681           HLTInfo("received configuration object string: \'%s\'", pString->GetString().Data());
682           iResult=Configure(pString->GetString().Data());
683         } else {
684           HLTError("configuration object \"%s\" has wrong type, required TObjString", pathBField);
685         }
686       } else {
687         HLTError("cannot fetch object \"%s\" from CDB", pathBField);
688       }
689     }
690   }  
691   return iResult;
692 }