示例#1
0
文件: clip_io.c 项目: LabShare/IMOD
/* Call both the input and the output option routines and copy header labels */
int set_options(ClipOptions *opt, MrcHeader *hin, MrcHeader *hout)
{
  int z;
  set_input_options(opt, hin);
  z = set_output_options(opt,hout);
  mrc_head_label_cp(hin, hout);
  return z;
}
示例#2
0
/*!
 * Transfers labels from unit [iunit] to [intoUnit]. Fortran wrappers iiuTransLabels and
 * itrlab.
 */
void iiuTransLabels(int intoUnit, int iunit)
{
  MrcHeader *ihdr = iiuMrcHeader(iunit, "iiuTransLabels", 1, 0);
  MrcHeader *jhdr = iiuMrcHeader(intoUnit, "iiuTransLabels", 1, 0);
  mrc_head_label_cp(ihdr, jhdr);
}