|
Last change
on this file since 9291f85 was e462b3, checked in by Frederik Heber <heber@…>, 16 years ago |
|
Two new bond analysis functions.
|
-
Property mode
set to
100644
|
|
File size:
820 bytes
|
| Line | |
|---|
| 1 | /*
|
|---|
| 2 | * analysis_bonds.hpp
|
|---|
| 3 | *
|
|---|
| 4 | * Created on: Nov 7, 2009
|
|---|
| 5 | * Author: heber
|
|---|
| 6 | */
|
|---|
| 7 |
|
|---|
| 8 | #ifndef ANALYSIS_BONDS_HPP_
|
|---|
| 9 | #define ANALYSIS_BONDS_HPP_
|
|---|
| 10 |
|
|---|
| 11 | using namespace std;
|
|---|
| 12 |
|
|---|
| 13 | /*********************************************** includes ***********************************/
|
|---|
| 14 |
|
|---|
| 15 | // include config.h
|
|---|
| 16 | #ifdef HAVE_CONFIG_H
|
|---|
| 17 | #include <config.h>
|
|---|
| 18 | #endif
|
|---|
| 19 |
|
|---|
| 20 |
|
|---|
| 21 | /****************************************** forward declarations *****************************/
|
|---|
| 22 |
|
|---|
| 23 | class element;
|
|---|
| 24 | class molecule;
|
|---|
| 25 |
|
|---|
| 26 | /********************************************** declarations *******************************/
|
|---|
| 27 |
|
|---|
| 28 | void GetMaxMinMeanBondCount(const molecule * const mol, double &Min, double &Mean, double &Max);
|
|---|
| 29 | void MinMeanMaxBondDistanceBetweenElements(const molecule *mol, element *type1, element *type2, double &Min, double &Mean, double &Max);
|
|---|
| 30 |
|
|---|
| 31 | #endif /* ANALYSIS_BONDS_HPP_ */
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.