/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Alignment/MuonAlignment/interface/MuonAlignmentInputMethod.h
62 строки
2 KB
hyunyong
esConsumes migration for muon alignment
20 окт 2021, 16:56
20 окт 2021, 16:56
4c7f78a
Код
Авторство
О чём код?
#ifndef Alignment_MuonAlignment_MuonAlignmentInputMethod_h #define Alignment_MuonAlignment_MuonAlignmentInputMethod_h // -*- C++ -*- // // Package: MuonAlignment // Class : MuonAlignmentInputMethod // /**\class MuonAlignmentInputMethod MuonAlignmentInputMethod.h Alignment/MuonAlignment/interface/MuonAlignmentInputMethod.h Description: <one line class summary> Usage: <usage> */ // // Original Author: Jim Pivarski // Created: Thu Mar 6 14:10:22 CST 2008 // $Id: MuonAlignmentInputMethod.h,v 1.1 2008/03/15 20:26:46 pivarski Exp $ // // system include files #include <memory> #include "FWCore/Framework/interface/EventSetup.h" // user include files #include "Alignment/MuonAlignment/interface/AlignableMuon.h" #include "Geometry/DTGeometry/interface/DTGeometry.h" #include "Geometry/CSCGeometry/interface/CSCGeometry.h" #include "Geometry/GEMGeometry/interface/GEMGeometry.h" // forward declarations class MuonAlignmentInputMethod { public: MuonAlignmentInputMethod(); MuonAlignmentInputMethod(const DTGeometry* dtGeometry, const CSCGeometry* cscGeometry, const GEMGeometry* gemGeometry); virtual ~MuonAlignmentInputMethod(); // ---------- const member functions --------------------- // ---------- static member functions -------------------- // ---------- member functions --------------------------- virtual AlignableMuon* newAlignableMuon() const; MuonAlignmentInputMethod(const MuonAlignmentInputMethod&) = delete; // stop default const MuonAlignmentInputMethod& operator=(const MuonAlignmentInputMethod&) = delete; // stop default private: // ---------- member data -------------------------------- const DTGeometry* dtGeometry_; const CSCGeometry* cscGeometry_; const GEMGeometry* gemGeometry_; }; #endif