/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
RecoMuon/MuonIdentification/plugins/MuonRefProducer.h
46 строк
1 KB
Cms Build
Clang-Format
03 июн 2019, 06:38
03 июн 2019, 06:38
906af8e
Код
Авторство
О чём код?
#ifndef MuonIdentification_MuonRefProducer_h #define MuonIdentification_MuonRefProducer_h // -*- C++ -*- // // Package: MuonIdentification // Class: MuonRefProducer // /* Description: create a reduced collection of muons based on a reference collection and a set of cuts. */ // // Original Author: Dmytro Kovalskyi // // user include files #include "FWCore/Framework/interface/Frameworkfwd.h" #include "FWCore/Framework/interface/global/EDProducer.h" #include "FWCore/ParameterSet/interface/ParameterSet.h" #include "DataFormats/MuonReco/interface/Muon.h" #include "DataFormats/MuonReco/interface/MuonFwd.h" #include "DataFormats/MuonReco/interface/MuonSelectors.h" class MuonRefProducer : public edm::global::EDProducer<> { public: explicit MuonRefProducer(const edm::ParameterSet&); ~MuonRefProducer() override; void produce(edm::StreamID, edm::Event&, const edm::EventSetup&) const override; private: edm::InputTag theReferenceCollection_; edm::EDGetTokenT<reco::MuonCollection> muonToken_; muon::AlgorithmType type_; int minNumberOfMatches_; double maxAbsDx_; double maxAbsPullX_; double maxAbsDy_; double maxAbsPullY_; double maxChamberDist_; double maxChamberDistPull_; reco::Muon::ArbitrationType arbitrationType_; }; #endif