/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Alignment/SurveyAnalysis/src/SurveyInputBase.cc
18 строк
419 B
Cms Build
Clang-Format
09 май 2019, 07:17
09 май 2019, 07:17
6fda101
Код
Авторство
О чём код?
#include "Alignment/CommonAlignment/interface/Alignable.h" #include "Alignment/SurveyAnalysis/interface/SurveyInputBase.h" Alignable* SurveyInputBase::theDetector(nullptr); SurveyInputBase::~SurveyInputBase() { delete theDetector; theDetector = nullptr; } void SurveyInputBase::addComponent(Alignable* comp) { if (nullptr == theDetector) theDetector = comp; else theDetector->addComponent(comp); }