00001 // -*- C++ -*- 00002 #include "Rivet/Rivet.hh" 00003 #include "Rivet/Tools/Logging.hh" 00004 #include "Rivet/Projections/JetAlg.hh" 00005 00006 namespace Rivet { 00007 00008 00009 JetAlg::JetAlg(const FinalState& fs) 00010 : _useInvisibles(false) 00011 { 00012 setName("JetAlg"); 00013 addProjection(fs, "FS"); 00014 VisibleFinalState vfs(fs); 00015 MSG_DEBUG("Making visible final state from provided FS"); 00016 addProjection(vfs, "VFS"); 00017 } 00018 00019 00020 }