SFrame 3.6
core/src/SCycleBaseBase.cxx
Go to the documentation of this file.
00001 // $Id: SCycleBaseBase.cxx 318 2012-06-22 16:32:42Z krasznaa $
00002 /***************************************************************************
00003  * @Project: SFrame - ROOT-based analysis framework for ATLAS
00004  * @Package: Core
00005  *
00006  * @author Stefan Ask       <Stefan.Ask@cern.ch>           - Manchester
00007  * @author David Berge      <David.Berge@cern.ch>          - CERN
00008  * @author Johannes Haller  <Johannes.Haller@cern.ch>      - Hamburg
00009  * @author A. Krasznahorkay <Attila.Krasznahorkay@cern.ch> - CERN/Debrecen
00010  *
00011  ***************************************************************************/
00012 
00013 // Local include(s):
00014 #include "../include/SCycleBaseBase.h"
00015 
00016 #ifndef DOXYGEN_IGNORE
00017 ClassImp( SCycleBaseBase )
00018 #endif // DOXYGEN_IGNORE
00019 
00024 SCycleBaseBase::SCycleBaseBase()
00025    : m_logger( "NameNotSet" ) {
00026 
00027    REPORT_VERBOSE( "SCycleBaseBase constructed" );
00028 }
00029 
00041 void SCycleBaseBase::SetLogName( const char* name ) {
00042 
00043    m_logger.SetSource( name );
00044    return;
00045 }