00001 #ifndef JetReclustering_EffectiveRTool_H 00002 #define JetReclustering_EffectiveRTool_H 00003 00010 00011 #include "JetRec/JetModifierBase.h" 00012 00013 class EffectiveRTool : public JetModifierBase { 00014 public: 00015 ASG_TOOL_CLASS(EffectiveRTool, IJetModifier) 00016 // Constructor from tool name. 00017 EffectiveRTool(std::string myname); 00018 00019 // Inherited method to modify a jet. 00020 // Calls width and puts the result on the jet. 00021 virtual int modifyJet(xAOD::Jet& jet) const; 00022 00023 private: 00024 }; 00025 00026 #endif