Skip to content
Snippets Groups Projects
Commit e42cfd79 authored by Danilo Piparo's avatar Danilo Piparo
Browse files

[Math] Remove dead code in stressMathCore

parent fceb3b3c
No related branches found
No related tags found
No related merge requests found
......@@ -1488,10 +1488,6 @@ int testCompositeObj(int ngen) {
std::cout << "\tTest of a Composite Object (containing Vector's and Matrices)\n";
std::cout <<"******************************************************************************\n";
#ifndef USE_REFLEX
std::cout << "Test Using CINT library\n\n";
// put path relative to LD_LIBRARY_PATH
......@@ -1509,26 +1505,7 @@ int testCompositeObj(int ngen) {
return iret;
}
}
#else
std::cout << "Test Using Reflex library\n\n";
#ifdef DEBUG
ROOT::Cintex::Cintex::SetDebug(1);
#endif
ROOT::Cintex::Cintex::Enable();
iret = gSystem->Load("../test/libTrackMathCoreRflx");
if (iret < 0) {
// if not assume running from top ROOT dir (case of roottest)
iret = gSystem->Load("test/libTrackMathCoreRflx");
if (iret < 0) {
std::cerr <<"Error Loading libTrackMathCoreRflx" << std::endl;
return iret;
}
}
#endif
iret = 0;
iret |= testTrack<TrackD>(ngen);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment