CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
JetVetoedTracksAssociatorAtVertex.cc
Go to the documentation of this file.
1 // \class JetVetoedTracksAssociatorAtVertex JetTracksAssociatorAtVertex.cc
2 //
3 // Original Author: Andrea Rizzi
4 // Created: Wed Apr 12 11:12:49 CEST 2006
5 // Accommodated for Jet Package by: Fedor Ratnikov Jul. 30, 2007
6 //
7 //
8 
14 
21 
23 
25 {
26 public:
29  virtual void produce(edm::Event&, const edm::EventSetup&) override;
30 private:
35 };
36 
38  : mJets (fConfig.getParameter<edm::InputTag> ("jets")),
39  mTracks (fConfig.getParameter<edm::InputTag> ("tracks")),
40  mAssociator (fConfig.getParameter<double> ("coneSize")),
41  classifier(fConfig,consumesCollector())
42 {
43  consumes<edm::View<reco::Jet>>(mJets);
44  consumes<reco::TrackCollection>(mTracks);
45  produces<reco::JetTracksAssociation::Container> ();
46 }
47 
49 
51 {
52  // Gather contextual information for TrackCategories
53  classifier.newEvent(fEvent, fSetup);
54 
56  fEvent.getByLabel (mJets, jets_h);
58  fEvent.getByLabel (mTracks, tracks_h);
59 
60  std::auto_ptr<reco::JetTracksAssociation::Container> jetTracks (new reco::JetTracksAssociation::Container (reco::JetRefBaseProd(jets_h)));
61 
62  // format inputs
63  std::vector <edm::RefToBase<reco::Jet> > allJets;
64  allJets.reserve (jets_h->size());
65  for (unsigned i = 0; i < jets_h->size(); ++i) allJets.push_back (jets_h->refAt(i));
66  std::vector <reco::TrackRef> allTracks;
67  allTracks.reserve (tracks_h->size());
68  for (unsigned i = 0; i < tracks_h->size(); ++i) allTracks.push_back (reco::TrackRef (tracks_h, i));
69  // run algo
70  mAssociator.produce (&*jetTracks, allJets, allTracks, classifier);
71  // store output
72  fEvent.put (jetTracks);
73 }
74 
76 
std::vector< reco::JetBaseRef > allJets(const Container &)
fill list of all jets associated with values. Return # of jets in the list
int i
Definition: DBlmapReader.cc:9
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
virtual void produce(edm::Event &, const edm::EventSetup &) override
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:113
void newEvent(edm::Event const &, edm::EventSetup const &)
Pre-process event information (for accessing reconstraction information)
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:405
Get track history and classify it in function of their .
void produce(reco::JetTracksAssociation::Container *fAssociation, const std::vector< edm::RefToBase< reco::Jet > > &fJets, const std::vector< reco::TrackRef > &fTracks, TrackClassifier &classifier) const
JetVetoedTracksAssociationDRVertex mAssociator
JetVetoedTracksAssociatorAtVertex(const edm::ParameterSet &)