diff --git a/Detectors/MUON/MID/Workflow/src/decoded-digits-writer-workflow.cxx b/Detectors/MUON/MID/Workflow/src/decoded-digits-writer-workflow.cxx index 1f62d8215a95f..e5ef41d8ecee5 100644 --- a/Detectors/MUON/MID/Workflow/src/decoded-digits-writer-workflow.cxx +++ b/Detectors/MUON/MID/Workflow/src/decoded-digits-writer-workflow.cxx @@ -52,8 +52,12 @@ WorkflowSpec defineDataProcessing(ConfigContext const& cfgc) outputFilename.c_str(), treeFilename.c_str(), -1, - MakeRootTreeWriterSpec::BranchDefinition>{InputSpec{"mid_data", o2::header::gDataOriginMID, "DATA"}, "MIDDigit"}, - MakeRootTreeWriterSpec::BranchDefinition>{InputSpec{"mid_data_rof", o2::header::gDataOriginMID, "DATAROF"}, "MIDROFRecords"})()); + MakeRootTreeWriterSpec::BranchDefinition>{InputSpec{"mid_data", o2::header::gDataOriginMID, "DATA", 0}, "MIDDigit"}, + MakeRootTreeWriterSpec::BranchDefinition>{InputSpec{"mid_data_1", o2::header::gDataOriginMID, "DATA", 1}, "MIDNoise"}, + MakeRootTreeWriterSpec::BranchDefinition>{InputSpec{"mid_data_2", o2::header::gDataOriginMID, "DATA", 2}, "MIDDead"}, + MakeRootTreeWriterSpec::BranchDefinition>{InputSpec{"mid_data_rof", o2::header::gDataOriginMID, "DATAROF", 0}, "MIDROFRecords"}, + MakeRootTreeWriterSpec::BranchDefinition>{InputSpec{"mid_data_rof_1", o2::header::gDataOriginMID, "DATAROF", 1}, "MIDROFRecordsNoise"}, + MakeRootTreeWriterSpec::BranchDefinition>{InputSpec{"mid_data_rof_2", o2::header::gDataOriginMID, "DATAROF", 2}, "MIDROFRecordsDead"})()); return specs; }