Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion GPU/Workflow/src/GPUWorkflowSpec.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -1193,7 +1193,7 @@ Inputs GPURecoWorkflowSpec::inputs()
inputs.emplace_back(InputSpec{"mclblin", ConcreteDataTypeMatcher{gDataOriginTPC, "DIGITSMCTR"}, Lifetime::Timeframe});
mPolicyData->emplace_back(o2::framework::InputSpec{"digitsmc", o2::framework::ConcreteDataTypeMatcher{"TPC", "DIGITSMCTR"}});
}
} else {
} else if (mSpecConfig.runTPCTracking) {
inputs.emplace_back(InputSpec{"mclblin", ConcreteDataTypeMatcher{gDataOriginTPC, "CLNATIVEMCLBL"}, Lifetime::Timeframe});
mPolicyData->emplace_back(o2::framework::InputSpec{"clustersmc", o2::framework::ConcreteDataTypeMatcher{"TPC", "CLNATIVEMCLBL"}});
}
Expand Down
8 changes: 1 addition & 7 deletions GPU/Workflow/src/gpu-reco-workflow.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -166,8 +166,8 @@ WorkflowSpec defineDataProcessing(ConfigContext const& cfgc)
cfg.lumiScaleMode = sclOpt.lumiMode;
cfg.enableMShape = sclOpt.enableMShapeCorrection;
cfg.enableCTPLumi = sclOpt.requestCTPLumi;
cfg.decompressTPC = isEnabled(inputTypes, ioType::CompClustCTF);
cfg.decompressTPCFromROOT = isEnabled(inputTypes, ioType::CompClustROOT);
cfg.decompressTPC = isEnabled(inputTypes, ioType::CompClustCTF) || cfg.decompressTPCFromROOT;
cfg.zsDecoder = isEnabled(inputTypes, ioType::ZSRaw);
cfg.zsOnTheFly = isEnabled(inputTypes, ioType::ZSRawOTF);
cfg.caClusterer = cfg.zsDecoder || cfg.zsOnTheFly || isEnabled(inputTypes, ioType::Digits);
Expand Down Expand Up @@ -220,12 +220,6 @@ WorkflowSpec defineDataProcessing(ConfigContext const& cfgc)
taskPrepare->options()});
}

if (!cfgc.options().get<bool>("ignore-dist-stf")) {
GlobalTrackID::mask_t srcTrk = GlobalTrackID::getSourcesMask("none");
GlobalTrackID::mask_t srcCl = GlobalTrackID::getSourcesMask("TPC");
o2::globaltracking::InputHelper::addInputSpecs(cfgc, specs, srcCl, srcTrk, srcTrk, doMC);
}

// configure dpl timer to inject correct firstTForbit: start from the 1st orbit of TF containing 1st sampled orbit
o2::raw::HBFUtilsInitializer hbfIni(cfgc, specs);

Expand Down