From 5090799b1d03ed89abdae695a4e81c7bd64e0de5 Mon Sep 17 00:00:00 2001 From: richterm Date: Sat, 14 Aug 2010 07:48:38 +0000 Subject: [PATCH] adding TPC dEdX component to the default configuration --- HLT/TPCLib/AliHLTTPCAgent.cxx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/HLT/TPCLib/AliHLTTPCAgent.cxx b/HLT/TPCLib/AliHLTTPCAgent.cxx index 0150a7fc696..03827e983ee 100644 --- a/HLT/TPCLib/AliHLTTPCAgent.cxx +++ b/HLT/TPCLib/AliHLTTPCAgent.cxx @@ -120,6 +120,7 @@ int AliHLTTPCAgent::CreateConfigurations(AliHLTConfigurationHandler* handler, int iMaxPart=5; TString mergerInput; TString sinkClusterInput; + TString dEdXInput; for (int slice=iMinSlice; slice<=iMaxSlice; slice++) { TString trackerInput; for (int part=iMinPart; part<=iMaxPart; part++) { @@ -157,6 +158,8 @@ int AliHLTTPCAgent::CreateConfigurations(AliHLTConfigurationHandler* handler, } if (trackerInput.Length()>0) trackerInput+=" "; trackerInput+=cf; + if (dEdXInput.Length()>0) dEdXInput+=" "; + dEdXInput+=cf; if (sinkClusterInput.Length()>0) sinkClusterInput+=" "; sinkClusterInput+=cf; } @@ -173,6 +176,11 @@ int AliHLTTPCAgent::CreateConfigurations(AliHLTConfigurationHandler* handler, // GlobalMerger component handler->CreateConfiguration("TPC-globalmerger","TPCCAGlobalMerger",mergerInput.Data(),""); + if (dEdXInput.Length()>0) dEdXInput+=" "; + dEdXInput+="TPC-globalmerger"; + + handler->CreateConfiguration("TPC-dEdx","TPCdEdx",dEdXInput.Data(),""); + // the esd converter configuration TString converterInput="TPC-globalmerger"; if (!rawReader && runloader) { -- 2.43.0