mirror of
https://github.com/arcan1s/moldyn.git
synced 2025-07-16 23:30:00 +00:00
about.dox move to main.c
This commit is contained in:
@ -1,63 +0,0 @@
|
|||||||
/*!
|
|
||||||
* @mainpage agl
|
|
||||||
* @image latex ./logo.png
|
|
||||||
*
|
|
||||||
* @section intro_sec Introduction
|
|
||||||
*
|
|
||||||
* <b>About this program</b>:
|
|
||||||
* <ul>
|
|
||||||
* <li>Program that creates PDB file with chosen aglomerate
|
|
||||||
* </ul>
|
|
||||||
*
|
|
||||||
* <b>Developer</b>:
|
|
||||||
* <ul>
|
|
||||||
* <li>Evgeniy Alekseev aka arcanis <pre><esalexeev (at) gmail (dot) com></pre>
|
|
||||||
*</ul>
|
|
||||||
* <b>License</b>:
|
|
||||||
* <ul>
|
|
||||||
* <li>GPL
|
|
||||||
* </ul>
|
|
||||||
*
|
|
||||||
* @section How-To-Use How to use
|
|
||||||
* Usage:
|
|
||||||
* <pre>
|
|
||||||
* agl -a FILENAME -i FILENAME -c X,Y,Z -o FILEMANE [ -l LOGFILE] [ -q ] [ -h ]
|
|
||||||
*
|
|
||||||
* Parametrs:
|
|
||||||
* -a - input file with aglomerates (in format statgen)
|
|
||||||
* -i - input file with coordinates
|
|
||||||
* -c - cell size (float), A
|
|
||||||
* -o - output file with coordinates
|
|
||||||
* -l - log enable
|
|
||||||
* -q - quiet enable
|
|
||||||
* -h - show this help and exit
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
* @page Install
|
|
||||||
*
|
|
||||||
* @section Requirements Requirements
|
|
||||||
* The application statgen requires the following external stuff:
|
|
||||||
* - cmake >= 2.8
|
|
||||||
* - gcc >= 4.8
|
|
||||||
*
|
|
||||||
* @section How-To How to install
|
|
||||||
*
|
|
||||||
* @subsection Linux Linux
|
|
||||||
* @code
|
|
||||||
* mkdir build && cd build
|
|
||||||
* cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release ../
|
|
||||||
* make
|
|
||||||
* make install
|
|
||||||
* @endcode
|
|
||||||
*
|
|
||||||
* @subsection Windows Windows
|
|
||||||
* @code
|
|
||||||
* create project file using 'cmake'
|
|
||||||
* compile project
|
|
||||||
* @endcode
|
|
||||||
* You may also download compiled executable file for Win_x86.
|
|
||||||
*
|
|
||||||
* @page Changelog
|
|
||||||
* V.1.0.1 (2013-07-27)
|
|
||||||
* * initial release
|
|
||||||
*/
|
|
@ -1,6 +1,69 @@
|
|||||||
/**
|
/**
|
||||||
* @file
|
* @file
|
||||||
*/
|
*/
|
||||||
|
/**
|
||||||
|
* @mainpage agl
|
||||||
|
* @image latex ./logo.png
|
||||||
|
*
|
||||||
|
* @section intro_sec Introduction
|
||||||
|
*
|
||||||
|
* <b>About this program</b>:
|
||||||
|
* <ul>
|
||||||
|
* <li>Program that creates PDB file with chosen aglomerate
|
||||||
|
* </ul>
|
||||||
|
*
|
||||||
|
* <b>Developer</b>:
|
||||||
|
* <ul>
|
||||||
|
* <li>Evgeniy Alekseev aka arcanis <pre><esalexeev (at) gmail (dot) com></pre>
|
||||||
|
*</ul>
|
||||||
|
* <b>License</b>:
|
||||||
|
* <ul>
|
||||||
|
* <li>GPL
|
||||||
|
* </ul>
|
||||||
|
*
|
||||||
|
* @section How-To-Use How to use
|
||||||
|
* Usage:
|
||||||
|
* <pre>
|
||||||
|
* agl -a FILENAME -i FILENAME -c X,Y,Z -o FILEMANE [ -l LOGFILE] [ -q ] [ -h ]
|
||||||
|
*
|
||||||
|
* Parametrs:
|
||||||
|
* -a - input file with aglomerates (in format statgen)
|
||||||
|
* -i - input file with coordinates
|
||||||
|
* -c - cell size (float), A
|
||||||
|
* -o - output file with coordinates
|
||||||
|
* -l - log enable
|
||||||
|
* -q - quiet enable
|
||||||
|
* -h - show this help and exit
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
* @page Install
|
||||||
|
*
|
||||||
|
* @section Requirements Requirements
|
||||||
|
* The application statgen requires the following external stuff:
|
||||||
|
* - cmake >= 2.8
|
||||||
|
* - gcc >= 4.8
|
||||||
|
*
|
||||||
|
* @section How-To How to install
|
||||||
|
*
|
||||||
|
* @subsection Linux Linux
|
||||||
|
* @code
|
||||||
|
* mkdir build && cd build
|
||||||
|
* cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release ../
|
||||||
|
* make
|
||||||
|
* make install
|
||||||
|
* @endcode
|
||||||
|
*
|
||||||
|
* @subsection Windows Windows
|
||||||
|
* @code
|
||||||
|
* create project file using 'cmake'
|
||||||
|
* compile project
|
||||||
|
* @endcode
|
||||||
|
* You may also download compiled executable file for Win_x86.
|
||||||
|
*
|
||||||
|
* @page Changelog
|
||||||
|
* V.1.0.1 (2013-07-27)
|
||||||
|
* * initial release
|
||||||
|
*/
|
||||||
|
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
@ -1,65 +0,0 @@
|
|||||||
/*!
|
|
||||||
* @mainpage envir
|
|
||||||
* @image latex ./logo.png
|
|
||||||
*
|
|
||||||
* @section intro_sec Introduction
|
|
||||||
*
|
|
||||||
* <b>About this program</b>:
|
|
||||||
* <ul>
|
|
||||||
* <li>Program that searchs environment for chosen molecule by geometric criterion
|
|
||||||
* </ul>
|
|
||||||
*
|
|
||||||
* <b>Developer</b>:
|
|
||||||
* <ul>
|
|
||||||
* <li>Evgeniy Alekseev aka arcanis <pre><esalexeev (at) gmail (dot) com></pre>
|
|
||||||
*</ul>
|
|
||||||
* <b>License</b>:
|
|
||||||
* <ul>
|
|
||||||
* <li>GPL
|
|
||||||
* </ul>
|
|
||||||
*
|
|
||||||
* @section How-To-Use How to use
|
|
||||||
* Usage:
|
|
||||||
* <pre>
|
|
||||||
* envir -i FILENAME -c X,Y,Z -o FILEMANE [ -n NUM_OF_MOLECULE ] [ -r RADIUS ]
|
|
||||||
* [ -l LOGFILE] [ -q ] [ -h ]
|
|
||||||
*
|
|
||||||
* Parametrs:
|
|
||||||
* -i - input file with coordinates
|
|
||||||
* -c - cell size (float), A
|
|
||||||
* -o - output file with coordinates
|
|
||||||
* -n - number of molecule for search (integer). Default is 1
|
|
||||||
* -r - radius of environment (float). Default is 6.0
|
|
||||||
* -l - log enable
|
|
||||||
* -q - quiet enable
|
|
||||||
* -h - show this help and exit
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
* @page Install
|
|
||||||
*
|
|
||||||
* @section Requirements Requirements
|
|
||||||
* The application statgen requires the following external stuff:
|
|
||||||
* - cmake >= 2.8
|
|
||||||
* - gcc >= 4.8
|
|
||||||
*
|
|
||||||
* @section How-To How to install
|
|
||||||
*
|
|
||||||
* @subsection Linux Linux
|
|
||||||
* @code
|
|
||||||
* mkdir build && cd build
|
|
||||||
* cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release ../
|
|
||||||
* make
|
|
||||||
* make install
|
|
||||||
* @endcode
|
|
||||||
*
|
|
||||||
* @subsection Windows Windows
|
|
||||||
* @code
|
|
||||||
* create project file using 'cmake'
|
|
||||||
* compile project
|
|
||||||
* @endcode
|
|
||||||
* You may also download compiled executable file for Win_x86.
|
|
||||||
*
|
|
||||||
* @page Changelog
|
|
||||||
* V.1.0.1 (2013-07-27)
|
|
||||||
* * initial release
|
|
||||||
*/
|
|
@ -1,6 +1,71 @@
|
|||||||
/**
|
/**
|
||||||
* @file
|
* @file
|
||||||
*/
|
*/
|
||||||
|
/**
|
||||||
|
* @mainpage envir
|
||||||
|
* @image latex ./logo.png
|
||||||
|
*
|
||||||
|
* @section intro_sec Introduction
|
||||||
|
*
|
||||||
|
* <b>About this program</b>:
|
||||||
|
* <ul>
|
||||||
|
* <li>Program that searchs environment for chosen molecule by geometric criterion
|
||||||
|
* </ul>
|
||||||
|
*
|
||||||
|
* <b>Developer</b>:
|
||||||
|
* <ul>
|
||||||
|
* <li>Evgeniy Alekseev aka arcanis <pre><esalexeev (at) gmail (dot) com></pre>
|
||||||
|
*</ul>
|
||||||
|
* <b>License</b>:
|
||||||
|
* <ul>
|
||||||
|
* <li>GPL
|
||||||
|
* </ul>
|
||||||
|
*
|
||||||
|
* @section How-To-Use How to use
|
||||||
|
* Usage:
|
||||||
|
* <pre>
|
||||||
|
* envir -i FILENAME -c X,Y,Z -o FILEMANE [ -n NUM_OF_MOLECULE ] [ -r RADIUS ]
|
||||||
|
* [ -l LOGFILE] [ -q ] [ -h ]
|
||||||
|
*
|
||||||
|
* Parametrs:
|
||||||
|
* -i - input file with coordinates
|
||||||
|
* -c - cell size (float), A
|
||||||
|
* -o - output file with coordinates
|
||||||
|
* -n - number of molecule for search (integer). Default is 1
|
||||||
|
* -r - radius of environment (float). Default is 6.0
|
||||||
|
* -l - log enable
|
||||||
|
* -q - quiet enable
|
||||||
|
* -h - show this help and exit
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
* @page Install
|
||||||
|
*
|
||||||
|
* @section Requirements Requirements
|
||||||
|
* The application statgen requires the following external stuff:
|
||||||
|
* - cmake >= 2.8
|
||||||
|
* - gcc >= 4.8
|
||||||
|
*
|
||||||
|
* @section How-To How to install
|
||||||
|
*
|
||||||
|
* @subsection Linux Linux
|
||||||
|
* @code
|
||||||
|
* mkdir build && cd build
|
||||||
|
* cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release ../
|
||||||
|
* make
|
||||||
|
* make install
|
||||||
|
* @endcode
|
||||||
|
*
|
||||||
|
* @subsection Windows Windows
|
||||||
|
* @code
|
||||||
|
* create project file using 'cmake'
|
||||||
|
* compile project
|
||||||
|
* @endcode
|
||||||
|
* You may also download compiled executable file for Win_x86.
|
||||||
|
*
|
||||||
|
* @page Changelog
|
||||||
|
* V.1.0.1 (2013-07-27)
|
||||||
|
* * initial release
|
||||||
|
*/
|
||||||
|
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
@ -1,68 +0,0 @@
|
|||||||
/*!
|
|
||||||
* @mainpage statgen
|
|
||||||
* @image latex ./logo.png
|
|
||||||
*
|
|
||||||
* @section intro_sec Introduction
|
|
||||||
*
|
|
||||||
* <b>About this program</b>:
|
|
||||||
* <ul>
|
|
||||||
* <li>Program that analyzes molecular dynamic trajectories using topological analysis
|
|
||||||
* </ul>
|
|
||||||
*
|
|
||||||
* <b>Developer</b>:
|
|
||||||
* <ul>
|
|
||||||
* <li>Evgeniy Alekseev aka arcanis <pre><esalexeev (at) gmail (dot) com></pre>
|
|
||||||
*</ul>
|
|
||||||
* <b>License</b>:
|
|
||||||
* <ul>
|
|
||||||
* <li>GPL
|
|
||||||
* </ul>
|
|
||||||
*
|
|
||||||
* @section How-To-Use How to use
|
|
||||||
* Usage:
|
|
||||||
* <pre>
|
|
||||||
* statgen -i INPUT -s FIRST,LAST -c X,Y,Z -a ... -r ... -o OUTPUT [ -g DEPTH ]
|
|
||||||
* [ -l LOGFILE ] [ -q ] [ -h ]
|
|
||||||
*
|
|
||||||
* Parametrs:
|
|
||||||
* -i - mask of input files
|
|
||||||
* -s - trajectory steps (integer)
|
|
||||||
* -c - cell size (float), A
|
|
||||||
* -a - atom types (integer). Format: 'ATOM1' or 'ATOM1,ATOM2' or etc
|
|
||||||
* -r - criteria (float), A. Format: '0-0:2.4,0-1:3.0' means 0-0-interaction
|
|
||||||
* (<2.4 A) and 0-1 (<3.0) are needed. This flag can be used multiple times
|
|
||||||
* -o - output file name
|
|
||||||
* -g - check graph isomorphism. DEPTH is max depth for check cycles (>= 3)
|
|
||||||
* -l - log enable
|
|
||||||
* -q - quiet enable
|
|
||||||
* -h - show this help and exit
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
* @page Install
|
|
||||||
*
|
|
||||||
* @section Requirements Requirements
|
|
||||||
* The application statgen requires the following external stuff:
|
|
||||||
* - cmake >= 2.8
|
|
||||||
* - gcc >= 4.8
|
|
||||||
*
|
|
||||||
* @section How-To How to install
|
|
||||||
*
|
|
||||||
* @subsection Linux Linux
|
|
||||||
* @code
|
|
||||||
* mkdir build && cd build
|
|
||||||
* cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release ../
|
|
||||||
* make
|
|
||||||
* make install
|
|
||||||
* @endcode
|
|
||||||
*
|
|
||||||
* @subsection Windows Windows
|
|
||||||
* @code
|
|
||||||
* create project file using 'cmake'
|
|
||||||
* compile project
|
|
||||||
* @endcode
|
|
||||||
* You may also download compiled executable file for Win_x86.
|
|
||||||
*
|
|
||||||
* @page Changelog
|
|
||||||
* V.1.0.1 (2013-07-27)
|
|
||||||
* * initial release
|
|
||||||
*/
|
|
@ -1,6 +1,74 @@
|
|||||||
/**
|
/**
|
||||||
* @file
|
* @file
|
||||||
*/
|
*/
|
||||||
|
/**
|
||||||
|
* @mainpage statgen
|
||||||
|
* @image latex ./logo.png
|
||||||
|
*
|
||||||
|
* @section intro_sec Introduction
|
||||||
|
*
|
||||||
|
* <b>About this program</b>:
|
||||||
|
* <ul>
|
||||||
|
* <li>Program that analyzes molecular dynamic trajectories using topological analysis
|
||||||
|
* </ul>
|
||||||
|
*
|
||||||
|
* <b>Developer</b>:
|
||||||
|
* <ul>
|
||||||
|
* <li>Evgeniy Alekseev aka arcanis <pre><esalexeev (at) gmail (dot) com></pre>
|
||||||
|
*</ul>
|
||||||
|
* <b>License</b>:
|
||||||
|
* <ul>
|
||||||
|
* <li>GPL
|
||||||
|
* </ul>
|
||||||
|
*
|
||||||
|
* @section How-To-Use How to use
|
||||||
|
* Usage:
|
||||||
|
* <pre>
|
||||||
|
* statgen -i INPUT -s FIRST,LAST -c X,Y,Z -a ... -r ... -o OUTPUT [ -g DEPTH ]
|
||||||
|
* [ -l LOGFILE ] [ -q ] [ -h ]
|
||||||
|
*
|
||||||
|
* Parametrs:
|
||||||
|
* -i - mask of input files
|
||||||
|
* -s - trajectory steps (integer)
|
||||||
|
* -c - cell size (float), A
|
||||||
|
* -a - atom types (integer). Format: 'ATOM1' or 'ATOM1,ATOM2' or etc
|
||||||
|
* -r - criteria (float), A. Format: '0-0:2.4,0-1:3.0' means 0-0-interaction
|
||||||
|
* (<2.4 A) and 0-1 (<3.0) are needed. This flag can be used multiple times
|
||||||
|
* -o - output file name
|
||||||
|
* -g - check graph isomorphism. DEPTH is max depth for check cycles (>= 3)
|
||||||
|
* -l - log enable
|
||||||
|
* -q - quiet enable
|
||||||
|
* -h - show this help and exit
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
* @page Install
|
||||||
|
*
|
||||||
|
* @section Requirements Requirements
|
||||||
|
* The application statgen requires the following external stuff:
|
||||||
|
* - cmake >= 2.8
|
||||||
|
* - gcc >= 4.8
|
||||||
|
*
|
||||||
|
* @section How-To How to install
|
||||||
|
*
|
||||||
|
* @subsection Linux Linux
|
||||||
|
* @code
|
||||||
|
* mkdir build && cd build
|
||||||
|
* cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release ../
|
||||||
|
* make
|
||||||
|
* make install
|
||||||
|
* @endcode
|
||||||
|
*
|
||||||
|
* @subsection Windows Windows
|
||||||
|
* @code
|
||||||
|
* create project file using 'cmake'
|
||||||
|
* compile project
|
||||||
|
* @endcode
|
||||||
|
* You may also download compiled executable file for Win_x86.
|
||||||
|
*
|
||||||
|
* @page Changelog
|
||||||
|
* V.1.0.1 (2013-07-27)
|
||||||
|
* * initial release
|
||||||
|
*/
|
||||||
|
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
Reference in New Issue
Block a user