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

SimTracker : fix gcc700 warning: class has virtual functions and accessible non-virtual destructor [-Wnon-virtual-dtor] #18923

Merged
merged 1 commit into from May 27, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -9,7 +9,7 @@ class TrackerTopology;
class PSSDigitizerAlgorithm :public Phase2TrackerDigitizerAlgorithm {
public:
PSSDigitizerAlgorithm(const edm::ParameterSet& conf, CLHEP::HepRandomEngine&);
~PSSDigitizerAlgorithm();
virtual ~PSSDigitizerAlgorithm();

// initialization that cannot be done in the constructor
void init(const edm::EventSetup& es);
Expand Down
Expand Up @@ -45,7 +45,7 @@ class TrackerTopology;
class Phase2TrackerDigitizerAlgorithm {
public:
Phase2TrackerDigitizerAlgorithm(const edm::ParameterSet& conf_common, const edm::ParameterSet& conf_specific, CLHEP::HepRandomEngine&);
~Phase2TrackerDigitizerAlgorithm();
virtual ~Phase2TrackerDigitizerAlgorithm();

// initialization that cannot be done in the constructor
virtual void init(const edm::EventSetup& es) = 0;
Expand Down
Expand Up @@ -9,7 +9,7 @@ class TrackerTopology;
class PixelDigitizerAlgorithm: public Phase2TrackerDigitizerAlgorithm {
public:
PixelDigitizerAlgorithm(const edm::ParameterSet& conf, CLHEP::HepRandomEngine&);
~PixelDigitizerAlgorithm();
virtual ~PixelDigitizerAlgorithm();

// initialization that cannot be done in the constructor
void init(const edm::EventSetup& es);
Expand Down
Expand Up @@ -10,7 +10,7 @@ class TrackerTopology;
class SSDigitizerAlgorithm :public Phase2TrackerDigitizerAlgorithm {
public:
SSDigitizerAlgorithm(const edm::ParameterSet& conf, CLHEP::HepRandomEngine&);
~SSDigitizerAlgorithm();
virtual ~SSDigitizerAlgorithm();

// initialization that cannot be done in the constructor
void init(const edm::EventSetup& es);
Expand Down