/usr/include/rdkit/GraphMol/Bond.h is in librdkit-dev 201309-1.
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 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 | //
// Copyright (C) 2001-2010 Greg Landrum and Rational Discovery LLC
//
// @@ All Rights Reserved @@
// This file is part of the RDKit.
// The contents are covered by the terms of the BSD license
// which is included in the file license.txt, found at the root
// of the RDKit source tree.
//
#ifndef _RD_BOND_H
#define _RD_BOND_H
// std stuff
#include <iostream>
// Ours
// FIX: grn...
#include <Query/QueryObjects.h>
#include <RDGeneral/types.h>
namespace RDKit{
class ROMol;
class RWMol;
class Atom;
typedef boost::shared_ptr<Atom> ATOM_SPTR;
//! class for representing a bond
/*!
<b>Notes:</b>
- many of the methods of Atom require that the Atom be associated
with a molecule (an ROMol).
- each Bond maintains a Dict of \c properties:
- Each \c property is keyed by name and can store an
arbitrary type.
- \c Properties can be marked as \c calculated, in which case
they will be cleared when the \c clearComputedProps() method
is called.
- Because they have no impact upon chemistry, all \c property
operations are \c const, this allows extra flexibility for
clients who need to store extra data on Bond objects.
*/
class Bond {
friend class RWMol;
friend class ROMol;
public:
typedef boost::shared_ptr<Bond> BOND_SPTR;
// FIX: grn...
typedef Queries::Query<int,Bond const *,true> QUERYBOND_QUERY;
//! the type of Bond
typedef enum {
UNSPECIFIED = 0,
SINGLE,
DOUBLE,
TRIPLE,
QUADRUPLE,
QUINTUPLE,
HEXTUPLE,
ONEANDAHALF,
TWOANDAHALF,
THREEANDAHALF,
FOURANDAHALF,
FIVEANDAHALF,
AROMATIC,
IONIC,
HYDROGEN,
THREECENTER,
DATIVEONE, //!< one-electron dative (e.g. from a C in a Cp ring to a metal)
DATIVE, //!< standard two-electron dative
DATIVEL, //!< standard two-electron dative
DATIVER, //!< standard two-electron dative
OTHER
} BondType;
//! the bond's direction (for chirality)
typedef enum {
NONE=0, //!< no special style
BEGINWEDGE, //!< wedged: narrow at begin
BEGINDASH, //!< dashed: narrow at begin
// FIX: this may not really be adequate
ENDDOWNRIGHT, //!< for cis/trans
ENDUPRIGHT, //!< ditto
EITHERDOUBLE, //!< a "crossed" double bond
UNKNOWN, //!< intentionally unspecified stereochemistry
} BondDir;
//! the nature of the bond's stereochem (for cis/trans)
typedef enum { // stereochemistry of double bonds
STEREONONE=0, // no special style
STEREOANY, // intentionally unspecified
// -- Put any true specifications about this point so
// that we can do comparisons like if(bond->getStereo()>Bond::STEREOANY)
STEREOZ, // Z double bond
STEREOE, // E double bond
} BondStereo;
Bond();
//! construct with a particular BondType
explicit Bond(BondType bT);
Bond(const Bond &other);
virtual ~Bond();
Bond &operator=(const Bond &other);
//! returns a copy
/*!
<b>Note:</b> the caller is responsible for <tt>delete</tt>ing
the returned pointer.
*/
virtual Bond *copy() const;
//! returns our \c bondType
BondType getBondType() const { return d_bondType; };
//! sets our \c bondType
void setBondType(BondType bT) { d_bondType = bT; };
//! \brief returns our \c bondType as a double
//! (e.g. SINGLE->1.0, AROMATIC->1.5, etc.)
double getBondTypeAsDouble() const;
//! returns our contribution to the explicit valence of an Atom
/*!
<b>Notes:</b>
- requires an owning molecule
*/
double getValenceContrib(const Atom *at) const;
// \overload
double getValenceContrib(ATOM_SPTR at) const;
//! sets our \c isAromatic flag
void setIsAromatic( bool what ) { df_isAromatic = what; };
//! returns the status of our \c isAromatic flag
bool getIsAromatic() const { return df_isAromatic; };
//! sets our \c isConjugated flag
void setIsConjugated(bool what) {df_isConjugated = what;};
//! returns the status of our \c isConjugated flag
bool getIsConjugated() const {return df_isConjugated;};
//! returns a reference to the ROMol that owns this Bond
ROMol &getOwningMol() const { return *dp_mol; };
//! sets our owning molecule
void setOwningMol(ROMol *other);
//! sets our owning molecule
void setOwningMol(ROMol &other) {setOwningMol(&other);};
//! returns our index within the ROMol
/*!
<b>Notes:</b>
- this makes no sense if we do not have an owning molecule
*/
unsigned int getIdx() const {return d_index;};
//! sets our index within the ROMol
/*!
<b>Notes:</b>
- this makes no sense if we do not have an owning molecule
- the index should be <tt>< this->getOwningMol()->getNumBonds()</tt>
*/
void setIdx(unsigned int index) {d_index=index;};
//! returns the index of our begin Atom
/*!
<b>Notes:</b>
- this makes no sense if we do not have an owning molecule
*/
unsigned int getBeginAtomIdx() const { return d_beginAtomIdx; };
//! returns the index of our end Atom
/*!
<b>Notes:</b>
- this makes no sense if we do not have an owning molecule
*/
unsigned int getEndAtomIdx() const { return d_endAtomIdx; };
//! given the index of one Atom, returns the index of the other
/*!
<b>Notes:</b>
- this makes no sense if we do not have an owning molecule
*/
unsigned int getOtherAtomIdx(unsigned int thisIdx) const;
//! sets the index of our begin Atom
/*!
<b>Notes:</b>
- requires an owning molecule
*/
void setBeginAtomIdx(unsigned int what);
//! sets the index of our end Atom
/*!
<b>Notes:</b>
- requires an owning molecule
*/
void setEndAtomIdx(unsigned int what);
//! sets our begin Atom
/*!
<b>Notes:</b>
- requires an owning molecule
*/
void setBeginAtom(Atom *at);
//! \overload
void setBeginAtom(ATOM_SPTR at);
//! sets our end Atom
/*!
<b>Notes:</b>
- requires an owning molecule
*/
void setEndAtom(Atom *at);
//! \overload
void setEndAtom(ATOM_SPTR at);
//! returns a pointer to our begin Atom
/*!
<b>Notes:</b>
- requires an owning molecule
*/
Atom *getBeginAtom() const;
//! returns a pointer to our end Atom
/*!
<b>Notes:</b>
- requires an owning molecule
*/
Atom *getEndAtom() const;
//! returns a pointer to the other Atom
/*!
<b>Notes:</b>
- requires an owning molecule
*/
Atom *getOtherAtom(Atom const *what) const;
// ------------------------------------
// Please see the note in Atom.h for some explanation
// of these methods
// ------------------------------------
// This method can be used to distinguish query bonds from standard bonds
virtual bool hasQuery() const { return false; };
// FIX: the const crap here is all mucked up.
//! NOT CALLABLE
virtual void setQuery(QUERYBOND_QUERY *what);
//! NOT CALLABLE
virtual QUERYBOND_QUERY *getQuery() const;
//! NOT CALLABLE
virtual void expandQuery(QUERYBOND_QUERY *what,
Queries::CompositeQueryType how=Queries::COMPOSITE_AND,
bool maintainOrder=true);
//! returns whether or not we match the argument
/*!
<b>Notes:</b>
- for Bond objects, "match" means that either one of the Bonds
has \c bondType Bond::UNSPECIFIED or both Bonds have the
same \c bondType.
*/
virtual bool Match(Bond const *what) const;
//! \overload
virtual bool Match(const Bond::BOND_SPTR what) const;
//! sets our direction
void setBondDir(BondDir what) { d_dirTag = what; };
//! returns our direction
BondDir getBondDir() const { return d_dirTag; };
//! sets our stereo code
void setStereo(BondStereo what) { d_stereo = what; };
//! returns our stereo code
BondStereo getStereo() const { return d_stereo; };
//! returns the indices of our stereo atoms
const INT_VECT &getStereoAtoms() const { return d_stereoAtoms; };
//! \overload
INT_VECT &getStereoAtoms() { return d_stereoAtoms; };
// ------------------------------------
// Local Property Dict functionality
// FIX: at some point this stuff should go in a mixin class
// ------------------------------------
//! returns a list with the names of our \c properties
STR_VECT getPropList() const {
return dp_props->keys();
}
//! sets a \c property value
/*!
\param key the name under which the \c property should be stored.
If a \c property is already stored under this name, it will be
replaced.
\param val the value to be stored
\param computed (optional) allows the \c property to be flagged
\c computed.
*/
template <typename T>
void setProp(const char *key,T val, bool computed=false) const{
//if(!dp_props) dp_props = new Dict();
std::string what(key);
setProp(what,val, computed);
}
//! \overload
template <typename T>
void setProp(const std::string key,T val, bool computed=false ) const{
//setProp(key.c_str(),val);
if (computed) {
STR_VECT compLst;
if(hasProp(detail::computedPropName)) getProp(detail::computedPropName, compLst);
if (std::find(compLst.begin(), compLst.end(), key) == compLst.end()) {
compLst.push_back(key);
dp_props->setVal(detail::computedPropName, compLst);
}
}
dp_props->setVal(key,val);
}
//! allows retrieval of a particular property value
/*!
\param key the name under which the \c property should be stored.
If a \c property is already stored under this name, it will be
replaced.
\param res a reference to the storage location for the value.
<b>Notes:</b>
- if no \c property with name \c key exists, a KeyErrorException will be thrown.
- the \c boost::lexical_cast machinery is used to attempt type conversions.
If this fails, a \c boost::bad_lexical_cast exception will be thrown.
*/
template <typename T>
void getProp(const char *key,T &res) const {
PRECONDITION(dp_props,"getProp called on empty property dict");
dp_props->getVal(key,res);
}
//! \overload
template <typename T>
void getProp(const std::string key,T &res) const {
PRECONDITION(dp_props,"getProp called on empty property dict");
dp_props->getVal(key,res);
}
//! \overload
template <typename T>
T getProp(const char *key) const {
return dp_props->getVal<T>(key);
}
//! \overload
template <typename T>
T getProp(const std::string key) const {
return dp_props->getVal<T>(key);
}
//! returns whether or not we have a \c property with name \c key
bool hasProp(const char *key) const {
if(!dp_props) return false;
return dp_props->hasVal(key);
};
//! \overload
bool hasProp(const std::string key) const {
if(!dp_props) return false;
return dp_props->hasVal(key);
};
//! clears the value of a \c property
/*!
<b>Notes:</b>
- if no \c property with name \c key exists, a KeyErrorException
will be thrown.
- if the \c property is marked as \c computed, it will also be removed
from our list of \c computedProperties
*/
void clearProp(const char *key) const {
std::string what(key);
clearProp(what);
};
//! \overload
void clearProp(const std::string key) const {
if(hasProp(detail::computedPropName)){
STR_VECT compLst;
getProp(detail::computedPropName, compLst);
STR_VECT_I svi = std::find(compLst.begin(), compLst.end(), key);
if (svi != compLst.end()) {
compLst.erase(svi);
dp_props->setVal(detail::computedPropName, compLst);
}
}
dp_props->clearVal(key);
};
//! clears all of our \c computed \c properties
void clearComputedProps() const {
if(!hasProp(detail::computedPropName)) return;
STR_VECT compLst;
getProp(detail::computedPropName, compLst);
STR_VECT_CI svi;
for (svi = compLst.begin(); svi != compLst.end(); svi++) {
dp_props->clearVal(*svi);
}
compLst.clear();
dp_props->setVal(detail::computedPropName, compLst);
}
//! calculates any of our lazy \c properties
/*!
<b>Notes:</b>
- requires an owning molecule
*/
void updatePropertyCache(bool strict=true) { (void)strict; }
protected:
//! sets our owning molecule
//void setOwningMol(ROMol *other);
//! sets our owning molecule
//void setOwningMol(ROMol &other) {setOwningMol(&other);};
BondType d_bondType;
ROMol *dp_mol;
bool df_isAromatic;
bool df_isConjugated;
unsigned int d_index;
unsigned int d_beginAtomIdx,d_endAtomIdx;
BondDir d_dirTag;
BondStereo d_stereo;
INT_VECT d_stereoAtoms;
//Atom::ATOM_SPTR dsp_beginAtom,dsp_endAtom;
Dict *dp_props;
void initBond();
};
};
//! allows Bond objects to be dumped to streams
extern std::ostream & operator<<(std::ostream& target, const RDKit::Bond &b);
#endif
|