Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
LuisFelipeCoelho committed Dec 7, 2023
1 parent 6f74f91 commit 7bac02a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,8 @@ ActsExamples::ProcessCode ActsExamples::CKFPerformanceWriter::finalize() {
<< duplicationRate_particle);

auto writeFloat = [&](float f, const char* name) {
TVectorF v(1);
v[0] = f;
TVectorF v(1);
v[0] = f;
m_outputFile->WriteObject(&v, name);
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
#include <vector>

#include <TFile.h>
#include <TVectorT.h>

using Acts::VectorHelpers::eta;
using Acts::VectorHelpers::phi;
Expand Down Expand Up @@ -100,8 +101,8 @@ ActsExamples::ProcessCode ActsExamples::SeedingPerformanceWriter::finalize() {
<< aveNDuplicatedSeeds);

auto writeFloat = [&](float f, const char* name) {
TVectorF v(1);
v[0] = f;
TVectorF v(1);
v[0] = f;
m_outputFile->WriteObject(&v, name);
};

Expand Down

0 comments on commit 7bac02a

Please sign in to comment.