Skip to content

Commit c6b792b

Browse files
committed
TRD add digittracklet reader
1 parent b9f14e3 commit c6b792b

2 files changed

Lines changed: 5 additions & 0 deletions

File tree

Detectors/TRD/workflow/io/CMakeLists.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@ o2_add_executable(digit-reader-workflow
3030
COMPONENT_NAME trd
3131
SOURCES src/digit-reader-workflow.cxx
3232
PUBLIC_LINK_LIBRARIES O2::TRDWorkflowIO)
33+
o2_add_executable(digittracklet-reader-workflow
34+
COMPONENT_NAME trd
35+
SOURCES src/digittracklet-reader-workflow.cxx
36+
PUBLIC_LINK_LIBRARIES O2::TRDWorkflowIO)
3337
o2_add_executable(track-reader
3438
COMPONENT_NAME trd
3539
SOURCES src/trd-track-reader-workflow.cxx

Detectors/TRD/workflow/io/src/digit-reader-workflow.cxx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ WorkflowSpec defineDataProcessing(ConfigContext const& configcontext)
5050
auto dataSubspec = configcontext.options().get<int>("digit-subspec");
5151
WorkflowSpec specs;
5252
specs.emplace_back(o2::trd::getTRDDigitReaderSpec(useMC, sendTriggerRecords, dataSubspec));
53+
specs.emplace_back(o2::trd::getTRDTrackletReaderSpec(useMC, sendTriggerRecords, dataSubspec));
5354
o2::raw::HBFUtilsInitializer hbfIni(configcontext, specs);
5455
return specs;
5556
}

0 commit comments

Comments
 (0)