00001 // $Id: GaudiTupleTool.cpp,v 1.6 2005/09/23 16:14:20 hmd Exp $ 00002 // ============================================================================ 00003 // Include files 00004 // ============================================================================ 00005 // GaudiAlg 00006 // ============================================================================ 00007 #include "GaudiAlg/GaudiTupleTool.h" 00008 // ============================================================================ 00009 00010 // ============================================================================ 00011 /* @file GaudiTupleTool.cpp 00012 * 00013 * Implementation file for class : GaudiTupleTool 00014 * 00015 * @author Vanya BELYAEV Ivan.Belyaev@itep.ru 00016 * @author Chris Jones Christopher.Rob.Jones@cern.ch 00017 * @date 2004-06-28 00018 */ 00019 // ============================================================================ 00020 00021 // ============================================================================ 00022 // Force creation of templated class 00023 #include "GaudiAlg/GaudiTuples.icpp" 00024 template class GaudiTuples<GaudiHistoTool> ; 00025 // ============================================================================ 00026 00027 // ============================================================================ 00028 // Standard constructor 00029 // ============================================================================ 00030 GaudiTupleTool::GaudiTupleTool( const std::string& type , 00031 const std::string& name , 00032 const IInterface* parent ) 00033 : GaudiTuples<GaudiHistoTool> ( type , name , parent ) { } 00034 // ============================================================================ 00035 00036 // ============================================================================ 00037 // destructor 00038 // ============================================================================ 00039 GaudiTupleTool::~GaudiTupleTool() { } 00040 // ============================================================================ 00041 00042 // ============================================================================ 00043 // standard initialization method 00044 // ============================================================================ 00045 StatusCode GaudiTupleTool::initialize() 00046 { 00047 // initialize the base class and return 00048 return GaudiTuples<GaudiHistoTool>::initialize(); 00049 } 00050 // ============================================================================ 00051 00052 // ============================================================================ 00053 // standard finalization method 00054 // ============================================================================ 00055 StatusCode GaudiTupleTool::finalize() 00056 { 00057 // finalize the base class and return 00058 return GaudiTuples<GaudiHistoTool>::finalize(); 00059 } 00060 // ============================================================================ 00061 00062 // ============================================================================ 00063 // The END 00064 // ============================================================================ 00065 00066 00067