{
static bool first = true;
if ( first ) {
first = false;
#if ROOT_VERSION_CODE < ROOT_VERSION(5,99,0)
gSystem->Load("libCintex");
gROOT->ProcessLine("Cintex::Cintex::Enable()");
gROOT->ProcessLine("#include <vector>");
gInterpreter->EnableAutoLoading();
gInterpreter->AutoLoad("DataObject");
gInterpreter->AutoLoad("PoolDbLinkManager");
gSystem->Load("libGaudiKernelDict");
gSystem->Load("libGaudiExamplesDict");
#else
gInterpreter->EnableAutoLoading();
gInterpreter->AutoLoad("DataObject");
gInterpreter->AutoLoad("PoolDbLinkManager");
#endif
bool b1 = makeStreamer<SmartRefBase>(
s);
bool b2 = makeStreamer<ContainedObject>(
s);
bool b3 = makeStreamer<pool::Token>(
s);
return b1 && b2 && b3;
}
return true;
}