Skip to content
Open
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions src/geomlib/THelicalTrack.h
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,9 @@ class THelicalTrack : public TVTrack {
Double_t b,
const TTrackFrame &frame);

THelicalTrack(const THelicalTrack&) = default;
THelicalTrack& operator=(const THelicalTrack&) = default;

virtual ~THelicalTrack() {}

// Utility methods
Expand Down
3 changes: 3 additions & 0 deletions src/geomlib/TVTrack.h
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,9 @@ class TVTrack : public TVCurve {
Double_t b,
const TTrackFrame &f);

TVTrack(const TVTrack&) = default;
TVTrack& operator=(const TVTrack&) = default;

virtual ~TVTrack() {}

// Utility methods
Expand Down