/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
RecoMuon/MuonIsolation/plugins/PixelTrackExtractor.h
68 строк
3 KB
Shahzad Malik Muzaffar
[RECONSTRUCTION] Changes suggested by new llvm18 clang-format
05 сен 2024, 17:05
05 сен 2024, 17:05
a09aaae
Код
Авторство
О чём код?
#ifndef MuonIsolation_PixelTrackExtractor_H #define MuonIsolation_PixelTrackExtractor_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 "PhysicsTools/IsolationAlgos/interface/IsoDepositExtractor.h" #include "DataFormats/Common/interface/View.h" #include "DataFormats/TrackReco/interface/Track.h" #include "MagneticField/Engine/interface/MagneticField.h" #include "MagneticField/Records/interface/IdealMagneticFieldRecord.h" namespace muonisolation { class PixelTrackExtractor : public reco::isodeposit::IsoDepositExtractor { public: PixelTrackExtractor() {} PixelTrackExtractor(const edm::ParameterSet& par, edm::ConsumesCollector&& iC); ~PixelTrackExtractor() 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; reco::isodeposit::Direction directionAtPresetRadius(const reco::Track& tk, double bz) const; private: // Parameter set edm::ESGetToken<MagneticField, IdealMagneticFieldRecord> theFieldToken; edm::EDGetTokenT<reco::TrackCollection> theTrackCollectionToken; //! Track Collection Token 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 bool thePropagateTracksToRadius; //! If set to true will compare track eta-phi at ... double theReferenceRadius; //! ... this radius bool theVetoLeadingTrack; //! will veto leading track if double thePtVeto_Min; //! .. it is above this threshold double theDR_VetoPt; //!.. and is inside this cone }; } // namespace muonisolation #endif