JetAlg.cc

Go to the documentation of this file.
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     setName("JetAlg");
00011     VisibleFinalState vfs(fs);
00012     getLog() << Log::DEBUG << "Making visible final state from provided FS" << endl;
00013     addProjection(vfs, "FS");
00014   }
00015 
00016 
00017 }