File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 1212#include " Framework/NtupleManager.h"
1313#include " TFile.h" // to open and check root files
1414#include " TTreeReader.h" // to check output event files
15- #include " TTreeReaderValue.h"
1615#include " TTreeReaderArray.h"
16+ #include " TTreeReaderValue.h"
1717
1818/* *
1919 * TTreeReaderValue<std::vector<T>> fails when attempting to register in this
2020 * test so we use TTreeReaderArray<T> instead.
21- * This then functions properly but we then have to convert it back to a std::vector
22- * so that Catch2 can compare it to our correct answer.
21+ * This then functions properly but we then have to convert it back to a
22+ * std::vector so that Catch2 can compare it to our correct answer.
2323 */
24- template <typename T>
24+ template <typename T>
2525std::vector<T> from_TTreeReaderArray (const TTreeReaderArray<T>& reader_val) {
2626 std::vector<T> v;
2727 for (const auto & val : reader_val) {
You can’t perform that action at this time.
0 commit comments