00001 // $Id: HistoTool.cpp,v 1.3 2006/01/10 19:53:58 hmd Exp $ 00002 // ============================================================================ 00003 // Include files 00004 // ============================================================================ 00005 #include "GaudiKernel/ToolFactory.h" 00006 // ============================================================================ 00007 // local 00008 // ============================================================================ 00009 #include "HistoTool.h" 00010 // ============================================================================ 00011 00019 // ============================================================================ 00020 // Declaration of the Tool Factory 00021 // ============================================================================ 00022 DECLARE_TOOL_FACTORY(HistoTool) 00023 // ============================================================================ 00024 00025 00026 // ============================================================================ 00027 // Standard constructor 00028 // ============================================================================ 00029 HistoTool::HistoTool( const std::string& type, 00030 const std::string& name, 00031 const IInterface* parent ) 00032 : GaudiHistoTool ( type, name , parent ) 00033 { 00034 declareInterface<IHistoTool>(this); 00035 }; 00036 // ============================================================================ 00037 00038 00039 // ============================================================================ 00040 // protected virtual destructor 00041 // ============================================================================ 00042 HistoTool::~HistoTool() {} 00043 // ============================================================================