Skip to content
Snippets Groups Projects
Commit 3cc122e1 authored by Jackson Carl Burzynski's avatar Jackson Carl Burzynski :cowboy:
Browse files

tmp

parent 1594175e
No related branches found
No related tags found
2 merge requests!707622024-04-22: merge of 24.0 into main,!63422Add tool for fitting GN2 vertices
......@@ -27,7 +27,7 @@ GNNVertexConstructorTool::GNNVertexConstructorTool(const std::string &type, cons
m_minD0(0.1)
{
declareInterface<IGNNVertexConstructorInterface>(this);
declareProperty("JetTrackLinks", m_trackLinksKey = "AntiKt4EMPFlowJetsAuxDyn.GN2v01_TrackOrigin");
declareProperty("JetTrackLinks", m_trackLinksKey = "AntiKt4EMPFlowJetsAuxDyn.TrackLinks");
declareProperty("JetVertexLinks",m_vertexLinksKey = "AntiKt4EMPFlowJetsAuxDyn.GN2v01_VertexIndex");
declareProperty("GNNTool", m_gnn_Tool, "GNN Tool");
declareProperty("VertexFitterTool", m_vertexFitterTool, "Vertex fitting tool");
......@@ -159,7 +159,7 @@ StatusCode GNNVertexConstructorTool::performVertexFit(const xAOD::JetContainer *
//Read Decor Handle for Track links and Vertex links
SG::ReadDecorHandle<xAOD::JetContainer, TLC> trackLinksHandle(m_trackLinksKey, ctx);
SG::ReadDecorHandle<xAOD::JetContainer, std::vector<char, std::allocator<char>>>
SG::ReadDecorHandle<xAOD::JetContainer, std::vector<char>>
vertexLinksHandle(m_vertexLinksKey, ctx);
SG::WriteDecorHandle< xAOD::JetContainer, std::vector<ElementLink<xAOD::VertexContainer>>>
jetWriteDecorHandleVertexLink (m_jetWriteDecorKeyVertexLink, ctx);
......
......@@ -59,7 +59,7 @@ StatusCode GNNVertexConstructorAlg::execute(const EventContext &ctx) const {
//Decorates the Jets using the GNN model
//May b removed in future with development of GNN model
ATH_CHECK(m_VtxTool->decorateJets(inJetContainer.ptr()));
//ATH_CHECK(m_VtxTool->decorateJets(inJetContainer.ptr()));
//Perform a Vertex fit
ATH_CHECK(m_VtxTool->performVertexFit(inJetContainer.ptr(), outVertexContainer.ptr(), *pv, ctx));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment