#include "CifBuilder.h"
char ** CifBuilder::GetCategoryCategoryGroups(const char *
categoryId,
uWord & n);
#include "CifBuilder.h"
CifBuilder cb("mmCif96.psf");
cb.BuildDictionaryList();
cb.SetContext("cifdic.m96");
uWord numGroups = 0;
char ** categoryGroups = cb.GetCategoryCategoryGroups("atom_site",
numGroups);
GetCategoryCategoryGroups returns an array of category group names to which the category categoryId belongs.
categoryId | the name of the category |
n | a reference to a uWord to hold the number of category groups |
Returns the category group names as a char ** or NULL. The number of category groups will be passed back via the second argument.
None |