Skip to content

Commit

Permalink
set destructor to default
Browse files Browse the repository at this point in the history
  • Loading branch information
ddiaz006 committed Feb 29, 2024
1 parent 0d18386 commit 35942a4
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion L1Trigger/Phase2L1ParticleFlow/interface/JetId.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class JetId {
const std::shared_ptr<hls4mlEmulator::Model> model,
int iNParticles);
JetId(const std::string &iInput, const std::string &iOutput, const BJetTFCache *cache, int iNParticles);
~JetId();
~JetId() = default;

void setNNVectorVar();
float EvaluateNN();
Expand Down
2 changes: 0 additions & 2 deletions L1Trigger/Phase2L1ParticleFlow/src/JetId.cc
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,6 @@ JetId::JetId(const std::string &iInput, const std::string &iOutput, const BJetTF
fOutput_ = iOutput;
}

JetId::~JetId() {}

void JetId::setNNVectorVar() {
NNvectorVar_.clear();
for (int i0 = 0; i0 < fNParticles_; i0++) {
Expand Down

0 comments on commit 35942a4

Please sign in to comment.