Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:23:37

0001 #ifndef PhysicsTools_MVAComputer_mva_computer_define_plugin_h
0002 #define PhysicsTools_MVAComputer_mva_computer_define_plugin_h
0003 // -*- C++ -*-
0004 //
0005 // Package:     MVAComputer
0006 // Class  :     mva_computer_define_plugin
0007 //
0008 /**\class mva_computer_define_plugin mva_computer_define_plugin.h PhysicsTools/MVAComputer/interface/mva_computer_define_plugin.h
0009 
0010  Description: A macro to instantiate a MVA Computer
0011 
0012  Usage:
0013     <usage>
0014 
0015 */
0016 //
0017 // Original Author:  Chris Jones
0018 //         Created:  Tue Jan 22 10:03:47 CST 2013
0019 //
0020 
0021 // system include files
0022 
0023 // user include files
0024 #include "PhysicsTools/MVAComputer/interface/VarProcessor.h"
0025 #include "FWCore/PluginManager/interface/PluginFactory.h"
0026 
0027 #define MVA_COMPUTER_DEFINE_PLUGIN(T)                                                              \
0028   DEFINE_EDM_PLUGIN(edmplugin::PluginFactory<PhysicsTools::VarProcessor::PluginFunctionPrototype>, \
0029                     PhysicsTools::VarProcessor::Dummy,                                             \
0030                     "VarProcessor/" #T)
0031 
0032 #endif