Skip to content

Commit 7e682f9

Browse files
committed
[MFT] read track covariances from AO2Ds
The "EXMFTTRACKCOV" table needs to be added to the aodSpawnerCallback() in order to load the MFT tracks covariances from the AO2Ds.
1 parent cadc5fa commit 7e682f9

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Framework/Core/src/AODReaderHelpers.cxx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,8 @@ AlgorithmSpec AODReaderHelpers::aodSpawnerCallback(std::vector<InputSpec>& reque
192192
} else if (version == 1U) {
193193
outputs.adopt(Output{origin, description, version}, make_spawn<o2::aod::Hash<"EXMFTTRACK/1"_h>>(input, pc));
194194
}
195+
} else if (description == header::DataDescription{"EXMFTTRACKCOV"}) {
196+
outputs.adopt(Output{origin, description, version}, make_spawn<o2::aod::Hash<"EXMFTTRACKCOV/0"_h>>(input, pc));
195197
} else if (description == header::DataDescription{"EXFWDTRACK"}) {
196198
outputs.adopt(Output{origin, description, version}, make_spawn<o2::aod::Hash<"EXFWDTRACK/0"_h>>(input, pc));
197199
} else if (description == header::DataDescription{"EXFWDTRACKCOV"}) {

0 commit comments

Comments
 (0)