--- trunk/simBASS/simBASS.cpp 2002/11/26 21:02:28 187 +++ trunk/simBASS/simBASS.cpp 2003/01/28 20:36:14 251 @@ -38,6 +38,7 @@ int main(int argc,char* argv[]){ // first things first, all of the initializations + printf("Initializing stuff ....\n"); srand48( 1337 ); // the random number generator. initSimError(); // the error handler @@ -51,9 +52,9 @@ int main(int argc,char* argv[]){ in_name = argv[1]; - entry_plug = new SimInfo; + entry_plug = new SimInfo(); - startMe = new SimSetup; + startMe = new SimSetup(); startMe->setSimInfo( entry_plug ); startMe->parseFile( in_name ); startMe->createSim();