Skip to content

Commit 76f5dc4

Browse files
aferrero2707shahor02
authored andcommitted
[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 02b6dc2 commit 76f5dc4

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
@@ -188,6 +188,8 @@ AlgorithmSpec AODReaderHelpers::aodSpawnerCallback(std::vector<InputSpec>& reque
188188
} else if (version == 1U) {
189189
outputs.adopt(Output{origin, description, version}, make_spawn<o2::aod::Hash<"EXMFTTRACK/1"_h>>(input, pc));
190190
}
191+
} else if (description == header::DataDescription{"EXMFTTRACKCOV"}) {
192+
outputs.adopt(Output{origin, description, version}, make_spawn<o2::aod::Hash<"EXMFTTRACKCOV/0"_h>>(input, pc));
191193
} else if (description == header::DataDescription{"EXFWDTRACK"}) {
192194
outputs.adopt(Output{origin, description, version}, make_spawn<o2::aod::Hash<"EXFWDTRACK/0"_h>>(input, pc));
193195
} else if (description == header::DataDescription{"EXFWDTRACKCOV"}) {

0 commit comments

Comments
 (0)