Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-05 08:18:19

0001 #include "EmbRecoMatchContainer.h"
0002 
0003 namespace
0004 {
0005   EmbRecoMatchContainer::Vector dummy_vec;
0006   std::vector<unsigned short> dummy_short_vec;
0007 
0008   EmbRecoMatchContainer::Map_nMatches dummy_map;
0009 }  // namespace
0010 
0011 EmbRecoMatchContainer::ConstRange EmbRecoMatchContainer::getMatchedRange() const
0012 {
0013   return make_pair(dummy_vec.cbegin(), dummy_vec.cend());
0014 }
0015 
0016 EmbRecoMatchContainer::Vector& EmbRecoMatchContainer::getMatches()
0017 {
0018   return dummy_vec;
0019 }
0020 
0021 std::vector<unsigned short>& EmbRecoMatchContainer::ids_TruthUnmatched()  // id's of the TrkrTruthTrack's that are not matched
0022 {
0023   return dummy_short_vec;
0024 }
0025 
0026 std::map<unsigned short, unsigned short>& EmbRecoMatchContainer::map_nRecoPerTruth()
0027 {
0028   return dummy_map;
0029 }
0030 
0031 std::map<unsigned short, unsigned short>& EmbRecoMatchContainer::map_nTruthPerReco()
0032 {
0033   return dummy_map;
0034 }