Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-10-04 22:54:57

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