Skip to content

Commit

Permalink
Delete commented debugging print statements.
Browse files Browse the repository at this point in the history
  • Loading branch information
cemitch99 authored Sep 16, 2024
1 parent 9070654 commit 8cfafc6
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
5 changes: 0 additions & 5 deletions src/particles/diagnostics/CovarianceMatrixMath.H
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,6 @@ namespace impactx::diagnostics

}

//std::cout << "Discriminant, Q, R " << discriminant << " " << Q << " " << R << "\n";
//std::cout << "Return x1, x2, x3 " << x1 << " " << x2 << " " << x3 << "\n";

roots = std::make_tuple(x1,x2,x3);
return roots;
Expand Down Expand Up @@ -147,9 +145,6 @@ namespace impactx::diagnostics
x3 = z3.m_real - b/(3.0*a);
}

//std::cout << "Discriminant, Q, R " << discriminant << " " << Q << " " << R << "\n";
//std::cout << "Re(C), Im(C) " << C.m_real << " " << C.m_imag << "\n";
//std::cout << "Return x1, x2, x3 " << x1 << " " << x2 << " " << x3 << "\n";

roots = std::make_tuple(x1,x2,x3);
return roots;
Expand Down
1 change: 0 additions & 1 deletion src/particles/diagnostics/EmittanceInvariants.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ namespace impactx::diagnostics
I4 = +impactx::diagnostics::TraceMat(S4)/2.0_prt;
I6 = -impactx::diagnostics::TraceMat(S6)/2.0_prt;

//std::cout << "Return I2, I4, I6 " << I2 << " " << I4 << " " << I6 << "\n";

invariants = std::make_tuple(I2,I4,I6);
return invariants;
Expand Down

0 comments on commit 8cfafc6

Please sign in to comment.