CMS 3D CMS Logo

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/src/RecoJets/JetAssociationAlgorithms/interface/JetTracksAssociationDRVertex.h

Go to the documentation of this file.
00001 // \class JetTracksAssociationDRVertex
00002 // Associate jets with tracks by simple "delta R" criteria
00003 // Fedor Ratnikov (UMd), Aug. 28, 2007
00004 // $Id: JetTracksAssociationDRVertex.h,v 1.5 2010/03/18 12:17:58 bainbrid Exp $
00005 
00006 #ifndef JetTracksAssociationDRVertex_h
00007 #define JetTracksAssociationDRVertex_h
00008 
00009 #include "DataFormats/JetReco/interface/JetTracksAssociation.h"
00010 
00011 class JetTracksAssociationDRVertex {
00012  public:
00013   JetTracksAssociationDRVertex (double fDr);
00014   ~JetTracksAssociationDRVertex () {}
00015 
00016   void produce (reco::JetTracksAssociation::Container* fAssociation, 
00017                 const std::vector <edm::RefToBase<reco::Jet> >& fJets,
00018                 const std::vector <reco::TrackRef>& fTracks) const;
00019  private:
00021   double mDeltaR2Threshold;
00022 };
00023 
00024 #endif