stride/p_compnd.c

16 lines
236 B
C
Raw Normal View History

2013-09-18 14:12:31 +00:00
#include "stride.h"
int Process_COMPND(BUFFER Buffer, enum METHOD *Method)
{
if( strstr(Buffer,"NMR") )
*Method = NMR;
if( strstr(Buffer,"MODEL") )
if( *Method == XRay )
*Method = Model;
return(SUCCESS);
}