/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Alignment/MuonAlignment/src/MuonAlignmentInputMethod.cc
75 строк
2 KB
hyunyong
esConsumes migration for muon alignment
20 окт 2021, 16:56
20 окт 2021, 16:56
4c7f78a
Код
Авторство
О чём код?
// -*- C++ -*- // // Package: MuonAlignment // Class : MuonAlignmentInputMethod // // Implementation: // <Notes on implementation> // // Original Author: Jim Pivarski // Created: Thu Mar 6 14:25:07 CST 2008 // $Id: MuonAlignmentInputMethod.cc,v 1.3 2009/01/19 11:07:37 flucke Exp $ // // system include files #include "FWCore/Framework/interface/ESHandle.h" #include "FWCore/Framework/interface/ESTransientHandle.h" // user include files #include "Alignment/MuonAlignment/interface/MuonAlignmentInputMethod.h" #include "Geometry/Records/interface/MuonNumberingRecord.h" #include "FWCore/MessageLogger/interface/MessageLogger.h" #include "Geometry/Records/interface/MuonGeometryRecord.h" // // constants, enums and typedefs // // // static data member definitions // // // constructors and destructor // MuonAlignmentInputMethod::MuonAlignmentInputMethod() {} MuonAlignmentInputMethod::MuonAlignmentInputMethod(const DTGeometry* dtGeometry, const CSCGeometry* cscGeometry, const GEMGeometry* gemGeometry) : dtGeometry_(dtGeometry), cscGeometry_(cscGeometry), gemGeometry_(gemGeometry) {} // MuonAlignmentInputMethod::MuonAlignmentInputMethod(const MuonAlignmentInputMethod& rhs) // { // // do actual copying here; // } MuonAlignmentInputMethod::~MuonAlignmentInputMethod() {} // // assignment operators // // const MuonAlignmentInputMethod& MuonAlignmentInputMethod::operator=(const MuonAlignmentInputMethod& rhs) // { // //An exception safe implementation is // MuonAlignmentInputMethod temp(rhs); // swap(rhs); // // return *this; // } // // member functions // AlignableMuon* MuonAlignmentInputMethod::newAlignableMuon() const { return new AlignableMuon(&*dtGeometry_, &*cscGeometry_, &*gemGeometry_); } // // const member functions // // // static member functions //