We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2ee722 commit 5c1a8d6Copy full SHA for 5c1a8d6
Framework/Core/test/o2AO2DToAO3D.cxx
@@ -98,6 +98,13 @@ int main(int argc, char** argv)
98
out->WriteTObject(copy);
99
continue;
100
}
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
+ }
108
auto* d = (TDirectory*)in->Get(dk->GetName());
109
std::cout << "Processing: " << dk->GetName() << std::endl;
110
// For the moment RNTuple does not support TDirectory, so
0 commit comments