Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-06 08:19:33

0001 /**
0002  * @file g4tpc/EmbRecoMatchv1.cc
0003  * @author D. Stewart
0004  * @date September 2022
0005  * @brief Version 1 of EmbRecoMatch
0006  */
0007 #include "EmbRecoMatchv1.h"
0008 
0009 unsigned short EmbRecoMatchv1::add_match(
0010     unsigned short id_reco, unsigned short nclusreco, unsigned short nclusmatched, unsigned short id_tpctrackseed, unsigned short id_svtxtrackseed)
0011 {
0012   m_matches.push_back({id_reco, id_tpctrackseed, id_svtxtrackseed, nclusreco, nclusmatched});
0013   ++m_nMatches;
0014   return m_nMatches;
0015 }