Skip to content

Commit b40efa1

Browse files
f3schsawenzel
authored andcommitted
GLO: fix missing wfx option
Signed-off-by: Felix Schlepper <felix.schlepper@cern.ch>
1 parent 5e59fcf commit b40efa1

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

Detectors/GlobalTrackingWorkflow/helpers/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ o2_add_executable(track-cluster-reader
4141
COMPONENT_NAME global
4242
TARGETVARNAME targetName
4343
SOURCES src/GlobalTrackClusterReader.cxx
44-
PUBLIC_LINK_LIBRARIES O2::GlobalTrackingWorkflowHelpers O2::DetectorsRaw)
44+
PUBLIC_LINK_LIBRARIES O2::GlobalTrackingWorkflowHelpers O2::DetectorsRaw O2::DataFormatsITSMFT)

Detectors/GlobalTrackingWorkflow/helpers/src/GlobalTrackClusterReader.cxx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111

1212
#include "GlobalTrackingWorkflowHelpers/InputHelper.h"
1313
#include "ReconstructionDataFormats/GlobalTrackID.h"
14+
#include "DataFormatsITSMFT/DPLAlpideParamInitializer.h"
1415
#include "CommonUtils/ConfigurableParam.h"
1516
#include "DetectorsRaw/HBFUtilsInitializer.h"
1617
#include "Framework/CallbacksPolicy.h"
@@ -37,6 +38,7 @@ void customize(std::vector<ConfigParamSpec>& workflowOptions)
3738
{"ir-frames-its", VariantType::Bool, false, {"read ITS IR frames"}},
3839
{"disable-root-input", o2::framework::VariantType::Bool, false, {"disable reading root files, essentially making this workflow void, but needed for compatibility"}},
3940
{"configKeyValues", VariantType::String, "", {"Semicolon separated key=value strings ..."}}};
41+
o2::itsmft::DPLAlpideParamInitializer::addConfigOption(options);
4042
o2::raw::HBFUtilsInitializer::addConfigOption(options);
4143
std::swap(workflowOptions, options);
4244
}

0 commit comments

Comments
 (0)