#include #include #include "jobParams.h" //#include "myAlg.h" #include "LMDAlg.h" using namespace std; int main(int argc, char** argv){ // read jobParams jobParams params(argc,argv); // myAlg* topAlg = new myAlg(); LMDAlg* topAlg = new LMDAlg(); if (!topAlg->initialize(params)) { std::cout << "*** Error: Failed to init " << std::endl; delete topAlg; abort(); } if (!topAlg->execute()) { std::cout <<"***Error: failed to execute " << std::endl; delete topAlg; abort(); } if (!topAlg->finalize()){ std::cout << "*** Error: failed to finalize" <