Member Site Forums Rosetta++ Rosetta++ – General question about file: cluster_info_silent Reply To: question about file: cluster_info_silent

#4462
Anonymous

    I had the same error, but I got around it in rmsfit_ and fit_rmsfit_ by converting npoints into a simple non-pointer integer argument, i.e.

    rms2.c
    ^double rmsfit_(npoints, xx, yy)

    integer __npoints__;
    double *xx, *yy;

    . . .

    if ( __npoints __ > 5000)

    . . .

    ret_val = rms2_( &npoints , &xx[4], &yy[4], xx_0__, yy_0__, &det);
    return ret_val;
    /* rmsfit_ */^

    and

    cluster_info_silent.c
    ^ . . .

    r = (float) rmsfit_( __numPositions__ , coords[f1]+3*start, coords[f2]+3*start);

    . . .
    ^