File indexing completed on 2024-04-06 12:24:25
0001 #ifndef RecoBTag_FeatureTools_SecondaryVertexConverter_h
0002 #define RecoBTag_FeatureTools_SecondaryVertexConverter_h
0003
0004 #include "RecoBTag/FeatureTools/interface/deep_helpers.h"
0005 #include "DataFormats/BTauReco/interface/SecondaryVertexFeatures.h"
0006
0007 #include "DataFormats/JetReco/interface/Jet.h"
0008 #include "DataFormats/Candidate/interface/VertexCompositePtrCandidate.h"
0009 #include "DataFormats/VertexReco/interface/Vertex.h"
0010
0011 namespace btagbtvdeep {
0012
0013 void svToFeatures(const reco::VertexCompositePtrCandidate& sv,
0014 const reco::Vertex& pv,
0015 const reco::Jet& jet,
0016 SecondaryVertexFeatures& sv_features,
0017 const bool flip = false);
0018
0019 }
0020
0021 #endif