/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
SimG4CMS/Muon/interface/MuonRPCFrameRotation.h
33 строки
823 B
Sunanda
Code check
17 окт 2020, 00:51
17 окт 2020, 00:51
aaa0f06
Код
Авторство
О чём код?
#ifndef SimG4CMS_Muon_MuonRPCFrameRotation_H #define SimG4CMS_Muon_MuonRPCFrameRotation_H /** \class MuonRPCFrameRotation * * implementation of FrameRotation for the muon rpc * * \author Arno Straessner, CERN <arno.straessner@cern.ch> * * Modification: * */ #include "SimG4CMS/Muon/interface/MuonFrameRotation.h" #include "CondFormats/GeometryObjects/interface/MuonOffsetMap.h" #include "G4Step.hh" class MuonG4Numbering; class MuonGeometryConstants; class MuonRPCFrameRotation : public MuonFrameRotation { public: MuonRPCFrameRotation(const MuonGeometryConstants& constants, const MuonOffsetMap* offMap, bool dd4hep); ~MuonRPCFrameRotation() override; Local3DPoint transformPoint(const Local3DPoint&, const G4Step*) const override; private: MuonG4Numbering* g4numbering; int theRegion; }; #endif