File indexing completed on 2023-03-17 11:18:26
0001
0002
0003
0004
0005
0006
0007 #ifndef JetTracksAssociationDRVertexAssigned_h
0008 #define JetTracksAssociationDRVertexAssigned_h
0009
0010 #include "DataFormats/JetReco/interface/JetTracksAssociation.h"
0011 #include "DataFormats/VertexReco/interface/VertexFwd.h"
0012 #include "DataFormats/VertexReco/interface/Vertex.h"
0013 class JetTracksAssociationDRVertexAssigned {
0014 public:
0015 JetTracksAssociationDRVertexAssigned(double fDr);
0016 ~JetTracksAssociationDRVertexAssigned() {}
0017
0018 void produce(reco::JetTracksAssociation::Container* fAssociation,
0019 const std::vector<edm::RefToBase<reco::Jet> >& fJets,
0020 const std::vector<reco::TrackRef>& fTracks,
0021 const reco::VertexCollection& vertices) const;
0022
0023 private:
0024
0025 double mDeltaR2Threshold;
0026 };
0027
0028 #endif