X-Git-Url: http://git.uio.no/git/?p=u%2Fmrichter%2FAliRoot.git;a=blobdiff_plain;f=HLT%2Fexa%2Fpublish-rawreader-data.C;h=c562b64e348d9e5b9934de4874087692a9524f7c;hp=2c9fab31a88ed826d0cb2b62c887d562f088f8d5;hb=36799128067c864cee3be425e3ddb942c27a5975;hpb=5aebebf7016af142c5a0ae67db37b3559489c571 diff --git a/HLT/exa/publish-rawreader-data.C b/HLT/exa/publish-rawreader-data.C index 2c9fab31a88..c562b64e348 100644 --- a/HLT/exa/publish-rawreader-data.C +++ b/HLT/exa/publish-rawreader-data.C @@ -47,8 +47,7 @@ void publish_rawreader_data(const char* input, int iMinDDLno, int iMaxDDLno) ///////////////////////////////////////////////////////////////////////// // // setup of the HLT system - gSystem->Load("libHLTrec"); - AliHLTSystem* pHLT=AliHLTReconstructorBase::GetInstance(); + AliHLTSystem* pHLT=AliHLTPluginBase::GetInstance(); if (!pHLT) { cerr << "fatal error: can not get HLT instance" << endl; } @@ -60,13 +59,13 @@ void publish_rawreader_data(const char* input, int iMinDDLno, int iMaxDDLno) TString writerInput; TString arg; - arg.Form("-minid %d -maxid %d -skipempty", iMinDDLno, iMaxDDLno); + arg.Form("-minid %d -maxid %d -skipempty -verbose", iMinDDLno, iMaxDDLno); AliHLTConfiguration pubconf("publisher", "AliRawReaderPublisher", NULL , arg.Data()); if (!writerInput.IsNull()) writerInput+=" "; writerInput+="publisher"; // the writer configuration - arg.Form("-specfmt=_%%d -subdir=raw%%d -blocknofmt= -idfmt= -datafile %s", baseName); + arg.Form("-specfmt=_%%d -subdir=out%%d -blocknofmt= -idfmt= -datafile %s", baseName); AliHLTConfiguration fwconf("sink1", "FileWriter" , writerInput.Data(), arg.Data()); @@ -78,8 +77,11 @@ void publish_rawreader_data(const char* input, int iMinDDLno, int iMaxDDLno) rec.SetRunReconstruction("HLT"); rec.SetRunTracking(""); rec.SetFillESD("HLT"); + rec.SetFillTriggerESD(kFALSE); + rec.SetRunQA(":"); rec.SetRunVertexFinder(kFALSE); rec.SetLoadAlignFromCDB(0); + rec.SetFillTriggerESD(kFALSE); rec.Run(); }