From 5e63fb70dffa1c2899012cf30580f951fb2b4785 Mon Sep 17 00:00:00 2001 From: benedikt-voelkel Date: Fri, 21 Jun 2024 11:32:06 +0200 Subject: [PATCH] [RelVal] Except more TLeaf Types --- RelVal/utils/ExtractAndFlatten.C | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RelVal/utils/ExtractAndFlatten.C b/RelVal/utils/ExtractAndFlatten.C index 889ed0e47..11a00dc8e 100644 --- a/RelVal/utils/ExtractAndFlatten.C +++ b/RelVal/utils/ExtractAndFlatten.C @@ -168,7 +168,7 @@ void ExtractAndFlattenDirectory(TDirectory* inDir, TDirectory* outDir, std::vect void ExtractTree(TTree* tree, TDirectory* outDir, std::vector& collectNames, std::string const& basedOnTree, std::string const& currentPrefix) { - const std::vector acceptedLeafTypes{"char", "int", "float", "double"}; + const std::vector acceptedLeafTypes{"char", "int", "float", "double", "short", "long"}; TIter next(tree->GetListOfLeaves()); std::vector leafNames; TLeaf* obj = nullptr;