00001 // $Id: TrackExtrapolators_load.cpp,v 1.2 2005/03/16 14:10:05 hernando Exp $ 00002 // Include files 00003 00004 00005 #include "GaudiKernel/DeclareFactoryEntries.h" 00006 00007 // Declare OBJECT / CONVERTER / ALGORITHM / TOOL using the macros DECLARE_xxx 00008 // The statements are like that: 00009 // 00010 // DECLARE_CONVERTER( MyConverter ); 00011 // DECLARE_OBJECT( DataObject ); 00012 // 00013 // They should be inside the 'DECLARE_FACTORY_ENTRIES' body. 00014 00015 DECLARE_FACTORY_ENTRIES(TrackExtrapolators) { 00016 00017 DECLARE_TOOL( TrackLinearExtrapolator ); 00018 DECLARE_TOOL( TrackParabolicExtrapolator ); 00019 DECLARE_TOOL( TrackFastParabolicExtrapolator ); 00020 DECLARE_TOOL( TrackHerabExtrapolator ); 00021 DECLARE_TOOL( TrackFirstCleverExtrapolator ); 00022 00023 }