Skip to content

Commit 3154413

Browse files
authored
Merge 5c1a8d6 into sapling-pr-archive-ktf
2 parents 7183497 + 5c1a8d6 commit 3154413

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

Detectors/DCS/testWorkflow/src/dcs-config-proxy.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
using namespace o2::framework;
3535
using DetID = o2::detectors::DetID;
3636

37-
std::array<o2::header::DataOrigin, 1> exceptionsDetID{"GRP"};
37+
std::array<o2::header::DataOrigin, 2> exceptionsDetID{"GRP", "AGD"};
3838

3939
void sendAnswer(const std::string& what, const std::string& ack_chan, fair::mq::Device& device)
4040
{

Framework/Core/include/Framework/AnalysisDataModel.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1892,6 +1892,8 @@ DECLARE_EQUIVALENT_FOR_INDEX_NG("TRACK/0", "TRACKEXTRA/0");
18921892
DECLARE_EQUIVALENT_FOR_INDEX_NG("TRACK_IU/0", "TRACKEXTRA/0");
18931893
DECLARE_EQUIVALENT_FOR_INDEX_NG("TRACK/0", "TRACKEXTRA/1");
18941894
DECLARE_EQUIVALENT_FOR_INDEX_NG("TRACK_IU/0", "TRACKEXTRA/1");
1895+
DECLARE_EQUIVALENT_FOR_INDEX_NG("TRACK/0", "TRACKEXTRA/2");
1896+
DECLARE_EQUIVALENT_FOR_INDEX_NG("TRACK_IU/0", "TRACKEXTRA/2");
18951897
DECLARE_EQUIVALENT_FOR_INDEX_NG("TRACKEXTRA/0", "TRACKEXTRA/1");
18961898
DECLARE_EQUIVALENT_FOR_INDEX_NG("TRACKEXTRA/0", "TRACKEXTRA/2");
18971899
DECLARE_EQUIVALENT_FOR_INDEX_NG("TRACKEXTRA/1", "TRACKEXTRA/2");

Framework/Core/test/o2AO2DToAO3D.cxx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,13 @@ int main(int argc, char** argv)
9898
out->WriteTObject(copy);
9999
continue;
100100
}
101+
if (dk->GetName() == std::string("parentFiles")) {
102+
TMap* m = dynamic_cast<TMap*>(in->Get(dk->GetName()));
103+
m->Print();
104+
auto* copy = m->Clone("parentFiles");
105+
out->WriteTObject(copy);
106+
continue;
107+
}
101108
auto* d = (TDirectory*)in->Get(dk->GetName());
102109
std::cout << "Processing: " << dk->GetName() << std::endl;
103110
// For the moment RNTuple does not support TDirectory, so

0 commit comments

Comments
 (0)