Skip to content

Commit 011efa3

Browse files
authored
Get ROOT v6-36-00 to work. (#14331)
1 parent 0c28925 commit 011efa3

File tree

2 files changed

+144
-67
lines changed

2 files changed

+144
-67
lines changed

Framework/AnalysisSupport/src/Plugin.cxx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,10 @@ std::vector<std::string> getListOfTables(std::unique_ptr<TFile>& f)
121121
break;
122122
}
123123

124-
void* v = f->GetObjectChecked(key->GetName(), TClass::GetClass("ROOT::Experimental::RNTuple"));
124+
void* v = f->GetObjectChecked(key->GetName(), TClass::GetClass("ROOT::RNTuple"));
125+
if (!v) {
126+
v = f->GetObjectChecked(key->GetName(), TClass::GetClass("ROOT::Experimental::RNTuple"));
127+
}
125128
if (v) {
126129
std::string s = key->GetName();
127130
size_t pos = s.find('-');

0 commit comments

Comments
 (0)