Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
EmbRecoMatchv1.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file EmbRecoMatchv1.cc
1 
7 #include "EmbRecoMatchv1.h"
8 
9 unsigned short EmbRecoMatchv1::add_match(
10  unsigned short id_reco
11  , unsigned short nclusreco
12  , unsigned short nclusmatched
13  , unsigned short id_tpctrackseed
14  , unsigned short id_svtxtrackseed
15  )
16 {
17  m_matches.push_back( { id_reco, id_tpctrackseed, id_svtxtrackseed, nclusreco, nclusmatched } );
18  ++m_nMatches;
19  return m_nMatches;
20 }