Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-06 08:17:46

0001 #include "JetMap.h"
0002 
0003 #include <ostream>  // for operator<<, endl, ostream, basic_ostream
0004 
0005 JetMap::typ_JetMap DummyJetMapMap;
0006 std::set<Jet::SRC> DummyJetSourceSet;
0007 
0008 void JetMap::identify(std::ostream& os) const
0009 {
0010   os << "JetMap" << std::endl;
0011   return;
0012 }
0013 
0014 JetMap::ConstSrcIter JetMap::begin_src() const
0015 {
0016   return DummyJetSourceSet.end();
0017 }
0018 
0019 JetMap::ConstSrcIter JetMap::find_src(Jet::SRC /*src*/) const
0020 {
0021   return DummyJetSourceSet.end();
0022 }
0023 
0024 JetMap::ConstSrcIter JetMap::end_src() const
0025 {
0026   return DummyJetSourceSet.end();
0027 }
0028 
0029 JetMap::SrcIter JetMap::begin_src()
0030 {
0031   return DummyJetSourceSet.end();
0032 }
0033 
0034 JetMap::SrcIter JetMap::find_src(Jet::SRC /*src*/)
0035 {
0036   return DummyJetSourceSet.end();
0037 }
0038 
0039 JetMap::SrcIter JetMap::end_src()
0040 {
0041   return DummyJetSourceSet.end();
0042 }
0043 
0044 JetMap::ConstIter JetMap::begin() const
0045 {
0046   return DummyJetMapMap.end();
0047 }
0048 
0049 JetMap::ConstIter JetMap::find(unsigned int /*idkey*/) const
0050 {
0051   return DummyJetMapMap.end();
0052 }
0053 
0054 JetMap::ConstIter JetMap::end() const
0055 {
0056   return DummyJetMapMap.end();
0057 }
0058 
0059 JetMap::Iter JetMap::begin()
0060 {
0061   return DummyJetMapMap.end();
0062 }
0063 
0064 JetMap::Iter JetMap::find(unsigned int /*idkey*/)
0065 {
0066   return DummyJetMapMap.end();
0067 }
0068 
0069 JetMap::Iter JetMap::end()
0070 {
0071   return DummyJetMapMap.end();
0072 }