/tomo/pyhst

To get this branch, use:
bzr branch http://darksoft.org/webbzr/tomo/pyhst

« back to all changes in this revision

Viewing changes to hst.h

  • Committer: Suren A. Chilingaryan
  • Date: 2012-05-12 04:35:03 UTC
  • Revision ID: csa@dside.dyndns.org-20120512043503-0r5iv65q8hkvhmmj
Support fast writter

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#ifndef _PYHST_H
21
21
#define _PYHST_H
22
22
 
 
23
#ifdef HST_USE_FASTWRITER
 
24
# include <fastwriter.h>
 
25
#endif /* HST_USE_FASTWRITER */
 
26
 
23
27
#include "hst_setup.h"
24
28
#include "hst_reconstructor.h"
25
29
 
49
53
 
50
54
int hst_set_filter(HSTContextPtr ctx, HSTFilterFunction func, void *func_param);
51
55
int hst_set_output_file(HSTContextPtr ctx, FILE *output);
 
56
#ifdef HST_USE_FASTWRITER
 
57
int hst_set_fastwriter(HSTContextPtr ctx, fastwriter_t *output);
 
58
#endif /* HST_USE_FASTWRITER */
52
59
int hst_set_padding(HSTContextPtr ctx, int zero_padding);
53
60
int hst_set_axis_mode(HSTContextPtr ctx, int axis_to_the_center);
54
61