Skip to content

Commit

Permalink
Revert "Allow setting options like loglevel for HLT in the side chain"
Browse files Browse the repository at this point in the history
This reverts commit abb2a64eb726a61e9d7ae1fc3768dd788b28b176.
  • Loading branch information
mkrzewic authored and dberzano committed May 25, 2016
1 parent 84cdf44 commit c3d8a09
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions HLT/BASE/util/ZMQHLTchain.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ TString fCDBpath = "local://$ALICE_ROOT/OCDB";
string fECSstring;
string fINFOstring;
string fConfigMacro;
string fHLToptions;

bool fRequestGRP = false;
bool fUsePromptCDBcache = false;
Expand All @@ -89,7 +88,6 @@ const char* fUSAGE =
" -requestGRP : request an on-the-fly GRP from upstream\n"
" -cdbPath : the path to the default CDB storage\n"
" -localGRPcache : location of prompt GRP storage (local://OCDB)\n"
" -HLToptions : options passed to AliHLTSystem\n"
" -config : ROOT macro defining the HLT chain.\n"
" a \"source\" component is provided, use as first parent\n"
" a \"sink\" component needs to be defined (last in chain)\n"
Expand Down Expand Up @@ -276,8 +274,9 @@ int Run()
fParticipatingDetectors, detectorList.Data());
}

string opt = "ECS="+fECSstring + " " + fHLToptions;
system->ScanOptions(opt.c_str());
TString opt = "ECS=";
opt += fECSstring;
system->ScanOptions(opt.Data());

ecsRunNumber = atoi(ecsParamMap["RUN_NUMBER"].c_str());
if (fVerbose) printf("ECS string RUN_NUMBER: %i\n", ecsRunNumber);
Expand Down

0 comments on commit c3d8a09

Please sign in to comment.