printf("Hello world from processor %s, rank %d out of %d processors and %d threads per rank\n", processor_name, world_rank, world_size, numthreads); fflush(stdout);
#ifdef __WITH_MPI
MPI_Barrier(MPI_COMM_WORLD);
#endif
int verbose = (world_rank == 0);
//
if (verbose) printf("Lenstool-HPC\n\n");
//
double wallclock = myseconds();
if (world_rank == 0) printf("Reading parameter file at time %f s...\n", myseconds() - wallclock);