00001 #ifndef jetsubstructuremomenttools_subjetmakertool_header
00002 #define jetsubstructuremomenttools_subjetmakertool_header
00003
00004 #include "JetSubStructureMomentTools/JetSubStructureMomentToolsBase.h"
00005
00006 #include <string>
00007
00008 class SubjetMakerTool :
00009 public JetSubStructureMomentToolsBase {
00010 ASG_TOOL_CLASS(SubjetMakerTool, IJetModifier)
00011
00012 public:
00013
00014 SubjetMakerTool(std::string name);
00015
00016 std::string m_type;
00017 float m_R;
00018 float m_minPt;
00019
00020 int modifyJet(xAOD::Jet &jet) const;
00021 };
00022
00023
00024 #endif