/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DetectorDescription/Parser/src/DDLPosPart.h
35 строк
924 B
Cms Build
Clang-Format
11 май 2019, 12:09
11 май 2019, 12:09
02cea70
Код
Авторство
О чём код?
#ifndef DDL_PosPart_H #define DDL_PosPart_H #include <string> #include "DDXMLElement.h" class DDCompactView; class DDLElementRegistry; /// DDLPosPart handles PosPart elements. /** @class DDLPosPart * @author Michael Case * * DDLPosPart.h - description * ------------------- * begin: Tue Oct 30 2001 * email: case@ucdhep.ucdavis.edu * * A PosPart (or Positioning Part or Part Positioner :-)) is used to * position a LogicalPart somewhere inside it's parent. So, A PosPart * needs two rLogicalParts (self and parent) on which to operate, a * Translation and a Rotation. * */ class DDLPosPart final : public DDXMLElement { public: DDLPosPart(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