Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:12:32

0001 {
0002 //NOTE: this test causes the macro to abort since
0003 // edmtest is unknown at this point
0004 //if( TClass::GetClass("std::vector<edmtest::Thing>") ) {
0005 //   cout <<"class already exists!"<<endl;
0006 //   exit(0);
0007 //}
0008 //cout <<"class not present yet"<<endl;
0009 gSystem->Load("libFWCoreFWLite");
0010 FWLiteEnabler::enable();
0011 if( !TClass::GetClass("std::vector<edmtest::Thing>") ) {
0012    cout <<"class still missing"<<endl;
0013    exit(1);
0014 }
0015 cout <<"class loaded"<<endl;
0016 exit(0);
0017 }