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