/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
RecoLocalMuon/RPCRecHit/plugins/CSCSegtoRPC.h
34 строки
1 KB
Ahmed Hussein
Adding time info to the RPC points extrabolated from the CSC and DT segments
22 авг 2022, 22:31
22 авг 2022, 22:31
d2b25b9
Код
Авторство
О чём код?
#ifndef CSCSEGTORPC_H #define CSCSEGTORPC_H #include "FWCore/Framework/interface/ConsumesCollector.h" #include "FWCore/Framework/interface/EventSetup.h" #include "DataFormats/RPCRecHit/interface/RPCRecHit.h" #include "DataFormats/RPCRecHit/interface/RPCRecHitCollection.h" #include "DataFormats/CSCRecHit/interface/CSCSegmentCollection.h" #include "FWCore/ParameterSet/interface/ParameterSet.h" #include <memory> class RPCGeometry; class CSCGeometry; class CSCObjectMap; class MuonGeometryRecord; class CSCSegtoRPC { public: explicit CSCSegtoRPC(edm::ConsumesCollector iC, const edm::ParameterSet&); std::unique_ptr<RPCRecHitCollection> thePoints(CSCSegmentCollection const* allCSCSegments, edm::EventSetup const& iSetup, bool debug, double eyr); private: edm::ESGetToken<RPCGeometry, MuonGeometryRecord> rpcGeoToken_; edm::ESGetToken<CSCGeometry, MuonGeometryRecord> cscGeoToken_; edm::ESGetToken<CSCObjectMap, MuonGeometryRecord> cscMapToken_; int minBX; int maxBX; }; #endif