/usr/include/openbabel-2.0/openbabel/obutil.h is in libopenbabel-dev 2.3.2+dfsg-3build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 | /**********************************************************************
obutil.h - Various utility methods.
Copyright (C) 1998-2001 by OpenEye Scientific Software, Inc.
Some portions Copyright (C) 2001-2006 by Geoffrey R. Hutchison
This file is part of the Open Babel project.
For more information, see <http://openbabel.org/>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation version 2 of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
***********************************************************************/
#ifndef OB_UTIL_H
#define OB_UTIL_H
#include <openbabel/babelconfig.h>
#include <string>
#include <iosfwd>
#if TIME_WITH_SYS_TIME
#include <sys/time.h>
#include <time.h>
#else
#if HAVE_SYS_TIME_H
#include <sys/time.h>
#else
#include <time.h>
#endif
#endif
#include <math.h>
#ifndef M_PI
#define M_PI 3.14159265358979323846
#endif
// For backwards compatibility. Will be removed in the future
#include <openbabel/rand.h>
namespace OpenBabel
{
// class introduction in obutil.cpp
class OBAPI OBStopwatch
{
#if HAVE_CLOCK_T
clock_t start; //!< the start of timing
clock_t stop; //!< the current time
#else
timeval start; //!< the start of timing
timeval stop; //!< the current time
#endif
public:
#if HAVE_CLOCK_T
//! Mark the start of "stopwatch" timing
void Start()
{
start= clock();
}
//! \return The time since calling OBStopwatch::Start() in seconds.
double Lap()
{
stop= clock();
return((stop - start) / CLOCKS_PER_SEC);
}
#else
//! Mark the start of "stopwatch" timing
void Start()
{
gettimeofday(&start, NULL);
}
//! \return The time since calling OBStopwatch::Start() in seconds.
double Lap()
{
gettimeofday(&stop, NULL);
return((stop.tv_sec - start.tv_sec)
+ (stop.tv_usec - start.tv_usec)/1000000.0);
}
#endif
//! \return The time since calling OBStopwatch::Start() in seconds.
double Elapsed()
{
return(Lap());
}
};
//! \class OBSqrtTbl obutil.h <openbabel/obutil.h>
//! \brief Square Root lookup table - given a distance squared returns distance
class OBAPI OBSqrtTbl
{
double _max,_incr,*_tbl;
public:
OBSqrtTbl():
_max(0.0), _incr(0.0), _tbl(NULL)
{ }
//! \brief Create a square root table to handle up to the square root of @p max
//! (e.g., if you want the square root of 144, supply 12 for max)
//! \param max The maximum square root stored in the lookup table
//! \param incr The floating point resolution of the lookup table
OBSqrtTbl(const double max, const double incr):
_max(max*max), _incr(incr), _tbl(NULL)
{
Init(max,incr);
}
~OBSqrtTbl()
{
if (_tbl)
{
delete [] _tbl;
_tbl = NULL;
}
}
//! \brief Fast square root calculation using a lookup table
//! \return Square root of @p d2
double Sqrt(double d2) const
{
if (_tbl)
return((d2 < _max) ? _tbl[static_cast<int>(d2*_incr)]:sqrt(d2));
else
return 0.0;
}
//! \brief Initialize the square root lookup table
//! \param max The maximum square root stored in the lookup table (e.g., if you want the square root of 144, supply 12 for max)
//! \param incr The floating point resolution of the lookup table
void Init(double max,double incr)
{
// parameters are potentially unneeded, but let's do this until we can
// deprecate them
_max = max * max;
_incr = incr;
//array size needs to be large enough to account for fp error
int i;
double r;
_tbl = new double [static_cast<int>((_max/_incr)+10)];
for (r = (_incr/2.0),i=0;r <= _max;r += _incr,++i)
_tbl[i] = sqrt(r);
_incr = 1/_incr;
}
};
//***RMS helper methods***/
#ifndef __KCC
extern "C" {
OBAPI void rotate_coords(double*,double m[3][3],unsigned);
OBAPI double calc_rms(double*,double*,unsigned int);
}
#else
OBAPI void rotate_coords(double*,double m[3][3],unsigned);
OBAPI double calc_rms(double*,double*,unsigned int);
#endif
#ifndef SWIG
//! \name String conversion utilities
//@{
// Documentation in obutil.cpp
OBAPI void ToUpper(std::string&);
OBAPI void ToUpper(char*);
OBAPI void ToLower(std::string&);
OBAPI void ToLower(char *);
OBAPI void InvertCase(std::string&, int);
OBAPI void InvertCase(char *);
//! "Clean" the supplied atom type
OBAPI void CleanAtomType(char*);
//@}
//! Comparison -- returns true if first parameter less than second
//! \return True if @p a < @p b, False otherwise.
OBAPI bool OBCompareInt(const int &a,const int &b);
//! Comparison -- returns true if first parameter less than second
//! \return True if @p a < @p b, False otherwise.
OBAPI bool OBCompareUnsigned(const unsigned int &a,const unsigned int &b);
/*! "Safe" comparison for floats/doubles: returns fabs(a - b) < epsilon
* This function really doesn't make any sense w.r.t. floating-point
* representation, so you should never use it. It is provided only for
* backwards compatibility.
* \deprecated Use IsApprox() instead
*/
OBAPI bool IsNear(const double &, const double &, const double epsilon=2e-6);
/*! "Safe" comparison for floats/doubles: true if a is less than epsilon
* This function really doesn't make any sense w.r.t. floating-point
* representation, so you should never use it. It is provided only for
* backwards compatibility.
* \deprecated
*/
OBAPI bool IsNearZero(const double &, const double epsilon=2e-6);
OBAPI bool IsNan(const double &);
/**
* \return true if \a a is much smaller than \a b. More precisely:
* @code
return( fabs(a) <= precision * fabs(b) );
* @endcode
*/
OBAPI inline bool IsNegligible(const double & a, const double & b,
const double precision = 1e-11)
{
return( fabs(a) <= precision * fabs(b) );
}
/*! Safe comparison for floats/doubles: true if
* fabs(a - b) <= precision * std::min( fabs(a), fabs(b) )
* The parameter precision plays the role of 10^-N where N is the number of
* significant digits to consider.
* This is the correct way to replace operator== for doubles. For new code,
* use this function instead of the old IsNear() function.
*
* \note To check
* if x is zero, use
* @code
IsNegligible( x, 1.0)
* @endcode
* instead of
* @code
IsApprox( x, 0.0 )
* @endcode
*/
OBAPI inline bool IsApprox(const double & a, const double & b,
const double precision = 1e-11)
{
return( fabs(a - b) <= precision * std::min<const double>( fabs(a), fabs(b) ) );
}
//! Same as IsApprox(), but only for positive numbers. Faster.
OBAPI inline bool IsApprox_pos(const double &a, const double &b,
const double precision = 1e-11)
{
return( fabs(a - b) <= precision * std::min<const double>( a, b ) );
}
/*! \brief Tests whether its argument can be squared without triggering
an overflow or underflow.
*/
OBAPI bool CanBeSquared(const double &);
OBAPI bool SafeOpen(std::ifstream &fs, const char *filename);
OBAPI bool SafeOpen(std::ofstream &fs, const char *filename);
#endif
// (end part to be skipped by SWIG)
//******************triple template*************************
//! \class triple obutil.h <openbabel/obutil.h>
//! \brief A 3-element templated, based on the design of the STL pair<>
template <class T1, class T2, class T3>
struct triple
{
//type names for the values
typedef T1 first_type;
typedef T2 second_type;
typedef T3 third_type;
//member
T1 first;
T2 second;
T3 third;
/** Default constructor
* T1() and T2() and T3() force initialization for built in types
**/
triple():
first(T1()),second(T2()),third(T3())
{}
//! Constructor for 3 values
triple(const T1 &a, const T2 &b, const T3 &c):
first(a), second(b), third(c)
{}
//! Copy constructor with implicit conversions
template<class U, class V, class W>
triple(const triple<U,V,W> &t):
first(t.first), second(t.second), third(t.third)
{}
};
//**************quad template********************
//! \class quad obutil.h <openbabel/obutil.h>
//! \brief A 4-element templated, based on the design of the STL pair<>
template <class T1, class T2, class T3, class T4>
struct quad
{
//type names for the values
typedef T1 first_type;
typedef T2 second_type;
typedef T3 third_type;
typedef T4 fourth_type;
//member
T1 first;
T2 second;
T3 third;
T4 fourth;
/*! default constructor
* T1() and T2() and T3() force initialization for built in types
*/
quad():
first(T1()),second(T2()),third(T3()),fourth(T4())
{}
//! constructor for 3 values
quad(const T1 &a, const T2 &b, const T3 &c, const T4 &d):
first(a), second(b), third(c), fourth(d)
{}
//! copy constructor with implicit conversions
template<class U, class V, class W, class X>
quad(const quad<U,V,W,X> &q):
first(q.first), second(q.second), third(q.third), fourth(q.fourth)
{}
};
} // end namespace OpenBabel
#endif // OBUTIL_H
//! \file obutil.h
//! \brief Various utility methods.
|