Skip to content

Commit

Permalink
removed extra print
Browse files Browse the repository at this point in the history
  • Loading branch information
erikfrojdh committed Nov 21, 2024
1 parent 9f7cdbc commit f9a2d49
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/RawFile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -99,10 +99,7 @@ void RawFile::open_subfiles() {
for (size_t i = 0; i != n_subfiles; ++i) {
auto v = std::vector<RawSubFile *>(n_subfile_parts);
for (size_t j = 0; j != n_subfile_parts; ++j) {
fmt::print("{} pos: {},{}\n", j,positions[j].row, positions[j].col);

auto pos = m_module_pixel_0[j];
fmt::print("{} pos: {},{}\n", j,pos.y, pos.x);
v[j] = new RawSubFile(m_master.data_fname(j, i),
m_master.detector_type(), pos.height,
pos.width, m_master.bitdepth(),
Expand Down

0 comments on commit f9a2d49

Please sign in to comment.