mirror of
https://github.com/arcan1s/moldyn.git
synced 2025-07-13 05:45:51 +00:00
added structure to all functions of library
This commit is contained in:
@ -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 */
|
||||
|
Reference in New Issue
Block a user