Skip to content

Commit 512a2fc

Browse files
clang-format the updated ntuple manager test
1 parent 4729ad5 commit 512a2fc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Framework/test/NtupleManagerTest.cxx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,16 @@
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>
2525
std::vector<T> from_TTreeReaderArray(const TTreeReaderArray<T>& reader_val) {
2626
std::vector<T> v;
2727
for (const auto& val : reader_val) {

0 commit comments

Comments
 (0)