added structure to all functions of library

This commit is contained in:
arcan1s
2014-01-28 03:11:30 +04:00
parent 38eb392e32
commit d88f3b317f
44 changed files with 945 additions and 819 deletions

View File

@ -2,14 +2,31 @@
* @file
*/
#ifndef PRINT_STRUCTURE_H
#define PRINT_STRUCTURE_H
#ifndef PRINT_STRUCT_H
#define PRINT_STRUCT_H
#include <mathmech/var_types.h>
/**
* @fn print_structure
*/
int print_structure (const char *output, const int num_needed_mol, const int *needed_mol,
const system_info _system_info, const atom_info *_atom_info);
/**
* @brief function that prints structure to pdb file
* @code
* print_structure (output, num_needed_mol, needed_mol, _system_info, _atom_info);
* @endcode
*
* @param output output file name
* @param num_needed_mol number of needed molecules
* @param needed_mol massive of number of needed molecules
* @param _system_info system information structure
* @param _atom_info atom information structure
*
* @return 0 - exit without errors
*/
int print_structure (const char *, const int, const int *, const int, const int *,
const char *, const float *);
#endif /* PRINT_STRUCTURE_H */
#endif /* PRINT_STRUCT_H */