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

DD4hep: Update to a new DD4hep version - no need to cleanup #27728

Merged
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
2 changes: 0 additions & 2 deletions DetectorDescription/DDCMS/interface/DDDetector.h
Expand Up @@ -18,8 +18,6 @@ namespace cms {
explicit DDDetector(const std::string&, const std::string&);
DDDetector() = delete;

~DDDetector();

// FIXME: remove the need for it
Detector const* description() const { return m_description; }

Expand Down
2 changes: 0 additions & 2 deletions DetectorDescription/DDCMS/src/DDDetector.cc
Expand Up @@ -15,8 +15,6 @@ DDDetector::DDDetector(const string& tag, const string& fileName) : m_tag(tag) {
process(fileName);
}

DDDetector::~DDDetector() { Detector::destroyInstance(m_tag); }

void DDDetector::process(const string& fileName) {
std::string name("DD4hep_CompactLoader");
const char* files[] = {fileName.c_str(), nullptr};
Expand Down