CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
JetVetoedTracksAssociatorAtVertex Class Reference
Inheritance diagram for JetVetoedTracksAssociatorAtVertex:
edm::stream::EDProducer<>

Public Member Functions

 JetVetoedTracksAssociatorAtVertex (const edm::ParameterSet &)
 
void produce (edm::Event &, const edm::EventSetup &) override
 
 ~JetVetoedTracksAssociatorAtVertex () override
 
- Public Member Functions inherited from edm::stream::EDProducer<>
 EDProducer ()=default
 
 EDProducer (const EDProducer &)=delete
 
bool hasAbilityToProduceInBeginLumis () const final
 
bool hasAbilityToProduceInBeginProcessBlocks () const final
 
bool hasAbilityToProduceInBeginRuns () const final
 
bool hasAbilityToProduceInEndLumis () const final
 
bool hasAbilityToProduceInEndProcessBlocks () const final
 
bool hasAbilityToProduceInEndRuns () const final
 
const EDProduceroperator= (const EDProducer &)=delete
 

Private Attributes

TrackClassifier classifier
 
JetVetoedTracksAssociationDRVertex mAssociator
 
edm::EDGetTokenT< edm::View< reco::Jet > > mJets
 
edm::EDGetTokenT< reco::TrackCollectionmTracks
 

Additional Inherited Members

- Public Types inherited from edm::stream::EDProducer<>
using CacheTypes = CacheContexts< T... >
 
using GlobalCache = typename CacheTypes::GlobalCache
 
using HasAbility = AbilityChecker< T... >
 
using InputProcessBlockCache = typename CacheTypes::InputProcessBlockCache
 
using LuminosityBlockCache = typename CacheTypes::LuminosityBlockCache
 
using LuminosityBlockContext = LuminosityBlockContextT< LuminosityBlockCache, RunCache, GlobalCache >
 
using LuminosityBlockSummaryCache = typename CacheTypes::LuminosityBlockSummaryCache
 
using RunCache = typename CacheTypes::RunCache
 
using RunContext = RunContextT< RunCache, GlobalCache >
 
using RunSummaryCache = typename CacheTypes::RunSummaryCache
 

Detailed Description

Definition at line 24 of file JetVetoedTracksAssociatorAtVertex.cc.

Constructor & Destructor Documentation

◆ JetVetoedTracksAssociatorAtVertex()

JetVetoedTracksAssociatorAtVertex::JetVetoedTracksAssociatorAtVertex ( const edm::ParameterSet fConfig)

Definition at line 37 of file JetVetoedTracksAssociatorAtVertex.cc.

38  : mJets(consumes<edm::View<reco::Jet>>(fConfig.getParameter<edm::InputTag>("jets"))),
39  mTracks(consumes<reco::TrackCollection>(fConfig.getParameter<edm::InputTag>("tracks"))),
40  mAssociator(fConfig.getParameter<double>("coneSize")),
41  classifier(fConfig, consumesCollector()) {
42  produces<reco::JetTracksAssociation::Container>();
43 }
T getParameter(std::string const &) const
Definition: ParameterSet.h:307
edm::EDGetTokenT< reco::TrackCollection > mTracks
edm::EDGetTokenT< edm::View< reco::Jet > > mJets
JetVetoedTracksAssociationDRVertex mAssociator

◆ ~JetVetoedTracksAssociatorAtVertex()

JetVetoedTracksAssociatorAtVertex::~JetVetoedTracksAssociatorAtVertex ( )
override

Definition at line 45 of file JetVetoedTracksAssociatorAtVertex.cc.

45 {}

Member Function Documentation

◆ produce()

void JetVetoedTracksAssociatorAtVertex::produce ( edm::Event fEvent,
const edm::EventSetup fSetup 
)
override

Definition at line 47 of file JetVetoedTracksAssociatorAtVertex.cc.

References reco::JetExtendedAssociation::allJets(), muonTagProbeFilters_cff::allTracks, classifier, hcaldqm::fEvent, mps_fire::i, HLT_2024v12_cff::jetTracks, mAssociator, mJets, eostools::move(), mTracks, TrackClassifier::newEvent(), and JetVetoedTracksAssociationDRVertex::produce().

47  {
48  // Gather contextual information for TrackCategories
49  classifier.newEvent(fEvent, fSetup);
50 
52  fEvent.getByToken(mJets, jets_h);
54  fEvent.getByToken(mTracks, tracks_h);
55 
56  std::unique_ptr<reco::JetTracksAssociation::Container> jetTracks(
58 
59  // format inputs
60  std::vector<edm::RefToBase<reco::Jet>> allJets;
61  allJets.reserve(jets_h->size());
62  for (unsigned i = 0; i < jets_h->size(); ++i)
63  allJets.push_back(jets_h->refAt(i));
64  std::vector<reco::TrackRef> allTracks;
65  allTracks.reserve(tracks_h->size());
66  for (unsigned i = 0; i < tracks_h->size(); ++i)
67  allTracks.push_back(reco::TrackRef(tracks_h, i));
68  // run algo
70  // store output
72 }
std::vector< reco::JetBaseRef > allJets(const Container &)
fill list of all jets associated with values. Return # of jets in the list
void produce(reco::JetTracksAssociation::Container *fAssociation, const std::vector< edm::RefToBase< reco::Jet >> &fJets, const std::vector< reco::TrackRef > &fTracks, TrackClassifier &classifier) const
edm::EDGetTokenT< reco::TrackCollection > mTracks
void newEvent(edm::Event const &, edm::EventSetup const &)
Pre-process event information (for accessing reconstraction information)
edm::EDGetTokenT< edm::View< reco::Jet > > mJets
JetVetoedTracksAssociationDRVertex mAssociator
def move(src, dest)
Definition: eostools.py:511

Member Data Documentation

◆ classifier

TrackClassifier JetVetoedTracksAssociatorAtVertex::classifier
private

Definition at line 34 of file JetVetoedTracksAssociatorAtVertex.cc.

Referenced by produce().

◆ mAssociator

JetVetoedTracksAssociationDRVertex JetVetoedTracksAssociatorAtVertex::mAssociator
private

Definition at line 33 of file JetVetoedTracksAssociatorAtVertex.cc.

Referenced by produce().

◆ mJets

edm::EDGetTokenT<edm::View<reco::Jet> > JetVetoedTracksAssociatorAtVertex::mJets
private

Definition at line 31 of file JetVetoedTracksAssociatorAtVertex.cc.

Referenced by produce().

◆ mTracks

edm::EDGetTokenT<reco::TrackCollection> JetVetoedTracksAssociatorAtVertex::mTracks
private

Definition at line 32 of file JetVetoedTracksAssociatorAtVertex.cc.

Referenced by produce().