Skip to content

Commit

Permalink
Remove user-defined destructors
Browse files Browse the repository at this point in the history
  • Loading branch information
VourMa committed Aug 16, 2024
1 parent 8d2366b commit d5e443a
Show file tree
Hide file tree
Showing 7 changed files with 0 additions and 11 deletions.
2 changes: 0 additions & 2 deletions RecoTracker/LST/interface/LSTOutput.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ class LSTOutput {
seedIdx_(std::move(seedIdx)),
trackCandidateType_(std::move(trackCandidateType)) {}

~LSTOutput() = default;

enum LSTTCType { T5 = 4, pT3 = 5, pT5 = 7, pLS = 8 };

// Hit indices of each of the LST track candidates.
Expand Down
2 changes: 0 additions & 2 deletions RecoTracker/LST/interface/LSTPhase2OTHitsInput.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ class LSTPhase2OTHitsInput {
std::vector<TrackingRecHit const*> const hits)
: detId_(std::move(detId)), x_(std::move(x)), y_(std::move(y)), z_(std::move(z)), hits_(std::move(hits)) {}

~LSTPhase2OTHitsInput() = default;

std::vector<unsigned int> const& detId() const { return detId_; }
std::vector<float> const& x() const { return x_; }
std::vector<float> const& y() const { return y_; }
Expand Down
2 changes: 0 additions & 2 deletions RecoTracker/LST/interface/LSTPixelSeedInput.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,6 @@ class LSTPixelSeedInput {
q_(std::move(q)),
hitIdx_(std::move(hitIdx)) {}

~LSTPixelSeedInput() = default;

std::vector<float> const& px() const { return px_; }
std::vector<float> const& py() const { return py_; }
std::vector<float> const& pz() const { return pz_; }
Expand Down
1 change: 0 additions & 1 deletion RecoTracker/LSTCore/interface/EndcapGeometry.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ namespace lst {

EndcapGeometry() = default;
EndcapGeometry(std::string const& filename);
~EndcapGeometry() = default;

void load(std::string const&);
void fillGeoMapArraysExplicit();
Expand Down
1 change: 0 additions & 1 deletion RecoTracker/LSTCore/interface/ModuleConnectionMap.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ namespace lst {
public:
ModuleConnectionMap();
ModuleConnectionMap(std::string const& filename);
~ModuleConnectionMap();

void load(std::string const&);
void add(std::string const&);
Expand Down
1 change: 0 additions & 1 deletion RecoTracker/LSTCore/interface/TiltedGeometry.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ namespace lst {
public:
TiltedGeometry() = default;
TiltedGeometry(std::string const& filename);
~TiltedGeometry() = default;

void load(std::string const&);

Expand Down
2 changes: 0 additions & 2 deletions RecoTracker/LSTCore/src/ModuleConnectionMap.cc
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ lst::ModuleConnectionMap::ModuleConnectionMap() {}

lst::ModuleConnectionMap::ModuleConnectionMap(std::string const& filename) { load(filename); }

lst::ModuleConnectionMap::~ModuleConnectionMap() {}

void lst::ModuleConnectionMap::load(std::string const& filename) {
moduleConnections_.clear();

Expand Down

0 comments on commit d5e443a

Please sign in to comment.