/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
SimG4CMS/Muon/interface/MuonFrameRotation.h
24 строки
545 B
Shahzad Malik Muzaffar
[SIMULATION] Changes suggested by new llvm18 clang-format
05 сен 2024, 17:10
05 сен 2024, 17:10
321a48b
Код
Авторство
О чём код?
#ifndef SimG4CMS_Muon_MuonFrameRotation_H #define SimG4CMS_Muon_MuonFrameRotation_H /** \class MuonFrameRotation * * \author Arno Straessner, CERN <arno.straessner@cern.ch> * * Modification: * Pedro Arce 31/01/2006 * Make it base class of each detector FrameRotation */ #include "DataFormats/GeometryVector/interface/LocalPoint.h" class G4Step; class MuonFrameRotation { public: MuonFrameRotation() {} virtual ~MuonFrameRotation() {} virtual Local3DPoint transformPoint(const Local3DPoint &, const G4Step *) const; }; #endif