]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
bug fix https://savannah.cern.ch/bugs/?79511
authorsgorbuno <sgorbuno@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 17 Mar 2011 16:15:04 +0000 (16:15 +0000)
committersgorbuno <sgorbuno@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 17 Mar 2011 16:15:04 +0000 (16:15 +0000)
HLT/ITS/AliHLTITSClusterFinderComponent.cxx

index 1b196e6a2f9e046203c85f74fd7337a8e6dd1cd3..4b876df657a9864dc017bb22812dce758db5c10e 100644 (file)
@@ -664,7 +664,25 @@ int AliHLTITSClusterFinderComponent::Reconfigure(const char* cdbEntry, const cha
   // see header file for class documentation
   int iResult=0;
   
-  const char* path="HLT/ConfigITS/ClusterFinderComponent";
+  const char* path="";
+
+  switch(fModeSwitch){
+  case kClusterFinderSPD:
+    path = "HLT/ConfigITS/ITSClusterFinderSPD";
+    break;
+  case kClusterFinderSDD:       
+    path = "HLT/ConfigITS/ITSClusterFinderSDD";
+    break;
+  case kClusterFinderSSD:
+    path = "HLT/ConfigITS/ITSClusterFinderSSD";
+    break;
+  case kClusterFinderDigits:
+    path = "";
+    break;
+  default:
+    HLTFatal("unknown cluster finder");
+  }
+
   const char* defaultNotify="";
   if (cdbEntry) {
     path=cdbEntry;