Changeset 19967 for trunk/FACT++/src
- Timestamp:
- 05/26/20 20:27:52 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/rootifysql.cc
r19966 r19967 901 901 902 902 if (verbose>1) 903 cout << (skip?" - ":" + ") << branch.c_str() << " [" << t << "] {" << (it==FileEntry::LUT.end()?'-':it->branch) << "}\n";903 cout << (skip?" - ":" + ") << leaflist.c_str() << " [" << t << "] {" << (it==FileEntry::LUT.end()?'-':it->branch) << "}\n"; 904 904 905 905 // Create the container entry (must be emplace_back due to the std::string) 906 906 if (accurate) 907 container.emplace_back(leaflist, "", it->type); 908 else 907 909 container.emplace_back(leaflist, it->type); 908 else909 container.emplace_back(leaflist, "", it->type);910 910 911 911 if (skip) … … 914 914 // Create corresponding branches in all trees 915 915 for (auto itree=ttree.begin(); itree!=ttree.end(); itree++) 916 itree[0]->Branch(l[i].c_str(), container[i].ptr, branch.c_str());916 itree[0]->Branch(l[i].c_str(), container[i].ptr, leaflist.c_str()); 917 917 918 918 cols++;
Note:
See TracChangeset
for help on using the changeset viewer.