source: molecuilder/src/analysis_bonds.hpp@ 01d28a

Last change on this file since 01d28a 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
11using 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
23class element;
24class molecule;
25
26/********************************************** declarations *******************************/
27
28void GetMaxMinMeanBondCount(const molecule * const mol, double &Min, double &Mean, double &Max);
29void 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.