Chainsaw / scripts /stride /p_compnd.c
wuxing0105's picture
Upload folder using huggingface_hub
80a72c3 verified
Raw
History Blame Contribute Delete
236 Bytes
#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);
}