From a3479b55ec5c558c46a380709b1c50106ec3646b Mon Sep 17 00:00:00 2001 From: sgorbuno Date: Thu, 17 Mar 2011 16:15:04 +0000 Subject: [PATCH] bug fix https://savannah.cern.ch/bugs/?79511 --- HLT/ITS/AliHLTITSClusterFinderComponent.cxx | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/HLT/ITS/AliHLTITSClusterFinderComponent.cxx b/HLT/ITS/AliHLTITSClusterFinderComponent.cxx index 1b196e6a2f9..4b876df657a 100644 --- a/HLT/ITS/AliHLTITSClusterFinderComponent.cxx +++ b/HLT/ITS/AliHLTITSClusterFinderComponent.cxx @@ -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; -- 2.39.3