00001 // @(#)root/tmva $Id: IFitterTarget.cxx 23334 2008-04-19 18:38:57Z brun $ 00002 // Author: Andreas Hoecker, Peter Speckmayer 00003 00004 /********************************************************************************** 00005 * Project: TMVA - a Root-integrated toolkit for multivariate data analysis * 00006 * Package: TMVA * 00007 * Class : IFitterTarget * 00008 * Web : http://tmva.sourceforge.net * 00009 * * 00010 * Description: * 00011 * Implementation * 00012 * * 00013 * Authors (alphabetical): * 00014 * Andreas Hoecker <Andreas.Hocker@cern.ch> - CERN, Switzerland * 00015 * Peter Speckmayer <speckmay@mail.cern.ch> - CERN, Switzerland * 00016 * * 00017 * Copyright (c) 2005: * 00018 * CERN, Switzerland * 00019 * MPI-K Heidelberg, Germany * 00020 * * 00021 * Redistribution and use in source and binary forms, with or without * 00022 * modification, are permitted according to the terms listed in LICENSE * 00023 * (http://tmva.sourceforge.net/LICENSE) * 00024 **********************************************************************************/ 00025 00026 //_______________________________________________________________________ 00027 // 00028 // IFitterTarget 00029 // 00030 // Interface for a fitter 'target'. Defines interface to the estimator 00031 // function 00032 // 00033 //_______________________________________________________________________ 00034 00035 #include "TMVA/IFitterTarget.h" 00036 00037 ClassImp(TMVA::IFitterTarget) 00038 00039 //_______________________________________________________________________ 00040 TMVA::IFitterTarget::IFitterTarget() 00041 { 00042 // constructor 00043 } 00044