mirror of
https://github.com/arcan1s/moldyn.git
synced 2025-07-13 13:55:52 +00:00
+ added dependecies
+ added oxygen docs building + added versioning * some optimization
This commit is contained in:
@ -10,6 +10,7 @@ set (PROJECT_VERSION_MAJOR 1)
|
|||||||
set (PROJECT_VERSION_MINOR 2)
|
set (PROJECT_VERSION_MINOR 2)
|
||||||
set (PROJECT_VERSION_PATCH 0)
|
set (PROJECT_VERSION_PATCH 0)
|
||||||
set (PROJECT_VERSION ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH})
|
set (PROJECT_VERSION ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH})
|
||||||
|
configure_file (${CMAKE_SOURCE_DIR}/version.h.in ${CMAKE_CURRENT_BINARY_DIR}/version.h)
|
||||||
|
|
||||||
message (STATUS "Version ${PROJECT_VERSION}")
|
message (STATUS "Version ${PROJECT_VERSION}")
|
||||||
|
|
||||||
@ -25,6 +26,7 @@ set (COMPS mathmech
|
|||||||
set (MM_PREFIX "mm_" CACHE STRING "Prefix for mathmech tools")
|
set (MM_PREFIX "mm_" CACHE STRING "Prefix for mathmech tools")
|
||||||
option (WITH_DEBUG_MODE "Build with debug mode" OFF)
|
option (WITH_DEBUG_MODE "Build with debug mode" OFF)
|
||||||
option (ADD_DOCS "Add documentation" OFF)
|
option (ADD_DOCS "Add documentation" OFF)
|
||||||
|
option (ADD_INCLUDE "Add include files" OFF)
|
||||||
if (CMAKE_SYSTEM_NAME MATCHES Linux)
|
if (CMAKE_SYSTEM_NAME MATCHES Linux)
|
||||||
set (QWT_INCLUDE_PATH "/usr/include" CACHE STRING "Path to qwt include")
|
set (QWT_INCLUDE_PATH "/usr/include" CACHE STRING "Path to qwt include")
|
||||||
set (QWT_LIBRARY_PATH "/usr/lib" CACHE STRING "Path to qwt library")
|
set (QWT_LIBRARY_PATH "/usr/lib" CACHE STRING "Path to qwt library")
|
||||||
@ -33,6 +35,25 @@ elseif (CMAKE_SYSTEM_NAME MATCHES Windows)
|
|||||||
set (QWT_LIBRARY_PATH "C:/Qwt-6.1.0/lib" CACHE STRING "Path to qwt library")
|
set (QWT_LIBRARY_PATH "C:/Qwt-6.1.0/lib" CACHE STRING "Path to qwt library")
|
||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
|
# verbose
|
||||||
|
set (CMAKE_VERBOSE_MAKEFILE ON)
|
||||||
|
|
||||||
|
# flags
|
||||||
|
if ( WITH_DEBUG_MODE )
|
||||||
|
add_definitions ( -DDEBUG_MODE=1 )
|
||||||
|
endif ()
|
||||||
|
if ( CMAKE_COMPILER_IS_GNUCXX )
|
||||||
|
set (ADD_CXX_FLAGS "-Wall")
|
||||||
|
set (CMAKE_CXX_FLAGS "-O0 ${ADD_CXX_FLAGS}")
|
||||||
|
set (CMAKE_CXX_FLAGS_DEBUG "-g -O0")
|
||||||
|
set (CMAKE_CXX_FLAGS_RELEASE "-O3 -DNDEBUG")
|
||||||
|
elseif ( MSVC )
|
||||||
|
set (ADD_CXX_FLAGS "/W4")
|
||||||
|
set (CMAKE_CXX_FLAGS "${ADD_CXX_FLAGS}")
|
||||||
|
else ()
|
||||||
|
message ("Unknown compiler")
|
||||||
|
endif ()
|
||||||
|
|
||||||
# set libraries
|
# set libraries
|
||||||
set (LIBRARIES mm)
|
set (LIBRARIES mm)
|
||||||
foreach (LIBRARY ${LIBRARIES})
|
foreach (LIBRARY ${LIBRARIES})
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
# Maintainer: Evgeniy "arcanis" Alexeev <esalexeev@gmail.com>
|
# Maintainer: Evgeniy "arcanis" Alexeev <esalexeev@gmail.com>
|
||||||
|
|
||||||
pkgname=mathmech
|
pkgname=mathmech
|
||||||
pkgver=1.1.1
|
pkgver=1.2.0
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
pkgdesc="Software package for analysis of molecular dynamics trajectories"
|
pkgdesc="Software package for analysis of molecular dynamics trajectories"
|
||||||
arch=(any)
|
arch=(any)
|
||||||
@ -11,7 +11,7 @@ license=('GPL')
|
|||||||
depends=('qt4' 'qwt')
|
depends=('qt4' 'qwt')
|
||||||
makedepends=('cmake' 'automoc4')
|
makedepends=('cmake' 'automoc4')
|
||||||
source=(https://github.com/arcan1s/moldyn/releases/download/mm-${pkgver}/${pkgname}-${pkgver}-src.zip)
|
source=(https://github.com/arcan1s/moldyn/releases/download/mm-${pkgver}/${pkgname}-${pkgver}-src.zip)
|
||||||
md5sums=('6a7f3dd17ae4ad0498110aaaadea5a2b')
|
md5sums=('e7d983f602fcfd3f390e72ef684fe5e2')
|
||||||
_cmakekeys="-DCMAKE_INSTALL_PREFIX=/usr
|
_cmakekeys="-DCMAKE_INSTALL_PREFIX=/usr
|
||||||
-DQWT_INCLUDE_PATH=/usr/include/qwt
|
-DQWT_INCLUDE_PATH=/usr/include/qwt
|
||||||
-DQWT_LIBRARY_PATH=/usr/lib
|
-DQWT_LIBRARY_PATH=/usr/lib
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
agl - program that creates PDB file with chosen agglomerate
|
agl - program that creates PDB file with chosen agglomerate
|
||||||
Version: 1.2.0
|
|
||||||
License: GPL
|
|
||||||
|
|
||||||
Usage:
|
Usage:
|
||||||
agl -a FILENAME -i FILENAME -c X,Y,Z -o FILEMANE [ -l LOGFILE ] [ -q ] [ -h ]
|
agl -a FILENAME -i FILENAME -c X,Y,Z -o FILEMANE [ -l LOGFILE ] [ -q ] [ -h ]
|
||||||
|
@ -3,26 +3,8 @@ set (SUBPROJECT_BINARY_DIR bin)
|
|||||||
set (SUBPROJECT_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/src)
|
set (SUBPROJECT_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/src)
|
||||||
|
|
||||||
# include_path
|
# include_path
|
||||||
include_directories (${SUBPROJECT_SOURCE_DIR})
|
include_directories (${SUBPROJECT_SOURCE_DIR}
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}/../)
|
||||||
|
|
||||||
# executable path
|
# executable path
|
||||||
set (EXECUTABLE_OUTPUT_PATH ${SUBPROJECT_BINARY_DIR})
|
set (EXECUTABLE_OUTPUT_PATH ${SUBPROJECT_BINARY_DIR})
|
||||||
|
|
||||||
# verbose
|
|
||||||
set (CMAKE_VERBOSE_MAKEFILE ON)
|
|
||||||
|
|
||||||
# flags
|
|
||||||
if ( WITH_DEBUG_MODE )
|
|
||||||
add_definitions ( -DDEBUG_MODE=1 )
|
|
||||||
endif ()
|
|
||||||
if ( CMAKE_COMPILER_IS_GNUCXX )
|
|
||||||
set (ADD_CXX_FLAGS "-Wall")
|
|
||||||
set (CMAKE_CXX_FLAGS "-O0 ${ADD_CXX_FLAGS}")
|
|
||||||
set (CMAKE_CXX_FLAGS_DEBUG "-g -O0")
|
|
||||||
set (CMAKE_CXX_FLAGS_RELEASE "-O3 -DNDEBUG")
|
|
||||||
elseif ( MSVC )
|
|
||||||
set (ADD_CXX_FLAGS "/W4")
|
|
||||||
set (CMAKE_CXX_FLAGS "${ADD_CXX_FLAGS}")
|
|
||||||
else ()
|
|
||||||
message ("Unknown compiler")
|
|
||||||
endif ()
|
|
@ -15,6 +15,7 @@ message (STATUS "${SUBPROJECT} HEADERS: ${HEADERS}")
|
|||||||
|
|
||||||
# link libraries and compile
|
# link libraries and compile
|
||||||
add_executable (${MM_PREFIX}${SUBPROJECT} ${SOURCES} ${HEADERS})
|
add_executable (${MM_PREFIX}${SUBPROJECT} ${SOURCES} ${HEADERS})
|
||||||
|
add_dependencies (${MM_PREFIX}${SUBPROJECT} ${LIBRARIES})
|
||||||
target_link_libraries (${MM_PREFIX}${SUBPROJECT} ${ADDITIONAL_LIB} ${LIBRARIES})
|
target_link_libraries (${MM_PREFIX}${SUBPROJECT} ${ADDITIONAL_LIB} ${LIBRARIES})
|
||||||
|
|
||||||
# install properties
|
# install properties
|
||||||
|
@ -8,6 +8,7 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#include "add_main.h"
|
#include "add_main.h"
|
||||||
|
#include <version.h>
|
||||||
#include <mathmech/coords.h>
|
#include <mathmech/coords.h>
|
||||||
#include <mathmech/messages.h>
|
#include <mathmech/messages.h>
|
||||||
#include <mathmech/print_struct.h>
|
#include <mathmech/print_struct.h>
|
||||||
@ -65,7 +66,7 @@ int main(int argc, char *argv[])
|
|||||||
{
|
{
|
||||||
sprintf (tmp_str, " mm_agl\n");
|
sprintf (tmp_str, " mm_agl\n");
|
||||||
sprintf (tmp_str, "%sProgram for create PDB file with chosen agglomerate\n", tmp_str);
|
sprintf (tmp_str, "%sProgram for create PDB file with chosen agglomerate\n", tmp_str);
|
||||||
sprintf (tmp_str, "%sVersion : 1.2.0 License : GPL\n", tmp_str);
|
sprintf (tmp_str, "%sVersion : %s License : GPL\n", tmp_str, PROJ_VERSION);
|
||||||
sprintf (tmp_str, "%s Evgeniy Alekseev aka arcanis\n", tmp_str);
|
sprintf (tmp_str, "%s Evgeniy Alekseev aka arcanis\n", tmp_str);
|
||||||
sprintf (tmp_str, "%s E-mail : esalexeev@gmail.com\n\n", tmp_str);
|
sprintf (tmp_str, "%s E-mail : esalexeev@gmail.com\n\n", tmp_str);
|
||||||
sprintf (tmp_str, "%sUsage:\n", tmp_str);
|
sprintf (tmp_str, "%sUsage:\n", tmp_str);
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
FILES="docs mathmech mm agl envir radf statgen trj trj2pdb AUTHORS CHANGELOG CMakeLists.txt COPYING docs.cmake INSTALL"
|
FILES="docs mathmech mm agl envir radf statgen trj trj2pdb AUTHORS CHANGELOG CMakeLists.txt COPYING docs.cmake doxygen.conf.in INSTALL version.h.in"
|
||||||
ARCHIVE="mathmech"
|
ARCHIVE="mathmech"
|
||||||
VERSION=`grep -m1 PROJECT_VERSION_MAJOR CMakeLists.txt | awk '{print $3}' | cut -c 1`.\
|
VERSION=`grep -m1 PROJECT_VERSION_MAJOR CMakeLists.txt | awk '{print $3}' | cut -c 1`.\
|
||||||
`grep -m1 PROJECT_VERSION_MINOR CMakeLists.txt | awk '{print $3}' | cut -c 1`.\
|
`grep -m1 PROJECT_VERSION_MINOR CMakeLists.txt | awk '{print $3}' | cut -c 1`.\
|
||||||
|
@ -1,3 +1,14 @@
|
|||||||
# set directory
|
# standart documentation
|
||||||
set (PROJECT_DOCS_DIR ${CMAKE_CURRENT_SOURCE_DIR}/docs/)
|
set (PROJECT_DOCS_DIR ${CMAKE_CURRENT_SOURCE_DIR}/docs/)
|
||||||
install (DIRECTORY ${PROJECT_DOCS_DIR} DESTINATION share/doc/${PROJECT_NAME})
|
install (DIRECTORY ${PROJECT_DOCS_DIR} DESTINATION share/doc/${PROJECT_NAME})
|
||||||
|
|
||||||
|
# doxygen documentation
|
||||||
|
find_package (Doxygen)
|
||||||
|
if (DOXYGEN_FOUND)
|
||||||
|
set (DOXYGEN_INPUT ${CMAKE_SOURCE_DIR})
|
||||||
|
configure_file (${CMAKE_SOURCE_DIR}/doxygen.conf.in ${CMAKE_CURRENT_BINARY_DIR}/doxygen.conf)
|
||||||
|
add_custom_target (oxygen-docs ALL COMMAND ${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/doxygen.conf)
|
||||||
|
install (DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/docs/ DESTINATION share/doc/${PROJECT_NAME})
|
||||||
|
else (DOXYGEN_FOUND)
|
||||||
|
message (STATUS "WARNING: Doxygen not found - Reference manual will not be created")
|
||||||
|
endif ()
|
||||||
|
2354
mathmech/doxygen.conf.in
Normal file
2354
mathmech/doxygen.conf.in
Normal file
File diff suppressed because it is too large
Load Diff
@ -1,6 +1,4 @@
|
|||||||
envir - program that searchs environment for chosen molecule by geometric criterion
|
envir - program that searchs environment for chosen molecule by geometric criterion
|
||||||
Version: 1.2.0
|
|
||||||
License: GPL
|
|
||||||
|
|
||||||
Usage:
|
Usage:
|
||||||
envir -i FILENAME -c X,Y,Z -o FILEMANE [ -n NUM_OF_MOLECULE ] [ -r RADIUS ]
|
envir -i FILENAME -c X,Y,Z -o FILEMANE [ -n NUM_OF_MOLECULE ] [ -r RADIUS ]
|
||||||
|
@ -3,26 +3,8 @@ set (SUBPROJECT_BINARY_DIR bin)
|
|||||||
set (SUBPROJECT_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/src)
|
set (SUBPROJECT_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/src)
|
||||||
|
|
||||||
# include_path
|
# include_path
|
||||||
include_directories (${SUBPROJECT_SOURCE_DIR})
|
include_directories (${SUBPROJECT_SOURCE_DIR}
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}/../)
|
||||||
|
|
||||||
# executable path
|
# executable path
|
||||||
set (EXECUTABLE_OUTPUT_PATH ${SUBPROJECT_BINARY_DIR})
|
set (EXECUTABLE_OUTPUT_PATH ${SUBPROJECT_BINARY_DIR})
|
||||||
|
|
||||||
# verbose
|
|
||||||
set (CMAKE_VERBOSE_MAKEFILE ON)
|
|
||||||
|
|
||||||
# flags
|
|
||||||
if ( WITH_DEBUG_MODE )
|
|
||||||
add_definitions ( -DDEBUG_MODE=1 )
|
|
||||||
endif ()
|
|
||||||
if ( CMAKE_COMPILER_IS_GNUCXX )
|
|
||||||
set (ADD_CXX_FLAGS "-Wall")
|
|
||||||
set (CMAKE_CXX_FLAGS "-O0 ${ADD_CXX_FLAGS}")
|
|
||||||
set (CMAKE_CXX_FLAGS_DEBUG "-g -O0")
|
|
||||||
set (CMAKE_CXX_FLAGS_RELEASE "-O3 -DNDEBUG")
|
|
||||||
elseif ( MSVC )
|
|
||||||
set (ADD_CXX_FLAGS "/W4")
|
|
||||||
set (CMAKE_CXX_FLAGS "${ADD_CXX_FLAGS}")
|
|
||||||
else ()
|
|
||||||
message ("Unknown compiler")
|
|
||||||
endif ()
|
|
@ -15,6 +15,7 @@ message (STATUS "${SUBPROJECT} HEADERS: ${HEADERS}")
|
|||||||
|
|
||||||
# link libraries and compile
|
# link libraries and compile
|
||||||
add_executable (${MM_PREFIX}${SUBPROJECT} ${SOURCES} ${HEADERS})
|
add_executable (${MM_PREFIX}${SUBPROJECT} ${SOURCES} ${HEADERS})
|
||||||
|
add_dependencies (${MM_PREFIX}${SUBPROJECT} ${LIBRARIES})
|
||||||
target_link_libraries (${MM_PREFIX}${SUBPROJECT} ${ADDITIONAL_LIB} ${LIBRARIES})
|
target_link_libraries (${MM_PREFIX}${SUBPROJECT} ${ADDITIONAL_LIB} ${LIBRARIES})
|
||||||
|
|
||||||
# install properties
|
# install properties
|
||||||
|
@ -8,6 +8,7 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#include "add_main.h"
|
#include "add_main.h"
|
||||||
|
#include <version.h>
|
||||||
#include <mathmech/coords.h>
|
#include <mathmech/coords.h>
|
||||||
#include <mathmech/envir_search.h>
|
#include <mathmech/envir_search.h>
|
||||||
#include <mathmech/messages.h>
|
#include <mathmech/messages.h>
|
||||||
@ -65,7 +66,7 @@ int main(int argc, char *argv[])
|
|||||||
{
|
{
|
||||||
sprintf (tmp_str, " mm_envir\n");
|
sprintf (tmp_str, " mm_envir\n");
|
||||||
sprintf (tmp_str, "%sProgram for search environment for chosen molecule by geometric criterion\n", tmp_str);
|
sprintf (tmp_str, "%sProgram for search environment for chosen molecule by geometric criterion\n", tmp_str);
|
||||||
sprintf (tmp_str, "%sVersion : 1.2.0 License : GPL\n", tmp_str);
|
sprintf (tmp_str, "%sVersion : %s License : GPL\n", tmp_str, PROJ_VERSION);
|
||||||
sprintf (tmp_str, "%s Evgeniy Alekseev aka arcanis\n", tmp_str);
|
sprintf (tmp_str, "%s Evgeniy Alekseev aka arcanis\n", tmp_str);
|
||||||
sprintf (tmp_str, "%s E-mail : esalexeev@gmail.com\n\n", tmp_str);
|
sprintf (tmp_str, "%s E-mail : esalexeev@gmail.com\n\n", tmp_str);
|
||||||
sprintf (tmp_str, "%sUsage:\n", tmp_str);
|
sprintf (tmp_str, "%sUsage:\n", tmp_str);
|
||||||
|
@ -3,12 +3,8 @@ set (SUBPROJECT mathmech)
|
|||||||
# set additional cmake file
|
# set additional cmake file
|
||||||
include (${SUBPROJECT}.cmake)
|
include (${SUBPROJECT}.cmake)
|
||||||
|
|
||||||
|
|
||||||
# additional options
|
|
||||||
option (WITH_DEBUG_MODE "Build with debug mode" OFF)
|
|
||||||
|
|
||||||
# additional targets
|
# additional targets
|
||||||
set (TARGETS "")
|
set (TARGETS "")
|
||||||
set (HEADERS "")
|
set (HEADERS "")
|
||||||
|
|
||||||
add_subdirectory (${SUBPROJECT_SOURCE_DIR})
|
add_subdirectory (${SUBPROJECT_SOURCE_DIR})
|
||||||
|
@ -1,3 +1 @@
|
|||||||
Mathematical Molecular Mechanics is GUI for "mm" program pack
|
Mathematical Molecular Mechanics is GUI for "mm" program pack
|
||||||
Version: 1.2.0
|
|
||||||
License: GPL
|
|
||||||
|
@ -6,22 +6,3 @@ set (SUBPROJECT_TRANSLATION_DIR ${SUBPROJECT_RESOURCE_DIR}/translations)
|
|||||||
|
|
||||||
# executable path
|
# executable path
|
||||||
set (EXECUTABLE_OUTPUT_PATH ${SUBPROJECT_BINARY_DIR})
|
set (EXECUTABLE_OUTPUT_PATH ${SUBPROJECT_BINARY_DIR})
|
||||||
|
|
||||||
# verbose
|
|
||||||
set (CMAKE_VERBOSE_MAKEFILE ON)
|
|
||||||
|
|
||||||
# flags
|
|
||||||
if ( WITH_DEBUG_MODE )
|
|
||||||
add_definitions ( -DDEBUG_MODE=1 )
|
|
||||||
endif ()
|
|
||||||
if ( CMAKE_COMPILER_IS_GNUCXX )
|
|
||||||
set (ADD_CXX_FLAGS "-Wall")
|
|
||||||
set (CMAKE_CXX_FLAGS "-O0 ${ADD_CXX_FLAGS}")
|
|
||||||
set (CMAKE_CXX_FLAGS_DEBUG "-g -O0")
|
|
||||||
set (CMAKE_CXX_FLAGS_RELEASE "-O3 -DNDEBUG")
|
|
||||||
elseif ( MSVC )
|
|
||||||
set (ADD_CXX_FLAGS "/W4")
|
|
||||||
set (CMAKE_CXX_FLAGS "${ADD_CXX_FLAGS}")
|
|
||||||
else ()
|
|
||||||
message ("Unknown compiler")
|
|
||||||
endif ()
|
|
@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!DOCTYPE TS>
|
<!DOCTYPE TS>
|
||||||
<TS version="2.0" language="en">
|
<TS version="2.1" language="en">
|
||||||
<context>
|
<context>
|
||||||
<name>AboutWindow</name>
|
<name>AboutWindow</name>
|
||||||
<message>
|
<message>
|
||||||
@ -29,7 +29,6 @@ p, li { white-space: pre-wrap; }
|
|||||||
</style></head><body style=" font-family:'Liberation Serif'; font-size:10pt; font-weight:400; font-style:normal;">
|
</style></head><body style=" font-family:'Liberation Serif'; font-size:10pt; font-weight:400; font-style:normal;">
|
||||||
<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Mathematical Molecular Mechanics</span></p>
|
<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Mathematical Molecular Mechanics</span></p>
|
||||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p>
|
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p>
|
||||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Version:</span> 1.2.0</p>
|
|
||||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">License:</span> GPL</p>
|
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">License:</span> GPL</p>
|
||||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p>
|
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p>
|
||||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Author:</span> Evgeniy Alekseev</p>
|
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Author:</span> Evgeniy Alekseev</p>
|
||||||
@ -852,7 +851,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
<li align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Set the log file if this needed.</li>
|
<li align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Set the log file if this needed.</li>
|
||||||
<li align="justify" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Run application.</li></ol></body></html></translation>
|
<li align="justify" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Run application.</li></ol></body></html></translation>
|
||||||
</message>
|
</message>
|
||||||
<message utf8="true">
|
<message>
|
||||||
<location filename="../../../build/mathmech/src/ui_helpwindow.h" line="184"/>
|
<location filename="../../../build/mathmech/src/ui_helpwindow.h" line="184"/>
|
||||||
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||||||
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||||
@ -913,7 +912,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
<li align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Set the maximum number of different atom types and the log file if this needed.</li>
|
<li align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Set the maximum number of different atom types and the log file if this needed.</li>
|
||||||
<li align="justify" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Run application.</li></ol></body></html></translation>
|
<li align="justify" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Run application.</li></ol></body></html></translation>
|
||||||
</message>
|
</message>
|
||||||
<message utf8="true">
|
<message>
|
||||||
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||||||
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||||
p, li { white-space: pre-wrap; }
|
p, li { white-space: pre-wrap; }
|
||||||
@ -973,7 +972,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
<li align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">For the variation of geometric criteria you need specify the criteria step changes and the number of steps.</li>
|
<li align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">For the variation of geometric criteria you need specify the criteria step changes and the number of steps.</li>
|
||||||
<li align="justify" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Run application.</li></ol></body></html></translation>
|
<li align="justify" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Run application.</li></ol></body></html></translation>
|
||||||
</message>
|
</message>
|
||||||
<message utf8="true">
|
<message>
|
||||||
<location filename="../../../build/mathmech/src/ui_helpwindow.h" line="266"/>
|
<location filename="../../../build/mathmech/src/ui_helpwindow.h" line="266"/>
|
||||||
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||||||
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||||
@ -1022,7 +1021,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
<li align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Set the log file if this needed.</li>
|
<li align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Set the log file if this needed.</li>
|
||||||
<li align="justify" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Run application.</li></ol></body></html></translation>
|
<li align="justify" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Run application.</li></ol></body></html></translation>
|
||||||
</message>
|
</message>
|
||||||
<message utf8="true">
|
<message>
|
||||||
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||||||
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||||
p, li { white-space: pre-wrap; }
|
p, li { white-space: pre-wrap; }
|
||||||
@ -1078,7 +1077,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
<li align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Set the matrix output, the log file and the graph generate if this needed.</li>
|
<li align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Set the matrix output, the log file and the graph generate if this needed.</li>
|
||||||
<li align="justify" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Run application.</li></ol></body></html></translation>
|
<li align="justify" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Run application.</li></ol></body></html></translation>
|
||||||
</message>
|
</message>
|
||||||
<message utf8="true">
|
<message>
|
||||||
<location filename="../../../build/mathmech/src/ui_helpwindow.h" line="224"/>
|
<location filename="../../../build/mathmech/src/ui_helpwindow.h" line="224"/>
|
||||||
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||||||
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||||
@ -1139,7 +1138,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
<li align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">For the variation of geometric criteria you need specify the criteria step changes and the number of steps.</li>
|
<li align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">For the variation of geometric criteria you need specify the criteria step changes and the number of steps.</li>
|
||||||
<li align="justify" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Run application.</li></ol></body></html> {3C?} {4.0/?} {3.?} {40/?} {1"?} {10p?} {400;?} {12p?} {12p?} {0p?} {0p?} {0;?} {0p?} {600;?} {12p?} {12p?} {0p?} {0p?} {0;?} {0p?} {12p?} {12p?} {0p?} {0p?} {0;?} {0p?} {4.?} {0-0:2.4,0-1:3.0&?} {0-0 ?} {2.4 ?} {0-1 ?} {3.0 ?} {3)?} {12p?} {12p?} {0p?} {0p?} {0;?} {0p?} {12p?} {12p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {1;?} {12p?} {0p?} {0p?} {0p?} {0;?} {0p?} {1.1.0&?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {1)?} {1)?} {1)?} {1)?} {1.0000,2.0000,3.0000)?} {1,2,3,4)?} {0, 0 ?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {001)?} {2 ?} {0000001 0000001 ?} {7 ?} {7 ?} {2=?} {1.3.4.?} {1 ?} {1.3.4.?} {0000001=?} {2,3,4,5,?} {1 ?} {7 ?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {2 ?} {0000001 0000002 000003.00 004.00000 0005.00000<?} {7 ?} {7 ?} {9 ?} {2 ?} {9 ?} {5 ?} {10 ?} {5 ?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0.10000)?} {0.10000)?} {0.10000)?} {0.10000)?} {03=?} {0.10000)?} {12p?} {12p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {1;?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {12p?} {12p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {1;?} {12p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {12p?} {0p?} {0p?} {0;?} {0p?}</translation>
|
<li align="justify" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Run application.</li></ol></body></html> {3C?} {4.0/?} {3.?} {40/?} {1"?} {10p?} {400;?} {12p?} {12p?} {0p?} {0p?} {0;?} {0p?} {600;?} {12p?} {12p?} {0p?} {0p?} {0;?} {0p?} {12p?} {12p?} {0p?} {0p?} {0;?} {0p?} {4.?} {0-0:2.4,0-1:3.0&?} {0-0 ?} {2.4 ?} {0-1 ?} {3.0 ?} {3)?} {12p?} {12p?} {0p?} {0p?} {0;?} {0p?} {12p?} {12p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {1;?} {12p?} {0p?} {0p?} {0p?} {0;?} {0p?} {1.1.0&?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {1)?} {1)?} {1)?} {1)?} {1.0000,2.0000,3.0000)?} {1,2,3,4)?} {0, 0 ?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {001)?} {2 ?} {0000001 0000001 ?} {7 ?} {7 ?} {2=?} {1.3.4.?} {1 ?} {1.3.4.?} {0000001=?} {2,3,4,5,?} {1 ?} {7 ?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {2 ?} {0000001 0000002 000003.00 004.00000 0005.00000<?} {7 ?} {7 ?} {9 ?} {2 ?} {9 ?} {5 ?} {10 ?} {5 ?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0.10000)?} {0.10000)?} {0.10000)?} {0.10000)?} {03=?} {0.10000)?} {12p?} {12p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {1;?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {12p?} {12p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {1;?} {12p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {12p?} {0p?} {0p?} {0;?} {0p?}</translation>
|
||||||
</message>
|
</message>
|
||||||
<message utf8="true">
|
<message>
|
||||||
<location filename="../../../build/mathmech/src/ui_helpwindow.h" line="297"/>
|
<location filename="../../../build/mathmech/src/ui_helpwindow.h" line="297"/>
|
||||||
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||||||
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||||
@ -1196,7 +1195,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
<li align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Set the matrix output, the log file and the graph generate if this needed.</li>
|
<li align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Set the matrix output, the log file and the graph generate if this needed.</li>
|
||||||
<li align="justify" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Run application.</li></ol></body></html> {3C?} {4.0/?} {3.?} {40/?} {1"?} {10p?} {400;?} {12p?} {12p?} {0p?} {0p?} {0;?} {0p?} {600;?} {12p?} {12p?} {0p?} {0p?} {0;?} {0p?} {12p?} {12p?} {0p?} {0p?} {0;?} {0p?} {1-2&?} {1,2,3-4,5,6&?} {2.0 ?} {15.0<?} {0.2<?} {0.0 ?} {90.0<?} {12p?} {12p?} {0p?} {0p?} {0;?} {0p?} {12p?} {12p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {1;?} {12p?} {0p?} {0p?} {0p?} {0;?} {0p?} {1.1.0&?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {1)?} {1)?} {1)?} {1)?} {1)?} {1.0000,2.0000,3.0000)?} {0)?} {0 ?} {1 ?} {2 ?} {0.100)?} {0.100)?} {0.100)?} {0.10)?} {0.10)?} {0.10)?} {1-2)?} {1,2,3-4,5,6)?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {2 ?} {0001.0000 2.0000e?} {01 000000003 04.000000<?} {9 ?} {4 ?} {10 ?} {4 ?} {9 ?} {9 ?} {6 ?} {0001.0000 04.000000<?} {9 ?} {4 ?} {9 ?} {6 ?} {0001.0000 000005.00 2.0000e?} {01 000000003 04.000000<?} {9 ?} {4 ?} {9 ?} {2 ?} {10 ?} {4 ?} {9 ?} {9 ?} {6 ?} {9 ?} {2 ?} {0001.0000 04.000000 ?} {9 ?} {4 ?} {9 ?} {6 ?} {0p?} {12p?} {0p?} {0p?} {0;?} {0p?} {12p?} {12p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {1;?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {1 ?} {4*?} {2*?} {1 ?} {4*?} {2*?} {12p?} {12p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {1;?} {12p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {12p?} {0p?} {0p?} {0;?} {0p?}</translation>
|
<li align="justify" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Run application.</li></ol></body></html> {3C?} {4.0/?} {3.?} {40/?} {1"?} {10p?} {400;?} {12p?} {12p?} {0p?} {0p?} {0;?} {0p?} {600;?} {12p?} {12p?} {0p?} {0p?} {0;?} {0p?} {12p?} {12p?} {0p?} {0p?} {0;?} {0p?} {1-2&?} {1,2,3-4,5,6&?} {2.0 ?} {15.0<?} {0.2<?} {0.0 ?} {90.0<?} {12p?} {12p?} {0p?} {0p?} {0;?} {0p?} {12p?} {12p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {1;?} {12p?} {0p?} {0p?} {0p?} {0;?} {0p?} {1.1.0&?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {1)?} {1)?} {1)?} {1)?} {1)?} {1.0000,2.0000,3.0000)?} {0)?} {0 ?} {1 ?} {2 ?} {0.100)?} {0.100)?} {0.100)?} {0.10)?} {0.10)?} {0.10)?} {1-2)?} {1,2,3-4,5,6)?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {2 ?} {0001.0000 2.0000e?} {01 000000003 04.000000<?} {9 ?} {4 ?} {10 ?} {4 ?} {9 ?} {9 ?} {6 ?} {0001.0000 04.000000<?} {9 ?} {4 ?} {9 ?} {6 ?} {0001.0000 000005.00 2.0000e?} {01 000000003 04.000000<?} {9 ?} {4 ?} {9 ?} {2 ?} {10 ?} {4 ?} {9 ?} {9 ?} {6 ?} {9 ?} {2 ?} {0001.0000 04.000000 ?} {9 ?} {4 ?} {9 ?} {6 ?} {0p?} {12p?} {0p?} {0p?} {0;?} {0p?} {12p?} {12p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {1;?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {1 ?} {4*?} {2*?} {1 ?} {4*?} {2*?} {12p?} {12p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {1;?} {12p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {12p?} {0p?} {0p?} {0;?} {0p?}</translation>
|
||||||
</message>
|
</message>
|
||||||
<message utf8="true">
|
<message>
|
||||||
<location filename="../../../build/mathmech/src/ui_helpwindow.h" line="337"/>
|
<location filename="../../../build/mathmech/src/ui_helpwindow.h" line="337"/>
|
||||||
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||||||
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||||
@ -1271,7 +1270,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
<source>Help about trj2pdb</source>
|
<source>Help about trj2pdb</source>
|
||||||
<translation>Help about trj2pdb</translation>
|
<translation>Help about trj2pdb</translation>
|
||||||
</message>
|
</message>
|
||||||
<message utf8="true">
|
<message>
|
||||||
<location filename="../../../build/mathmech/src/ui_helpwindow.h" line="378"/>
|
<location filename="../../../build/mathmech/src/ui_helpwindow.h" line="378"/>
|
||||||
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||||||
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!DOCTYPE TS>
|
<!DOCTYPE TS>
|
||||||
<TS version="2.0" language="ru_RU">
|
<TS version="2.1" language="ru_RU">
|
||||||
<context>
|
<context>
|
||||||
<name>AboutWindow</name>
|
<name>AboutWindow</name>
|
||||||
<message>
|
<message>
|
||||||
@ -29,7 +29,6 @@ p, li { white-space: pre-wrap; }
|
|||||||
</style></head><body style=" font-family:'Liberation Serif'; font-size:10pt; font-weight:400; font-style:normal;">
|
</style></head><body style=" font-family:'Liberation Serif'; font-size:10pt; font-weight:400; font-style:normal;">
|
||||||
<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Mathematical Molecular Mechanics</span></p>
|
<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Mathematical Molecular Mechanics</span></p>
|
||||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p>
|
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p>
|
||||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Версия:</span> 1.2.0</p>
|
|
||||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Лицензия:</span> GPL</p>
|
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Лицензия:</span> GPL</p>
|
||||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p>
|
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p>
|
||||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Автор:</span> Evgeniy Alekseev</p>
|
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Автор:</span> Evgeniy Alekseev</p>
|
||||||
@ -852,7 +851,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
<li align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">При необходимости указать файл лога.</li>
|
<li align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">При необходимости указать файл лога.</li>
|
||||||
<li align="justify" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Запустить приложение.</li></ol></body></html></translation>
|
<li align="justify" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Запустить приложение.</li></ol></body></html></translation>
|
||||||
</message>
|
</message>
|
||||||
<message utf8="true">
|
<message>
|
||||||
<location filename="../../../build/mathmech/src/ui_helpwindow.h" line="184"/>
|
<location filename="../../../build/mathmech/src/ui_helpwindow.h" line="184"/>
|
||||||
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||||||
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||||
@ -913,7 +912,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
<li align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">При необходимости указать максимальное число различных типов атомов и файл лога.</li>
|
<li align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">При необходимости указать максимальное число различных типов атомов и файл лога.</li>
|
||||||
<li align="justify" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Запустить приложение.</li></ol></body></html></translation>
|
<li align="justify" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Запустить приложение.</li></ol></body></html></translation>
|
||||||
</message>
|
</message>
|
||||||
<message utf8="true">
|
<message>
|
||||||
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||||||
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||||
p, li { white-space: pre-wrap; }
|
p, li { white-space: pre-wrap; }
|
||||||
@ -973,7 +972,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
<li align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Для вариации геометрических критериев необходимо указать шаг изменения критериев и число шагов.</li>
|
<li align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Для вариации геометрических критериев необходимо указать шаг изменения критериев и число шагов.</li>
|
||||||
<li align="justify" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Запустить приложение.</li></ol></body></html></translation>
|
<li align="justify" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Запустить приложение.</li></ol></body></html></translation>
|
||||||
</message>
|
</message>
|
||||||
<message utf8="true">
|
<message>
|
||||||
<location filename="../../../build/mathmech/src/ui_helpwindow.h" line="266"/>
|
<location filename="../../../build/mathmech/src/ui_helpwindow.h" line="266"/>
|
||||||
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||||||
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||||
@ -1022,7 +1021,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
<li align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">При необходимости указать файл лога.</li>
|
<li align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">При необходимости указать файл лога.</li>
|
||||||
<li align="justify" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Запустить приложение.</li></ol></body></html></translation>
|
<li align="justify" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Запустить приложение.</li></ol></body></html></translation>
|
||||||
</message>
|
</message>
|
||||||
<message utf8="true">
|
<message>
|
||||||
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||||||
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||||
p, li { white-space: pre-wrap; }
|
p, li { white-space: pre-wrap; }
|
||||||
@ -1078,7 +1077,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
<li align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">При необходимости указать печать в виде матрицы, файл лога и генерацию графика.</li>
|
<li align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">При необходимости указать печать в виде матрицы, файл лога и генерацию графика.</li>
|
||||||
<li align="justify" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Запустить приложение.</li></ol></body></html></translation>
|
<li align="justify" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Запустить приложение.</li></ol></body></html></translation>
|
||||||
</message>
|
</message>
|
||||||
<message utf8="true">
|
<message>
|
||||||
<location filename="../../../build/mathmech/src/ui_helpwindow.h" line="224"/>
|
<location filename="../../../build/mathmech/src/ui_helpwindow.h" line="224"/>
|
||||||
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||||||
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||||
@ -1139,7 +1138,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
<li align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Для вариации геометрических критериев необходимо указать шаг изменения критериев и число шагов.</li>
|
<li align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Для вариации геометрических критериев необходимо указать шаг изменения критериев и число шагов.</li>
|
||||||
<li align="justify" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Запустить приложение.</li></ol></body></html> {3C?} {4.0/?} {3.?} {40/?} {1"?} {10p?} {400;?} {12p?} {12p?} {0p?} {0p?} {0;?} {0p?} {600;?} {12p?} {12p?} {0p?} {0p?} {0;?} {0p?} {12p?} {12p?} {0p?} {0p?} {0;?} {0p?} {4.?} {0-0:2.4,0-1:3.0&?} {0-0 ?} {2.4 ?} {0-1 ?} {3.0 ?} {3)?} {12p?} {12p?} {0p?} {0p?} {0;?} {0p?} {12p?} {12p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {1;?} {12p?} {0p?} {0p?} {0p?} {0;?} {0p?} {1.1.0&?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {1)?} {1)?} {1)?} {1)?} {1.0000,2.0000,3.0000)?} {1,2,3,4)?} {0, 0 ?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {001)?} {2 ?} {0000001 0000001 ?} {7 ?} {7 ?} {2=?} {1.3.4.?} {1 ?} {1.3.4.?} {0000001=?} {2,3,4,5,?} {1 ?} {7 ?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {2 ?} {0000001 0000002 000003.00 004.00000 0005.00000<?} {7 ?} {7 ?} {9 ?} {2 ?} {9 ?} {5 ?} {10 ?} {5 ?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0.10000)?} {0.10000)?} {0.10000)?} {0.10000)?} {03=?} {0.10000)?} {12p?} {12p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {1;?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {12p?} {12p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {1;?} {12p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {12p?} {0p?} {0p?} {0;?} {0p?}</translation>
|
<li align="justify" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Запустить приложение.</li></ol></body></html> {3C?} {4.0/?} {3.?} {40/?} {1"?} {10p?} {400;?} {12p?} {12p?} {0p?} {0p?} {0;?} {0p?} {600;?} {12p?} {12p?} {0p?} {0p?} {0;?} {0p?} {12p?} {12p?} {0p?} {0p?} {0;?} {0p?} {4.?} {0-0:2.4,0-1:3.0&?} {0-0 ?} {2.4 ?} {0-1 ?} {3.0 ?} {3)?} {12p?} {12p?} {0p?} {0p?} {0;?} {0p?} {12p?} {12p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {1;?} {12p?} {0p?} {0p?} {0p?} {0;?} {0p?} {1.1.0&?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {1)?} {1)?} {1)?} {1)?} {1.0000,2.0000,3.0000)?} {1,2,3,4)?} {0, 0 ?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {001)?} {2 ?} {0000001 0000001 ?} {7 ?} {7 ?} {2=?} {1.3.4.?} {1 ?} {1.3.4.?} {0000001=?} {2,3,4,5,?} {1 ?} {7 ?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {2 ?} {0000001 0000002 000003.00 004.00000 0005.00000<?} {7 ?} {7 ?} {9 ?} {2 ?} {9 ?} {5 ?} {10 ?} {5 ?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0.10000)?} {0.10000)?} {0.10000)?} {0.10000)?} {03=?} {0.10000)?} {12p?} {12p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {1;?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {12p?} {12p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {1;?} {12p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {12p?} {0p?} {0p?} {0;?} {0p?}</translation>
|
||||||
</message>
|
</message>
|
||||||
<message utf8="true">
|
<message>
|
||||||
<location filename="../../../build/mathmech/src/ui_helpwindow.h" line="297"/>
|
<location filename="../../../build/mathmech/src/ui_helpwindow.h" line="297"/>
|
||||||
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||||||
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||||
@ -1196,7 +1195,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
<li align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">При необходимости указать печать в виде матрицы, файл лога и генерацию графика.</li>
|
<li align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">При необходимости указать печать в виде матрицы, файл лога и генерацию графика.</li>
|
||||||
<li align="justify" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Запустить приложение.</li></ol></body></html> {3C?} {4.0/?} {3.?} {40/?} {1"?} {10p?} {400;?} {12p?} {12p?} {0p?} {0p?} {0;?} {0p?} {600;?} {12p?} {12p?} {0p?} {0p?} {0;?} {0p?} {12p?} {12p?} {0p?} {0p?} {0;?} {0p?} {1-2&?} {1,2,3-4,5,6&?} {2.0 ?} {15.0<?} {0.2<?} {0.0 ?} {90.0<?} {12p?} {12p?} {0p?} {0p?} {0;?} {0p?} {12p?} {12p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {1;?} {12p?} {0p?} {0p?} {0p?} {0;?} {0p?} {1.1.0&?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {1)?} {1)?} {1)?} {1)?} {1)?} {1.0000,2.0000,3.0000)?} {0)?} {0 ?} {1 ?} {2 ?} {0.100)?} {0.100)?} {0.100)?} {0.10)?} {0.10)?} {0.10)?} {1-2)?} {1,2,3-4,5,6)?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {2 ?} {0001.0000 2.0000e?} {01 000000003 04.000000<?} {9 ?} {4 ?} {10 ?} {4 ?} {9 ?} {9 ?} {6 ?} {0001.0000 04.000000<?} {9 ?} {4 ?} {9 ?} {6 ?} {0001.0000 000005.00 2.0000e?} {01 000000003 04.000000<?} {9 ?} {4 ?} {9 ?} {2 ?} {10 ?} {4 ?} {9 ?} {9 ?} {6 ?} {9 ?} {2 ?} {0001.0000 04.000000 ?} {9 ?} {4 ?} {9 ?} {6 ?} {0p?} {12p?} {0p?} {0p?} {0;?} {0p?} {12p?} {12p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {1;?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {1 ?} {4*?} {2*?} {1 ?} {4*?} {2*?} {12p?} {12p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {1;?} {12p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {12p?} {0p?} {0p?} {0;?} {0p?}</translation>
|
<li align="justify" style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Запустить приложение.</li></ol></body></html> {3C?} {4.0/?} {3.?} {40/?} {1"?} {10p?} {400;?} {12p?} {12p?} {0p?} {0p?} {0;?} {0p?} {600;?} {12p?} {12p?} {0p?} {0p?} {0;?} {0p?} {12p?} {12p?} {0p?} {0p?} {0;?} {0p?} {1-2&?} {1,2,3-4,5,6&?} {2.0 ?} {15.0<?} {0.2<?} {0.0 ?} {90.0<?} {12p?} {12p?} {0p?} {0p?} {0;?} {0p?} {12p?} {12p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {1;?} {12p?} {0p?} {0p?} {0p?} {0;?} {0p?} {1.1.0&?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {1)?} {1)?} {1)?} {1)?} {1)?} {1.0000,2.0000,3.0000)?} {0)?} {0 ?} {1 ?} {2 ?} {0.100)?} {0.100)?} {0.100)?} {0.10)?} {0.10)?} {0.10)?} {1-2)?} {1,2,3-4,5,6)?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {2 ?} {0001.0000 2.0000e?} {01 000000003 04.000000<?} {9 ?} {4 ?} {10 ?} {4 ?} {9 ?} {9 ?} {6 ?} {0001.0000 04.000000<?} {9 ?} {4 ?} {9 ?} {6 ?} {0001.0000 000005.00 2.0000e?} {01 000000003 04.000000<?} {9 ?} {4 ?} {9 ?} {2 ?} {10 ?} {4 ?} {9 ?} {9 ?} {6 ?} {9 ?} {2 ?} {0001.0000 04.000000 ?} {9 ?} {4 ?} {9 ?} {6 ?} {0p?} {12p?} {0p?} {0p?} {0;?} {0p?} {12p?} {12p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {1;?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {1 ?} {4*?} {2*?} {1 ?} {4*?} {2*?} {12p?} {12p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {1;?} {12p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {0p?} {12p?} {0p?} {0p?} {0;?} {0p?}</translation>
|
||||||
</message>
|
</message>
|
||||||
<message utf8="true">
|
<message>
|
||||||
<location filename="../../../build/mathmech/src/ui_helpwindow.h" line="337"/>
|
<location filename="../../../build/mathmech/src/ui_helpwindow.h" line="337"/>
|
||||||
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||||||
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||||
@ -1271,7 +1270,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
<source>Help about trj2pdb</source>
|
<source>Help about trj2pdb</source>
|
||||||
<translation>Справка по trj2pdb</translation>
|
<translation>Справка по trj2pdb</translation>
|
||||||
</message>
|
</message>
|
||||||
<message utf8="true">
|
<message>
|
||||||
<location filename="../../../build/mathmech/src/ui_helpwindow.h" line="378"/>
|
<location filename="../../../build/mathmech/src/ui_helpwindow.h" line="378"/>
|
||||||
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||||||
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||||
|
@ -1,3 +1 @@
|
|||||||
libmm is a library for "mm" project
|
libmm is a library for "mm" project
|
||||||
Version: 1.2.0
|
|
||||||
License: GPL
|
|
||||||
|
@ -5,22 +5,3 @@ set (SUBPROJECT_INCLUDE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/include)
|
|||||||
# include_path
|
# include_path
|
||||||
include_directories (${SUBPROJECT_INCLUDE_DIR}
|
include_directories (${SUBPROJECT_INCLUDE_DIR}
|
||||||
${SUBPROJECT_SOURCE_DIR})
|
${SUBPROJECT_SOURCE_DIR})
|
||||||
|
|
||||||
# verbose
|
|
||||||
set (CMAKE_VERBOSE_MAKEFILE ON)
|
|
||||||
|
|
||||||
# flags
|
|
||||||
if ( WITH_DEBUG_MODE )
|
|
||||||
add_definitions ( -DDEBUG_MODE=1 )
|
|
||||||
endif ()
|
|
||||||
if ( CMAKE_COMPILER_IS_GNUCXX )
|
|
||||||
set (ADD_CXX_FLAGS "-Wall")
|
|
||||||
set (CMAKE_CXX_FLAGS "-O0 ${ADD_CXX_FLAGS}")
|
|
||||||
set (CMAKE_CXX_FLAGS_DEBUG "-g -O0")
|
|
||||||
set (CMAKE_CXX_FLAGS_RELEASE "-O3 -DNDEBUG")
|
|
||||||
elseif ( MSVC )
|
|
||||||
set (ADD_CXX_FLAGS "/W4")
|
|
||||||
set (CMAKE_CXX_FLAGS "${ADD_CXX_FLAGS}")
|
|
||||||
else ()
|
|
||||||
message ("Unknown compiler")
|
|
||||||
endif ()
|
|
@ -15,8 +15,11 @@ message (STATUS "${SUBPROJECT} HEADERS: ${HEADERS}")
|
|||||||
|
|
||||||
# link libraries and compile
|
# link libraries and compile
|
||||||
add_library (${SUBPROJECT} SHARED ${SOURCES} ${HEADERS})
|
add_library (${SUBPROJECT} SHARED ${SOURCES} ${HEADERS})
|
||||||
|
set_target_properties (${SUBPROJECT} PROPERTIES SOVERSION ${PROJECT_VERSION})
|
||||||
target_link_libraries (${SUBPROJECT} ${ADDITIONAL_LIB})
|
target_link_libraries (${SUBPROJECT} ${ADDITIONAL_LIB})
|
||||||
|
|
||||||
# install properties
|
# install properties
|
||||||
install (TARGETS ${SUBPROJECT} DESTINATION lib)
|
install (TARGETS ${SUBPROJECT} DESTINATION lib)
|
||||||
install (DIRECTORY ${SUBPROJECT_INCLUDE_DIR}/ DESTINATION include/)
|
if (ADD_INCLUDE)
|
||||||
|
install (DIRECTORY ${SUBPROJECT_INCLUDE_DIR}/ DESTINATION include/)
|
||||||
|
endif ()
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
radf - program that calculates radial distribution function (RDF) or radial-angles
|
radf - program that calculates radial distribution function (RDF) or radial-angles
|
||||||
distribution function (RADF)
|
distribution function (RADF)
|
||||||
Version : 1.1.1
|
|
||||||
License : GPL
|
|
||||||
|
|
||||||
Usage:
|
Usage:
|
||||||
radf -i INPUT -s FIRST,LAST -c X,Y,Z -at ... -o OUTPUT [ -r MIN,MAX ] [ -rs R_STEP ]
|
radf -i INPUT -s FIRST,LAST -c X,Y,Z -at ... -o OUTPUT [ -r MIN,MAX ] [ -rs R_STEP ]
|
||||||
|
@ -3,26 +3,8 @@ set (SUBPROJECT_BINARY_DIR bin)
|
|||||||
set (SUBPROJECT_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/src)
|
set (SUBPROJECT_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/src)
|
||||||
|
|
||||||
# include_path
|
# include_path
|
||||||
include_directories (${SUBPROJECT_SOURCE_DIR})
|
include_directories (${SUBPROJECT_SOURCE_DIR}
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}/../)
|
||||||
|
|
||||||
# executable path
|
# executable path
|
||||||
set (EXECUTABLE_OUTPUT_PATH ${SUBPROJECT_BINARY_DIR})
|
set (EXECUTABLE_OUTPUT_PATH ${SUBPROJECT_BINARY_DIR})
|
||||||
|
|
||||||
# verbose
|
|
||||||
set (CMAKE_VERBOSE_MAKEFILE ON)
|
|
||||||
|
|
||||||
# flags
|
|
||||||
if ( WITH_DEBUG_MODE )
|
|
||||||
add_definitions ( -DDEBUG_MODE=1 )
|
|
||||||
endif ()
|
|
||||||
if ( CMAKE_COMPILER_IS_GNUCXX )
|
|
||||||
set (ADD_CXX_FLAGS "-Wall")
|
|
||||||
set (CMAKE_CXX_FLAGS "-O0 ${ADD_CXX_FLAGS}")
|
|
||||||
set (CMAKE_CXX_FLAGS_DEBUG "-g -O0")
|
|
||||||
set (CMAKE_CXX_FLAGS_RELEASE "-O3 -DNDEBUG")
|
|
||||||
elseif ( MSVC )
|
|
||||||
set (ADD_CXX_FLAGS "/W4")
|
|
||||||
set (CMAKE_CXX_FLAGS "${ADD_CXX_FLAGS}")
|
|
||||||
else ()
|
|
||||||
message ("Unknown compiler")
|
|
||||||
endif ()
|
|
@ -15,6 +15,7 @@ message (STATUS "${SUBPROJECT} HEADERS: ${HEADERS}")
|
|||||||
|
|
||||||
# link libraries and compile
|
# link libraries and compile
|
||||||
add_executable (${MM_PREFIX}${SUBPROJECT} ${SOURCES} ${HEADERS})
|
add_executable (${MM_PREFIX}${SUBPROJECT} ${SOURCES} ${HEADERS})
|
||||||
|
add_dependencies (${MM_PREFIX}${SUBPROJECT} ${LIBRARIES})
|
||||||
target_link_libraries (${MM_PREFIX}${SUBPROJECT} ${ADDITIONAL_LIB} ${LIBRARIES})
|
target_link_libraries (${MM_PREFIX}${SUBPROJECT} ${ADDITIONAL_LIB} ${LIBRARIES})
|
||||||
|
|
||||||
# install properties
|
# install properties
|
||||||
|
@ -4,6 +4,7 @@
|
|||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
|
#include <version.h>
|
||||||
#include <mathmech/messages.h>
|
#include <mathmech/messages.h>
|
||||||
|
|
||||||
|
|
||||||
@ -127,7 +128,7 @@ int printing_head (const char *output, const int log, const int quiet, const int
|
|||||||
FILE *f_out;
|
FILE *f_out;
|
||||||
|
|
||||||
f_out = fopen (output, "w");
|
f_out = fopen (output, "w");
|
||||||
fprintf (f_out, "radf ::: V.1.2.0\n\n");
|
fprintf (f_out, "radf ::: V.%s\n\n", PROJ_VERSION);
|
||||||
fprintf (f_out, "CONFIGURATION\n");
|
fprintf (f_out, "CONFIGURATION\n");
|
||||||
|
|
||||||
fprintf (f_out, "LOG=%i\nQUIET=%i\nMATRIX=%i\n", log, quiet, matrix);
|
fprintf (f_out, "LOG=%i\nQUIET=%i\nMATRIX=%i\n", log, quiet, matrix);
|
||||||
|
@ -8,6 +8,7 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#include "add_main.h"
|
#include "add_main.h"
|
||||||
|
#include <version.h>
|
||||||
#include <mathmech/coords.h>
|
#include <mathmech/coords.h>
|
||||||
#include <mathmech/messages.h>
|
#include <mathmech/messages.h>
|
||||||
#include <mathmech/radf.h>
|
#include <mathmech/radf.h>
|
||||||
@ -75,7 +76,7 @@ int main(int argc, char *argv[])
|
|||||||
sprintf (tmp_str, " mm_radf\n");
|
sprintf (tmp_str, " mm_radf\n");
|
||||||
sprintf (tmp_str, "%sProgram that calculates radial distribution function (RDF) or radial-angles\n", tmp_str);
|
sprintf (tmp_str, "%sProgram that calculates radial distribution function (RDF) or radial-angles\n", tmp_str);
|
||||||
sprintf (tmp_str, "%sdistribution function\n", tmp_str);
|
sprintf (tmp_str, "%sdistribution function\n", tmp_str);
|
||||||
sprintf (tmp_str, "%sVersion : 1.2.0 License : GPL\n", tmp_str);
|
sprintf (tmp_str, "%sVersion : %s License : GPL\n", tmp_str, PROJ_VERSION);
|
||||||
sprintf (tmp_str, "%s Evgeniy Alekseev aka arcanis\n", tmp_str);
|
sprintf (tmp_str, "%s Evgeniy Alekseev aka arcanis\n", tmp_str);
|
||||||
sprintf (tmp_str, "%s E-mail : esalexeev@gmail.com\n\n", tmp_str);
|
sprintf (tmp_str, "%s E-mail : esalexeev@gmail.com\n\n", tmp_str);
|
||||||
sprintf (tmp_str, "%sUsage:\n", tmp_str);
|
sprintf (tmp_str, "%sUsage:\n", tmp_str);
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
statgen - program that analyzes molecular dynamic trajectories using topological analysis
|
statgen - program that analyzes molecular dynamic trajectories using topological analysis
|
||||||
Version: 1.2.0
|
|
||||||
License: GPL
|
|
||||||
|
|
||||||
Usage:
|
Usage:
|
||||||
statgen -i INPUT -s FIRST,LAST -c X,Y,Z -a ... -r ... -o OUTPUT [ -g DEPTH ]
|
statgen -i INPUT -s FIRST,LAST -c X,Y,Z -a ... -r ... -o OUTPUT [ -g DEPTH ]
|
||||||
|
@ -15,6 +15,7 @@ message (STATUS "${SUBPROJECT} HEADERS: ${HEADERS}")
|
|||||||
|
|
||||||
# link libraries and compile
|
# link libraries and compile
|
||||||
add_executable (${MM_PREFIX}${SUBPROJECT} ${SOURCES} ${HEADERS})
|
add_executable (${MM_PREFIX}${SUBPROJECT} ${SOURCES} ${HEADERS})
|
||||||
|
add_dependencies (${MM_PREFIX}${SUBPROJECT} ${LIBRARIES})
|
||||||
target_link_libraries (${MM_PREFIX}${SUBPROJECT} ${ADDITIONAL_LIB} ${LIBRARIES})
|
target_link_libraries (${MM_PREFIX}${SUBPROJECT} ${ADDITIONAL_LIB} ${LIBRARIES})
|
||||||
|
|
||||||
# install properties
|
# install properties
|
||||||
|
@ -4,6 +4,7 @@
|
|||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
|
#include <version.h>
|
||||||
#include <mathmech/messages.h>
|
#include <mathmech/messages.h>
|
||||||
|
|
||||||
|
|
||||||
@ -92,7 +93,7 @@ int printing_head (const char *output, const int log, const int quiet,
|
|||||||
FILE *f_out;
|
FILE *f_out;
|
||||||
|
|
||||||
f_out = fopen (output, "w");
|
f_out = fopen (output, "w");
|
||||||
fprintf (f_out, "statgen ::: V.1.2.0\n\n");
|
fprintf (f_out, "statgen ::: V.%s\n\n", PROJ_VERSION);
|
||||||
fprintf (f_out, "CONFIGURATION\n");
|
fprintf (f_out, "CONFIGURATION\n");
|
||||||
|
|
||||||
fprintf (f_out, "LOG=%i\nQUIET=%i\n", log, quiet);
|
fprintf (f_out, "LOG=%i\nQUIET=%i\n", log, quiet);
|
||||||
|
@ -9,6 +9,7 @@
|
|||||||
#include <time.h>
|
#include <time.h>
|
||||||
|
|
||||||
#include "add_main.h"
|
#include "add_main.h"
|
||||||
|
#include <version.h>
|
||||||
#include <mathmech/coords.h>
|
#include <mathmech/coords.h>
|
||||||
#include <mathmech/messages.h>
|
#include <mathmech/messages.h>
|
||||||
#include <mathmech/stat_print.h>
|
#include <mathmech/stat_print.h>
|
||||||
@ -94,7 +95,7 @@ int main (int argc, char *argv[])
|
|||||||
{
|
{
|
||||||
sprintf (tmp_str, " mm_statgen\n");
|
sprintf (tmp_str, " mm_statgen\n");
|
||||||
sprintf (tmp_str, "%sProgram for analyze molecular dynamic trajectories\n", tmp_str);
|
sprintf (tmp_str, "%sProgram for analyze molecular dynamic trajectories\n", tmp_str);
|
||||||
sprintf (tmp_str, "%sVersion : 1.2.0 License : GPL\n", tmp_str);
|
sprintf (tmp_str, "%sVersion : %s License : GPL\n", tmp_str, PROJ_VERSION);
|
||||||
sprintf (tmp_str, "%s Evgeniy Alekseev aka arcanis\n", tmp_str);
|
sprintf (tmp_str, "%s Evgeniy Alekseev aka arcanis\n", tmp_str);
|
||||||
sprintf (tmp_str, "%s E-mail : esalexeev@gmail.com\n\n", tmp_str);
|
sprintf (tmp_str, "%s E-mail : esalexeev@gmail.com\n\n", tmp_str);
|
||||||
sprintf (tmp_str, "%sUsage:\n", tmp_str);
|
sprintf (tmp_str, "%sUsage:\n", tmp_str);
|
||||||
|
@ -3,26 +3,8 @@ set (SUBPROJECT_BINARY_DIR bin)
|
|||||||
set (SUBPROJECT_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/src)
|
set (SUBPROJECT_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/src)
|
||||||
|
|
||||||
# include_path
|
# include_path
|
||||||
include_directories (${SUBPROJECT_SOURCE_DIR})
|
include_directories (${SUBPROJECT_SOURCE_DIR}
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}/../)
|
||||||
|
|
||||||
# executable path
|
# executable path
|
||||||
set (EXECUTABLE_OUTPUT_PATH ${SUBPROJECT_BINARY_DIR})
|
set (EXECUTABLE_OUTPUT_PATH ${SUBPROJECT_BINARY_DIR})
|
||||||
|
|
||||||
# verbose
|
|
||||||
set (CMAKE_VERBOSE_MAKEFILE ON)
|
|
||||||
|
|
||||||
# flags
|
|
||||||
if ( WITH_DEBUG_MODE )
|
|
||||||
add_definitions ( -DDEBUG_MODE=1 )
|
|
||||||
endif ()
|
|
||||||
if ( CMAKE_COMPILER_IS_GNUCXX )
|
|
||||||
set (ADD_CXX_FLAGS "-Wall")
|
|
||||||
set (CMAKE_CXX_FLAGS "-O0 ${ADD_CXX_FLAGS}")
|
|
||||||
set (CMAKE_CXX_FLAGS_DEBUG "-g -O0")
|
|
||||||
set (CMAKE_CXX_FLAGS_RELEASE "-O3 -DNDEBUG")
|
|
||||||
elseif ( MSVC )
|
|
||||||
set (ADD_CXX_FLAGS "/W4")
|
|
||||||
set (CMAKE_CXX_FLAGS "${ADD_CXX_FLAGS}")
|
|
||||||
else ()
|
|
||||||
message ("Unknown compiler")
|
|
||||||
endif ()
|
|
@ -1,6 +1,4 @@
|
|||||||
trj - program that generates trajectory files
|
trj - program that generates trajectory files
|
||||||
Version : 1.1.1
|
|
||||||
License : GPL
|
|
||||||
|
|
||||||
Usage:
|
Usage:
|
||||||
trj -i INPUT_TRJ -t INPUT_TYPE -s NUMBER -a INPUT_ATOMS -o OUTPUT [ -tt TOTAL_TYPES ]
|
trj -i INPUT_TRJ -t INPUT_TYPE -s NUMBER -a INPUT_ATOMS -o OUTPUT [ -tt TOTAL_TYPES ]
|
||||||
|
@ -15,6 +15,7 @@ message (STATUS "${SUBPROJECT} HEADERS: ${HEADERS}")
|
|||||||
|
|
||||||
# link libraries and compile
|
# link libraries and compile
|
||||||
add_executable (${MM_PREFIX}${SUBPROJECT} ${SOURCES} ${HEADERS})
|
add_executable (${MM_PREFIX}${SUBPROJECT} ${SOURCES} ${HEADERS})
|
||||||
|
add_dependencies (${MM_PREFIX}${SUBPROJECT} ${LIBRARIES})
|
||||||
target_link_libraries (${MM_PREFIX}${SUBPROJECT} ${ADDITIONAL_LIB} ${LIBRARIES})
|
target_link_libraries (${MM_PREFIX}${SUBPROJECT} ${ADDITIONAL_LIB} ${LIBRARIES})
|
||||||
|
|
||||||
# install properties
|
# install properties
|
||||||
|
@ -8,6 +8,7 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#include "add_main.h"
|
#include "add_main.h"
|
||||||
|
#include <version.h>
|
||||||
#include <mathmech/atom_types.h>
|
#include <mathmech/atom_types.h>
|
||||||
#include <mathmech/messages.h>
|
#include <mathmech/messages.h>
|
||||||
#include <mathmech/print_trj.h>
|
#include <mathmech/print_trj.h>
|
||||||
@ -62,7 +63,7 @@ int main(int argc, char *argv[])
|
|||||||
{
|
{
|
||||||
sprintf (tmp_str, " mm_trj\n");
|
sprintf (tmp_str, " mm_trj\n");
|
||||||
sprintf (tmp_str, "%sProgram that generates trajectory files\n", tmp_str);
|
sprintf (tmp_str, "%sProgram that generates trajectory files\n", tmp_str);
|
||||||
sprintf (tmp_str, "%sVersion : 1.2.0 License : GPL\n", tmp_str);
|
sprintf (tmp_str, "%sVersion : %s License : GPL\n", tmp_str, PROJ_VERSION);
|
||||||
sprintf (tmp_str, "%s Evgeniy Alekseev aka arcanis\n", tmp_str);
|
sprintf (tmp_str, "%s Evgeniy Alekseev aka arcanis\n", tmp_str);
|
||||||
sprintf (tmp_str, "%s E-mail : esalexeev@gmail.com\n\n", tmp_str);
|
sprintf (tmp_str, "%s E-mail : esalexeev@gmail.com\n\n", tmp_str);
|
||||||
sprintf (tmp_str, "%sUsage:\n", tmp_str);
|
sprintf (tmp_str, "%sUsage:\n", tmp_str);
|
||||||
|
@ -3,26 +3,8 @@ set (SUBPROJECT_BINARY_DIR bin)
|
|||||||
set (SUBPROJECT_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/src)
|
set (SUBPROJECT_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/src)
|
||||||
|
|
||||||
# include_path
|
# include_path
|
||||||
include_directories (${SUBPROJECT_SOURCE_DIR})
|
include_directories (${SUBPROJECT_SOURCE_DIR}
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}/../)
|
||||||
|
|
||||||
# executable path
|
# executable path
|
||||||
set (EXECUTABLE_OUTPUT_PATH ${SUBPROJECT_BINARY_DIR})
|
set (EXECUTABLE_OUTPUT_PATH ${SUBPROJECT_BINARY_DIR})
|
||||||
|
|
||||||
# verbose
|
|
||||||
set (CMAKE_VERBOSE_MAKEFILE ON)
|
|
||||||
|
|
||||||
# flags
|
|
||||||
if ( WITH_DEBUG_MODE )
|
|
||||||
add_definitions ( -DDEBUG_MODE=1 )
|
|
||||||
endif ()
|
|
||||||
if ( CMAKE_COMPILER_IS_GNUCXX )
|
|
||||||
set (ADD_CXX_FLAGS "-Wall")
|
|
||||||
set (CMAKE_CXX_FLAGS "-O0 ${ADD_CXX_FLAGS}")
|
|
||||||
set (CMAKE_CXX_FLAGS_DEBUG "-g -O0")
|
|
||||||
set (CMAKE_CXX_FLAGS_RELEASE "-O3 -DNDEBUG")
|
|
||||||
elseif ( MSVC )
|
|
||||||
set (ADD_CXX_FLAGS "/W4")
|
|
||||||
set (CMAKE_CXX_FLAGS "${ADD_CXX_FLAGS}")
|
|
||||||
else ()
|
|
||||||
message ("Unknown compiler")
|
|
||||||
endif ()
|
|
@ -1,6 +1,4 @@
|
|||||||
trj2pdb - program that creates PDB file from trajetory snapshot
|
trj2pdb - program that creates PDB file from trajetory snapshot
|
||||||
Version: 1.2.0
|
|
||||||
License: GPL
|
|
||||||
|
|
||||||
Usage:
|
Usage:
|
||||||
trj2pdb -i FILENAME -o FILEMANE [ -l LOGFILE ] [ -q ] [ -h ]
|
trj2pdb -i FILENAME -o FILEMANE [ -l LOGFILE ] [ -q ] [ -h ]
|
||||||
|
@ -15,6 +15,7 @@ message (STATUS "${SUBPROJECT} HEADERS: ${HEADERS}")
|
|||||||
|
|
||||||
# link libraries and compile
|
# link libraries and compile
|
||||||
add_executable (${MM_PREFIX}${SUBPROJECT} ${SOURCES} ${HEADERS})
|
add_executable (${MM_PREFIX}${SUBPROJECT} ${SOURCES} ${HEADERS})
|
||||||
|
add_dependencies (${MM_PREFIX}${SUBPROJECT} ${LIBRARIES})
|
||||||
target_link_libraries (${MM_PREFIX}${SUBPROJECT} ${ADDITIONAL_LIB} ${LIBRARIES})
|
target_link_libraries (${MM_PREFIX}${SUBPROJECT} ${ADDITIONAL_LIB} ${LIBRARIES})
|
||||||
|
|
||||||
# install properties
|
# install properties
|
||||||
|
@ -8,6 +8,7 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#include "add_main.h"
|
#include "add_main.h"
|
||||||
|
#include <version.h>
|
||||||
#include <mathmech/coords.h>
|
#include <mathmech/coords.h>
|
||||||
#include <mathmech/messages.h>
|
#include <mathmech/messages.h>
|
||||||
#include <mathmech/print_struct.h>
|
#include <mathmech/print_struct.h>
|
||||||
@ -58,7 +59,7 @@ int main(int argc, char *argv[])
|
|||||||
{
|
{
|
||||||
sprintf (tmp_str, " mm_trj2pdb\n");
|
sprintf (tmp_str, " mm_trj2pdb\n");
|
||||||
sprintf (tmp_str, "%sProgram for create PDB file from trajectory snapshot\n", tmp_str);
|
sprintf (tmp_str, "%sProgram for create PDB file from trajectory snapshot\n", tmp_str);
|
||||||
sprintf (tmp_str, "%sVersion : 1.2.0 License : GPL\n", tmp_str);
|
sprintf (tmp_str, "%sVersion : %s License : GPL\n", tmp_str, PROJ_VERSION);
|
||||||
sprintf (tmp_str, "%s Evgeniy Alekseev aka arcanis\n", tmp_str);
|
sprintf (tmp_str, "%s Evgeniy Alekseev aka arcanis\n", tmp_str);
|
||||||
sprintf (tmp_str, "%s E-mail : esalexeev@gmail.com\n\n", tmp_str);
|
sprintf (tmp_str, "%s E-mail : esalexeev@gmail.com\n\n", tmp_str);
|
||||||
sprintf (tmp_str, "%sUsage:\n", tmp_str);
|
sprintf (tmp_str, "%sUsage:\n", tmp_str);
|
||||||
|
@ -3,26 +3,8 @@ set (SUBPROJECT_BINARY_DIR bin)
|
|||||||
set (SUBPROJECT_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/src)
|
set (SUBPROJECT_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/src)
|
||||||
|
|
||||||
# include_path
|
# include_path
|
||||||
include_directories (${SUBPROJECT_SOURCE_DIR})
|
include_directories (${SUBPROJECT_SOURCE_DIR}
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}/../)
|
||||||
|
|
||||||
# executable path
|
# executable path
|
||||||
set (EXECUTABLE_OUTPUT_PATH ${SUBPROJECT_BINARY_DIR})
|
set (EXECUTABLE_OUTPUT_PATH ${SUBPROJECT_BINARY_DIR})
|
||||||
|
|
||||||
# verbose
|
|
||||||
set (CMAKE_VERBOSE_MAKEFILE ON)
|
|
||||||
|
|
||||||
# flags
|
|
||||||
if ( WITH_DEBUG_MODE )
|
|
||||||
add_definitions ( -DDEBUG_MODE=1 )
|
|
||||||
endif ()
|
|
||||||
if ( CMAKE_COMPILER_IS_GNUCXX )
|
|
||||||
set (ADD_CXX_FLAGS "-Wall")
|
|
||||||
set (CMAKE_CXX_FLAGS "-O0 ${ADD_CXX_FLAGS}")
|
|
||||||
set (CMAKE_CXX_FLAGS_DEBUG "-g -O0")
|
|
||||||
set (CMAKE_CXX_FLAGS_RELEASE "-O3 -DNDEBUG")
|
|
||||||
elseif ( MSVC )
|
|
||||||
set (ADD_CXX_FLAGS "/W4")
|
|
||||||
set (CMAKE_CXX_FLAGS "${ADD_CXX_FLAGS}")
|
|
||||||
else ()
|
|
||||||
message ("Unknown compiler")
|
|
||||||
endif ()
|
|
@ -1,58 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
func_help() {
|
|
||||||
echo -e "\nUsage: update_ver.sh -o OLDVER -n NEWVER"
|
|
||||||
echo -e "\nRequired parameters:"
|
|
||||||
echo -e " -o --oldver - old version"
|
|
||||||
echo -e " -n --newver - new version"
|
|
||||||
echo -e "\nAdditional parametrs:"
|
|
||||||
echo -e " -h --help - show this help and exit"
|
|
||||||
exit 0
|
|
||||||
}
|
|
||||||
|
|
||||||
until [ -z $1 ]; do
|
|
||||||
if [ "$1" = "-h" ]; then
|
|
||||||
func_help; fi
|
|
||||||
if [ "$1" = "--help" ]; then
|
|
||||||
func_help; fi
|
|
||||||
if [ "$1" = "-o" ]; then
|
|
||||||
OLDVER="$2"
|
|
||||||
shift; fi
|
|
||||||
if [ "$1" = "--oldver" ]; then
|
|
||||||
OLDVER="$2"
|
|
||||||
shift; fi
|
|
||||||
if [ "$1" = "-n" ]; then
|
|
||||||
NEWVER="$2"
|
|
||||||
shift; fi
|
|
||||||
if [ "$1" = "--newver" ]; then
|
|
||||||
NEWVER="$2"
|
|
||||||
shift; fi
|
|
||||||
shift
|
|
||||||
done
|
|
||||||
|
|
||||||
if [[ -z "$OLDVER" || -z "$NEWVER" ]]; then
|
|
||||||
echo "Parametrs aren't set"
|
|
||||||
echo "Usage: update_ver.sh -o OLDVER -n NEWVER"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
# work block
|
|
||||||
COMPONENTS=(agl envir radf statgen trj trj2pdb)
|
|
||||||
for COMPONENT in ${COMPONENTS[*]}; do
|
|
||||||
# help message
|
|
||||||
sed -i "s/Version : $OLDVER/Version : $NEWVER/g" $COMPONENT/src/main.c
|
|
||||||
# head in output
|
|
||||||
sed -i "s/V.$OLDVER/V.$NEWVER/g" $COMPONENT/src/add_main.c
|
|
||||||
# readme
|
|
||||||
sed -i "s/Version: $OLDVER/Version: $NEWVER/g" $COMPONENT/README
|
|
||||||
done
|
|
||||||
|
|
||||||
COMPONENT=mm
|
|
||||||
# readme
|
|
||||||
sed -i "s/Version: $OLDVER/Version: $NEWVER/g" $COMPONENT/README
|
|
||||||
|
|
||||||
COMPONENT=mathmech
|
|
||||||
# about window
|
|
||||||
sed -i "s/$OLDVER/$NEWVER/g" $COMPONENT/resources/translations/eng.ts
|
|
||||||
sed -i "s/$OLDVER/$NEWVER/g" $COMPONENT/resources/translations/rus.ts
|
|
||||||
# readme
|
|
||||||
sed -i "s/Version: $OLDVER/Version: $NEWVER/g" $COMPONENT/README
|
|
12
mathmech/version.h.in
Normal file
12
mathmech/version.h.in
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
/**
|
||||||
|
* @file
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef VERSION_H
|
||||||
|
#define VERSION_H
|
||||||
|
|
||||||
|
#ifndef PROJ_VERSION
|
||||||
|
#define PROJ_VERSION "@PROJECT_VERSION@"
|
||||||
|
#endif /* PROJ_VERSION */
|
||||||
|
|
||||||
|
#endif /* VERSION_H */
|
Reference in New Issue
Block a user