/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DetectorDescription/Parser/src/DDLRotationSequence.h
32 строки
807 B
Cms Build
Clang-Format
11 май 2019, 12:09
11 май 2019, 12:09
02cea70
Код
Авторство
О чём код?
#ifndef DDL_RotationSequence_H #define DDL_RotationSequence_H #include <string> #include "DDLRotationByAxis.h" class DDCompactView; class DDLElementRegistry; /// DDLRotationSequence handles a set of Rotations. /** @class DDLRotationSequence * @author Michael Case * * DDLRotationSequence.h - description * ------------------- * begin: Friday Nov. 15, 2003 * email: case@ucdhep.ucdavis.edu * * * This is the RotationSequence processor. * */ class DDLRotationSequence final : public DDLRotationByAxis { public: DDLRotationSequence(DDLElementRegistry* myreg); void preProcessElement(const std::string& name, const std::string& nmspace, DDCompactView& cpv) override; void processElement(const std::string& name, const std::string& nmspace, DDCompactView& cpv) override; }; #endif