1
0
mirror of synced 2024-06-05 20:27:58 +02:00
modern-cmake/examples/root-example-dict/CheckLoad.C

12 lines
262 B
C++
Raw Normal View History

2018-03-28 20:50:38 +02:00
{
gSystem->Load("libMyExample");
Simple s;
cout << s.GetX() << endl;
TFile *_file = TFile::Open("tmp.root", "RECREATE");
gDirectory->WriteObject(&s, "MyS");
Simple *MyS = nullptr;
gDirectory->GetObject("MyS", MyS);
cout << MyS->GetX() << endl;
_file->Close();
}