]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/TRD/AliHLTTRDTrackerV1Component.cxx
- adopt to offline changes in the recoParam (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. Changing 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("Setting number of time bins to: %s", ((TObjString*)pTokens->At(i))->GetString().Data());
351         fNtimeBins=((TObjString*)pTokens->At(i))->GetString().Atoi();
352         continue;
353       } 
354       else if (argument.CompareTo("-geometry")==0) {
355         if ((bMissingParam=(++i>=pTokens->GetEntries()))) break;
356         HLTInfo("Setting geometry to: %s", ((TObjString*)pTokens->At(i))->GetString().Data());
357         fgeometryFileName=((TObjString*)pTokens->At(i))->GetString();
358         continue;
359       } 
360       else if (argument.CompareTo("-lowflux")==0) {
361         fRecoParamType = 0;
362         HLTInfo("Low flux reconstruction selected");
363         continue;
364       }
365       else if (argument.CompareTo("-highflux")==0) {
366         fRecoParamType = 1;
367         HLTInfo("High flux reconstruction selected");
368         continue;
369       }
370       else if (argument.CompareTo("-cosmics")==0) {
371         fRecoParamType = 2;
372         HLTInfo("Cosmics reconstruction selected");
373         continue;
374       }
375       else if (argument.CompareTo("-magnetic_field_ON")==0) {
376         fMagneticField = 1;
377         HLTInfo("Reconstructon with magnetic field");
378         continue;
379       }
380       else if (argument.CompareTo("-magnetic_field_OFF")==0) {
381         fMagneticField = 0;
382         HLTInfo("Reconstructon without magnetic field");
383         continue;
384       }
385       else if (argument.CompareTo("-slowTracking")==0) {
386         fSlowTracking = kTRUE;
387         HLTInfo("Using slow tracking");
388         continue;
389       }
390       else if (argument.CompareTo("-outputV1Tracks")==0) {
391         if ((bMissingParam=(++i>=pTokens->GetEntries()))) break;
392         TString toCompareTo=((TObjString*)pTokens->At(i))->GetString();
393         if (toCompareTo.CompareTo("yes")==0){
394           HLTInfo("Setting OutputV1Tracks to: %s", toCompareTo.Data());
395           fOutputV1Tracks=kTRUE;
396         }
397         else if (toCompareTo.CompareTo("no")==0){
398           HLTInfo("Setting OutputV1Tracks to: %s", toCompareTo.Data());
399           fOutputV1Tracks=kFALSE;
400         }
401         else {
402           HLTError("unknown argument for OutputV1Tracks: %s", toCompareTo.Data());
403           iResult=-EINVAL;
404           break;
405         }
406         continue;
407       } 
408       else if (argument.CompareTo("-PIDmethod")==0) {
409         if ((bMissingParam=(++i>=pTokens->GetEntries()))) break;
410         TString toCompareTo=((TObjString*)pTokens->At(i))->GetString();
411         if (toCompareTo.CompareTo("LH")==0){
412           HLTInfo("Setting PID method to: %s", toCompareTo.Data());
413           fPIDmethod=0;
414         }
415         else if (toCompareTo.CompareTo("NN")==0){
416           HLTInfo("Setting PID method to: %s", toCompareTo.Data());
417           fPIDmethod=1;
418         }
419         else if (toCompareTo.CompareTo("TM")==0){
420           HLTInfo("Setting PID method to: %s", toCompareTo.Data());
421           fPIDmethod=2;
422         }
423         else {
424           HLTError("unknown argument for PID method: %s", toCompareTo.Data());
425           iResult=-EINVAL;
426           break;
427         }
428         continue;
429       } 
430       
431       else {
432         HLTError("unknown argument: %s", argument.Data());
433         iResult=-EINVAL;
434         break;
435       }
436     }
437     delete pTokens;
438   }
439   if (bMissingParam) {
440     HLTError("missing parameter for argument %s", argument.Data());
441     iResult=-EINVAL;
442   }
443   if(iResult>=0){
444     iResult=SetParams();
445   }
446   return iResult;
447 }
448
449 int AliHLTTRDTrackerV1Component::SetParams()
450 {
451   Int_t iResult=0;
452   if(!AliCDBManager::Instance()->IsDefaultStorageSet()){
453     HLTError("DefaultStorage is not set in CDBManager");
454     return -EINVAL;
455   }
456   if(AliCDBManager::Instance()->GetRun()<0){
457     HLTError("Run Number is not set in CDBManager");
458     return -EINVAL;
459   }
460   HLTInfo("CDB default storage: %s; RunNo: %i", (AliCDBManager::Instance()->GetDefaultStorage()->GetBaseFolder()).Data(), AliCDBManager::Instance()->GetRun());
461
462   if(!AliGeomManager::GetGeometry()){
463     if(fgeometryFileName.CompareTo("")==0 || !TFile::Open(fgeometryFileName.Data())){
464       HLTInfo("Loading standard geometry file");
465       AliGeomManager::LoadGeometry();
466     }else{
467       HLTWarning("Loading NON-standard geometry file");
468       AliGeomManager::LoadGeometry(fgeometryFileName.Data());
469     }
470     if(!AliGeomManager::GetGeometry()){
471       HLTError("Could not load geometry");
472       return -EINVAL;
473     }
474   }
475   else{
476     HLTInfo("Geometry Already Loaded!");
477   }
478
479   if (fNtimeBins <= 0)
480     {
481       HLTError("Sorry. Tracker needs number of time bins. At the moment you have to provide it with -NTimeBins <value>. The simulation always had 24 and the real data 30. Take your pick. Make sure the information is correct. Ask offline to implement how to propagate this information into clusters/cluster tree.");
482       return -EINVAL;
483     }
484   if (fNtimeBins < 24 || fNtimeBins > 30)
485     {
486       HLTWarning("The number of time bins seems to be strange = %d. But okay. Let's try it...", fNtimeBins);
487     }
488   if (fNtimeBins != 24)
489     {
490       HLTWarning("All PID methods eagerly await 24 time bins, so PID will NOT work!", fNtimeBins);
491     }
492   HLTDebug("Setting number of time bins of the tracker to: %i", fNtimeBins);
493   AliTRDtrackerV1::SetNTimeBins(fNtimeBins);
494   
495   if (fRecoParamType == 0)
496     {
497       HLTDebug("Low flux params init.");
498       fRecoParam = AliTRDrecoParam::GetLowFluxParam();
499     }
500
501   if (fRecoParamType == 1)
502     {
503       HLTDebug("High flux params init.");
504       fRecoParam = AliTRDrecoParam::GetHighFluxParam();
505     }
506   
507   if (fRecoParamType == 2)
508     {
509       HLTDebug("Cosmic Test params init.");
510       fRecoParam = AliTRDrecoParam::GetCosmicTestParam();
511     }
512
513   if (fRecoParam == 0)
514     {
515       HLTError("No reco params initialized. Sniffing big trouble!");
516       return -EINVAL;
517     }
518
519   switch(fPIDmethod){
520   case 0: fRecoParam->SetPIDNeuralNetwork(kFALSE); break;
521   case 1: fRecoParam->SetPIDNeuralNetwork(kTRUE); break;
522   case 2: fRecoParam->SetPIDNeuralNetwork(kFALSE); break;
523   }
524
525   fRecoParam->SetStreamLevel(AliTRDrecoParam::kTracker, 0);
526   fReconstructor->SetRecoParam(fRecoParam);
527
528   TString recoOptions="sa,!cw";
529   
530   if(!fSlowTracking)
531     recoOptions += ",hlt";
532
533   HLTDebug("Reconstructor options are: %s",recoOptions.Data());
534   fReconstructor->SetOption(recoOptions.Data());
535
536   if (fMagneticField >= 0)
537     {
538       HLTWarning("Setting magnetic field by hand!");
539     }
540   if (!TGeoGlobalMagField::Instance()->IsLocked()) {
541     AliMagF* field;
542     if (fMagneticField == 0){
543       // magnetic field OFF
544       field = new AliMagF("Maps","Maps",2,0.,0., 10.,AliMagF::k5kGUniform);
545       TGeoGlobalMagField::Instance()->SetField(field);
546       HLTDebug("Magnetic field is OFF.");
547     }else{
548       // magnetic field ON
549       field = new AliMagF("Maps","Maps",2,1.,1., 10.,AliMagF::k5kG);
550       TGeoGlobalMagField::Instance()->SetField(field);
551       HLTDebug("Magnetic field is ON.");
552       if( fMagneticField < 0 )
553         iResult=ReconfigureField();
554     }
555   }else{
556     HLTError("Magnetic field is already set and locked, cannot redefine it." );
557   }
558   return iResult;
559 }
560
561 int AliHLTTRDTrackerV1Component::ReconfigureField()
562 {
563   int iResult=0;
564   if(fieldStrength<-100){
565     const char* pathBField=kAliHLTCDBSolenoidBz;
566
567     if (pathBField) {
568       HLTInfo("reconfigure B-Field from entry %s", pathBField);
569       AliCDBEntry *pEntry = AliCDBManager::Instance()->Get(pathBField/*,GetRunNo()*/);
570       if (pEntry) {
571         TObjString* pString=dynamic_cast<TObjString*>(pEntry->GetObject());
572         if (pString) {
573           HLTInfo("received configuration object string: \'%s\'", pString->GetString().Data());
574           TObjArray* pTokens=pString->GetString().Tokenize(" ");
575           TString argument;
576           int bMissingParam=0;
577           if (pTokens) {
578             for (int i=0; i<pTokens->GetEntries() && iResult>=0; i++) {
579               argument=((TObjString*)pTokens->At(i))->GetString();
580               if (argument.IsNull()) continue;
581       
582               if (argument.CompareTo("-solenoidBz")==0) {
583                 if ((bMissingParam=(++i>=pTokens->GetEntries()))) break;
584                 HLTDebug("Magnetic field in CDB: %s", ((TObjString*)pTokens->At(i))->GetString().Data());
585                 fieldStrength=((TObjString*)pTokens->At(i))->GetString().Atof();
586                 continue;
587               } else {
588                 HLTError("unknown argument %s", argument.Data());
589                 iResult=-EINVAL;
590                 break;
591               }
592             }
593             delete pTokens;
594           }
595         } else {
596           HLTError("configuration object \"%s\" has wrong type, required TObjString", pathBField);
597         }
598       } else {
599         HLTError("cannot fetch object \"%s\" from CDB", pathBField);
600       }
601     }
602   }
603
604   if(fieldStrength>=-100){
605     AliMagF* field = (AliMagF *) TGeoGlobalMagField::Instance()->GetField();
606     HLTDebug("Magnetic field before change: %f KGauss", field->SolenoidField());
607     field->SetFactorSol(1);
608     Double_t initialFieldStrengh=field->SolenoidField();
609     field->SetFactorSol(fieldStrength/initialFieldStrengh);
610     HLTDebug("Magnetic field was changed to %f KGauss.", field->SolenoidField());
611   }
612   return iResult;
613 }
614
615 int AliHLTTRDTrackerV1Component::Reconfigure(const char* cdbEntry, const char* chainId)
616 {
617   // see header file for class documentation
618
619   int iResult=0;
620   const char* path="HLT/ConfigTRD/TrackerV1Component";
621   const char* defaultNotify="";
622   if (cdbEntry) {
623     path=cdbEntry;
624     defaultNotify=" (default)";
625   }
626   if (path) {
627     HLTInfo("reconfigure from entry %s%s, chain id %s", path, defaultNotify,(chainId!=NULL && chainId[0]!=0)?chainId:"<none>");
628     AliCDBEntry *pEntry = AliCDBManager::Instance()->Get(path/*,GetRunNo()*/);
629     if (pEntry) {
630       TObjString* pString=dynamic_cast<TObjString*>(pEntry->GetObject());
631       if (pString) {
632         HLTInfo("received configuration object string: \'%s\'", pString->GetString().Data());
633         iResult=Configure(pString->GetString().Data());
634       } else {
635         HLTError("configuration object \"%s\" has wrong type, required TObjString", path);
636       }
637     } else {
638       HLTError("cannot fetch object \"%s\" from CDB", path);
639     }
640   }
641
642   const char* pathBField=kAliHLTCDBSolenoidBz;
643
644   if (pathBField) {
645     HLTInfo("reconfigure B-Field from entry %s, chain id %s", pathBField,(chainId!=NULL && chainId[0]!=0)?chainId:"<none>");
646     AliCDBEntry *pEntry = AliCDBManager::Instance()->Get(pathBField/*,GetRunNo()*/);
647     if (pEntry) {
648       TObjString* pString=dynamic_cast<TObjString*>(pEntry->GetObject());
649       if (pString) {
650         HLTInfo("received configuration object string: \'%s\'", pString->GetString().Data());
651         iResult=Configure(pString->GetString().Data());
652       } else {
653         HLTError("configuration object \"%s\" has wrong type, required TObjString", pathBField);
654       }
655     } else {
656       HLTError("cannot fetch object \"%s\" from CDB", pathBField);
657     }
658   }
659   
660   return iResult;
661
662 }
663
664 int AliHLTTRDTrackerV1Component::ReadPreprocessorValues(const char* modules)
665 {
666   // see header file for class documentation
667   
668   int iResult = 0;
669   TString str(modules);
670   if(str.Contains("HLT") || str.Contains("TRD") || str.Contains("GRP")){
671   
672     const char* pathBField=kAliHLTCDBSolenoidBz;
673     if (pathBField) {
674
675       HLTInfo("reconfigure B-Field from entry %s, modules %s", pathBField,(modules!=NULL && modules[0]!=0)?modules:"<none>");
676       AliCDBEntry *pEntry = AliCDBManager::Instance()->Get(pathBField/*,GetRunNo()*/);
677       
678       // AliCDBPath path(pathBField);
679       
680       // AliCDBStorage *stor = AliCDBManager::Instance()->GetDefaultStorage();
681       // Int_t version    = stor->GetLatestVersion(pathBField, GetRunNo());
682       // Int_t subVersion = stor->GetLatestSubVersion(pathBField, GetRunNo(), version);
683       // AliCDBEntry *pEntry = stor->Get(path,GetRunNo(), version, subVersion);
684       
685       // HLTInfo("RunNo %d, Version %d, subversion %d", GetRunNo(), version, subVersion);
686       
687       if (pEntry) {
688         TObjString* pString=dynamic_cast<TObjString*>(pEntry->GetObject());
689         if (pString) {
690           HLTInfo("received configuration object string: \'%s\'", pString->GetString().Data());
691           iResult=Configure(pString->GetString().Data());
692         } else {
693           HLTError("configuration object \"%s\" has wrong type, required TObjString", pathBField);
694         }
695       } else {
696         HLTError("cannot fetch object \"%s\" from CDB", pathBField);
697       }
698     }
699   }  
700   return iResult;
701 }