Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:24:07

0001 #include "TMVA/PyMethodBase.h"
0002 #include <iostream>
0003 
0004 void test_PyMVA()
0005 {
0006   TMVA::PyMethodBase::PyInitialize();
0007   std::cout<<"TMVA::PyMethodBase::PyInitialize(): OK"<<std::endl;
0008   return;
0009 }
0010 
0011 int main( int argc, char** argv )
0012 {
0013   test_PyMVA();
0014   return 0;
0015 }