/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
RecoMuon/MuonIsolation/plugins/TrackExtractor.h
56 строк
3 KB
Shahzad Malik Muzaffar
[RECONSTRUCTION] Changes suggested by new llvm18 clang-format
05 сен 2024, 17:05
05 сен 2024, 17:05
a09aaae
Код
Авторство
О чём код?
#ifndef MuonIsolation_TrackExtractor_H #define MuonIsolation_TrackExtractor_H #include <string> #include <vector> #include "FWCore/Framework/interface/ConsumesCollector.h" #include "DataFormats/RecoCandidate/interface/IsoDeposit.h" #include "DataFormats/TrackReco/interface/Track.h" #include "DataFormats/TrackReco/interface/TrackFwd.h" #include "DataFormats/BeamSpot/interface/BeamSpot.h" #include "PhysicsTools/IsolationAlgos/interface/IsoDepositExtractor.h" #include "DataFormats/Common/interface/View.h" namespace muonisolation { class TrackExtractor : public reco::isodeposit::IsoDepositExtractor { public: TrackExtractor() {} TrackExtractor(const edm::ParameterSet& par, edm::ConsumesCollector&& iC); ~TrackExtractor() override {} void fillVetos(const edm::Event& ev, const edm::EventSetup& evSetup, const reco::TrackCollection& track) override {} virtual reco::IsoDeposit::Vetos vetos(const edm::Event& ev, const edm::EventSetup& evSetup, const reco::Track& track) const; reco::IsoDeposit deposit(const edm::Event& ev, const edm::EventSetup& evSetup, const reco::Track& muon) const override; private: reco::IsoDeposit::Veto veto(const reco::IsoDeposit::Direction& dir) const; private: // Parameter set edm::EDGetTokenT<reco::TrackCollection> theTrackCollectionToken; //! Track Collection Label std::string theDepositLabel; //! name for deposit double theDiff_r; //! transverse distance to vertex double theDiff_z; //! z distance to vertex double theDR_Max; //! Maximum cone angle for deposits double theDR_Veto; //! Veto cone angle std::string theBeamlineOption; //! "NONE", "BeamSpotFromEvent" edm::EDGetTokenT<reco::BeamSpot> theBeamSpotToken; //! BeamSpot name unsigned int theNHits_Min; //! trk.numberOfValidHits >= theNHits_Min double theChi2Ndof_Max; //! trk.normalizedChi2 < theChi2Ndof_Max double theChi2Prob_Min; //! ChiSquaredProbability(trk.chi2,trk.ndof) > theChi2Prob_Min double thePt_Min; //! min track pt to include into iso deposit }; } // namespace muonisolation #endif