/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
RecoLocalMuon/RPCRecHit/plugins/RPCPointProducer.h
49 строк
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
Код
Авторство
О чём код?
#include "FWCore/Framework/interface/Frameworkfwd.h" #include "FWCore/Framework/interface/stream/EDProducer.h" #include "FWCore/Framework/interface/Event.h" #include "FWCore/Framework/interface/MakerMacros.h" #include "FWCore/ParameterSet/interface/ParameterSet.h" #include "DataFormats/DTRecHit/interface/DTRecSegment4DCollection.h" #include "DataFormats/CSCRecHit/interface/CSCSegmentCollection.h" #include "FWCore/Framework/interface/ESHandle.h" #include "DataFormats/RPCRecHit/interface/RPCRecHit.h" #include "DataFormats/MuonDetId/interface/RPCDetId.h" #include "DTSegtoRPC.h" #include "CSCSegtoRPC.h" #include "TracktoRPC.h" namespace edm { class ConfigurationDescriptions; } // // class decleration // class RPCPointProducer : public edm::stream::EDProducer<> { public: explicit RPCPointProducer(const edm::ParameterSet&); static void fillDescriptions(edm::ConfigurationDescriptions& descriptions); private: void produce(edm::Event&, const edm::EventSetup&) override; edm::EDGetTokenT<CSCSegmentCollection> cscSegments; edm::EDGetTokenT<DTRecSegment4DCollection> dt4DSegments; edm::EDGetTokenT<reco::TrackCollection> tracks; std::unique_ptr<DTSegtoRPC> dtSegtoRPC; std::unique_ptr<CSCSegtoRPC> cscSegtoRPC; std::unique_ptr<TracktoRPC> tracktoRPC; const bool incldt; const bool inclcsc; const bool incltrack; const bool debug; const double MinCosAng; const double MaxD; const double MaxDrb4; const double ExtrapolatedRegion; };