Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[L1-UPGRADE] Applying code checks/format #46218

Merged
merged 1 commit into from
Oct 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions L1Trigger/Phase2L1GT/plugins/L1GTEvaluationInterface.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ namespace l1t {
ap_int<14> eta;

L1TGT_Common3Vector(int valid = 0, int pT = 0, int phi = 0, int eta = 0)
: valid(valid), pT(pT), phi(phi), eta(eta){};
: valid(valid), pT(pT), phi(phi), eta(eta) {};

virtual ap_uint<44> pack_common() const { return l1t_pack_int<ap_uint<44>>(valid, pT, phi, eta); }

Expand Down Expand Up @@ -437,7 +437,7 @@ namespace l1t {
struct L1TGT_GTT_Track : public L1TGT_Interface<96> {
//TODO

L1TGT_GTT_Track(){};
L1TGT_GTT_Track() {};

ap_uint<WIDTH> pack() const override { return ap_uint<WIDTH>(0); }

Expand Down