/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Alignment/MuonAlignment/interface/MuonScenarioBuilder.h
52 строки
2 KB
Shahzad Malik Muzaffar
[ALCA] Changes suggested by new llvm18 clang-format
05 сен 2024, 17:03
05 сен 2024, 17:03
dfd2283
Код
Авторство
О чём код?
#ifndef Alignment_MuonAlignment_MuonScenarioBuilder_h #define Alignment_MuonAlignment_MuonScenarioBuilder_h /** \class MuonScenarioBuilder * The misalignment scenario builder. * * $Date: 2009/09/15 17:09:58 $ * $Revision: 1.5 $ * \author Andre Sznajder - UERJ(Brazil) */ #include <vector> #include "Alignment/CommonAlignment/interface/AlignableModifier.h" #include "Alignment/CommonAlignment/interface/MisalignmentScenarioBuilder.h" #include "Alignment/MuonAlignment/interface/AlignableMuon.h" /// Builds a scenario from configuration and applies it to the alignable Muon. class MuonScenarioBuilder : public MisalignmentScenarioBuilder { public: /// Constructor explicit MuonScenarioBuilder(Alignable* alignable); /// Destructor ~MuonScenarioBuilder() override {} /// Apply misalignment scenario to the Muon void applyScenario(const edm::ParameterSet& scenario) override; /// This special method allows to move a DTsector by a same amount void moveDTSectors(const edm::ParameterSet& scenario); /// this special method allows to move a CSCsector by a same amount void moveCSCSectors(const edm::ParameterSet& scenario); void moveGEMSectors(const edm::ParameterSet& scenario); /// this special method allows to move the complete muon system by a same amount void moveMuon(const edm::ParameterSet& scenario); align::Scalars extractParameters(const edm::ParameterSet&, const char*); void moveChamberInSector( Alignable*, const align::Scalars&, const align::Scalars&, const align::Scalars&, const align::Scalars&); private: // Members AlignableMuon* theAlignableMuon; ///< Pointer to alignable Muon object AlignableModifier theMuonModifier; }; #endif