Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 {
0002 if( TClass::GetClass("edmtest::Thing") ) {
0003    cout <<"class already exists!"<<endl;
0004    exit(0);
0005 }
0006 cout <<"class not present yet"<<endl;
0007 
0008 gSystem->Load("libFWCoreFWLite");
0009 FWLiteEnabler::enable();
0010 if( !TClass::GetClass("edmtest::Thing") ) {
0011    cout <<"class still missing"<<endl;
0012    exit(1);
0013 }
0014 cout <<"class loaded"<<endl;
0015 exit(0);
0016 }