CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
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::TrackCollection
mTracks
 

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 ( 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 }
edm::EDGetTokenT< reco::TrackCollection > mTracks
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
edm::EDGetTokenT< edm::View< reco::Jet > > mJets
JetVetoedTracksAssociationDRVertex mAssociator
JetVetoedTracksAssociatorAtVertex::~JetVetoedTracksAssociatorAtVertex ( )
override

Definition at line 45 of file JetVetoedTracksAssociatorAtVertex.cc.

45 {}

Member Function Documentation

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, edm::Event::getByToken(), mps_fire::i, HLT_FULL_cff::jetTracks, mAssociator, mJets, eostools::move(), mTracks, TrackClassifier::newEvent(), JetVetoedTracksAssociationDRVertex::produce(), and edm::Event::put().

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
69  mAssociator.produce(&*jetTracks, allJets, allTracks, classifier);
70  // store output
71  fEvent.put(std::move(jetTracks));
72 }
std::vector< reco::JetBaseRef > allJets(const Container &)
fill list of all jets associated with values. Return # of jets in the list
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:133
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:539
edm::EDGetTokenT< reco::TrackCollection > mTracks
void produce(reco::JetTracksAssociation::Container *fAssociation, const std::vector< edm::RefToBase< reco::Jet >> &fJets, const std::vector< reco::TrackRef > &fTracks, TrackClassifier &classifier) const
def move
Definition: eostools.py:511
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

Member Data Documentation

TrackClassifier JetVetoedTracksAssociatorAtVertex::classifier
private

Definition at line 34 of file JetVetoedTracksAssociatorAtVertex.cc.

Referenced by produce().

JetVetoedTracksAssociationDRVertex JetVetoedTracksAssociatorAtVertex::mAssociator
private

Definition at line 33 of file JetVetoedTracksAssociatorAtVertex.cc.

Referenced by produce().

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

Definition at line 31 of file JetVetoedTracksAssociatorAtVertex.cc.

Referenced by produce().

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

Definition at line 32 of file JetVetoedTracksAssociatorAtVertex.cc.

Referenced by produce().