Chemical Data Processing Library C++ API - Version 1.4.0
BasicPharmacophore.hpp
Go to the documentation of this file.
1 /*
2  * BasicPharmacophore.hpp
3  *
4  * This file is part of the Chemical Data Processing Toolkit
5  *
6  * Copyright (C) 2003 Thomas Seidel <thomas.seidel@univie.ac.at>
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public License
19  * along with this library; see the file COPYING. If not, write to
20  * the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21  * Boston, MA 02111-1307, USA.
22  */
23 
29 #ifndef CDPL_PHARM_BASICPHARMACOPHORE_HPP
30 #define CDPL_PHARM_BASICPHARMACOPHORE_HPP
31 
32 #include <vector>
33 
34 #include <boost/iterator/indirect_iterator.hpp>
35 
36 #include "CDPL/Pharm/APIPrefix.hpp"
39 #include "CDPL/Util/ObjectPool.hpp"
40 
41 
42 namespace CDPL
43 {
44 
45  namespace Pharm
46  {
47 
53  {
54 
56  typedef FeatureCache::SharedObjectPointer FeaturePointer;
57  typedef std::vector<FeaturePointer> FeatureList;
58 
59  public:
63  typedef std::shared_ptr<BasicPharmacophore> SharedPointer;
64 
68  typedef boost::indirect_iterator<FeatureList::iterator, BasicFeature> FeatureIterator;
69 
73  typedef boost::indirect_iterator<FeatureList::const_iterator, const BasicFeature> ConstFeatureIterator;
74 
79 
85 
91 
97  explicit BasicPharmacophore(const FeatureContainer& cntnr);
98 
105 
109  void clear();
110 
115  std::size_t getNumFeatures() const;
116 
122 
128 
134 
140 
147  const BasicFeature& getFeature(std::size_t idx) const;
148 
155  BasicFeature& getFeature(std::size_t idx);
156 
162 
168  void removeFeature(std::size_t idx);
169 
177 
183  bool containsFeature(const Feature& feature) const;
184 
191  std::size_t getFeatureIndex(const Feature& feature) const;
192 
203 
204  using Pharmacophore::operator=;
205 
216 
217  using Pharmacophore::operator+=;
218 
224 
230  void copy(const BasicPharmacophore& pharm);
231 
236  void copy(const Pharmacophore& pharm);
237 
242  void copy(const FeatureContainer& cntnr);
243 
250  void append(const BasicPharmacophore& pharm);
251 
257  void append(const Pharmacophore& pharm);
258 
264  void append(const FeatureContainer& cntnr);
265 
271  void remove(const FeatureContainer& cntnr);
272 
278 
279  private:
280  template <typename T>
281  void doCopy(const T& pharm);
282 
283  template <typename T>
284  void doAppend(const T& pharm);
285 
286  void clearFeatures();
287 
288  void renumberFeatures(std::size_t idx);
289 
290  BasicFeature* createFeature();
291 
292  static void destroyFeature(BasicFeature* feature);
293  static void clearFeature(BasicFeature& feature);
294 
295  FeatureCache featureCache;
296  FeatureList features;
297  };
298  } // namespace Pharm
299 } // namespace CDPL
300 
301 #endif // CDPL_PHARM_BASICPHARMACOPHORE_HPP
Definition of class CDPL::Pharm::BasicFeature.
Definition of class CDPL::Util::ObjectPool.
Definition of the preprocessor macro CDPL_PHARM_API.
#define CDPL_PHARM_API
Tells the compiler/linker which classes, functions and variables are part of the library API.
Definition of class CDPL::Pharm::Pharmacophore.
Pharm::Feature implementation owned by a Pharm::BasicPharmacophore parent.
Definition: BasicFeature.hpp:48
Concrete Pharm::Pharmacophore implementation that owns its features as Pharm::BasicFeature instances ...
Definition: BasicPharmacophore.hpp:53
void clear()
Removes all stored features and clears all properties.
ConstFeatureIterator getFeaturesBegin() const
Returns a constant iterator pointing to the beginning of the features.
void copy(const FeatureContainer &cntnr)
Replaces the current set of features by copies of the features in the feature container cntnr.
ConstFeatureIterator getFeaturesEnd() const
Returns a constant iterator pointing to the end of the features.
void remove(const FeatureContainer &cntnr)
Removes the features stored in cntnr from this pharmacophore.
void removeFeature(std::size_t idx)
Removes the feature at index idx.
boost::indirect_iterator< FeatureList::iterator, BasicFeature > FeatureIterator
A mutable random access iterator used to iterate over the stored Pharm::BasicFeature objects.
Definition: BasicPharmacophore.hpp:68
BasicPharmacophore(const BasicPharmacophore &pharm)
Constructs a copy of the BasicPharmacophore instance pharm.
BasicPharmacophore(const FeatureContainer &cntnr)
Constructs a BasicPharmacophore instance with copies of the features in the Pharm::FeatureContainer i...
bool containsFeature(const Feature &feature) const
Tells whether the specified feature is part of this pharmacophore.
BasicPharmacophore & operator=(const BasicPharmacophore &pharm)
Replaces the current set of features by a copy of the features and properties of the pharmacophore ph...
BasicFeature & getFeature(std::size_t idx)
Returns a non-const reference to the feature at index idx.
BasicFeature & addFeature()
Allocates a new Pharm::BasicFeature in this pharmacophore and returns a reference to it.
void copy(const BasicPharmacophore &pharm)
Replaces the current set of features and properties by a copy of the features and properties of the p...
Pharmacophore::SharedPointer clone() const
Creates a deep copy of this pharmacophore.
boost::indirect_iterator< FeatureList::const_iterator, const BasicFeature > ConstFeatureIterator
A constant random access iterator used to iterate over the stored const Pharm::BasicFeature objects.
Definition: BasicPharmacophore.hpp:73
std::size_t getFeatureIndex(const Feature &feature) const
Returns the zero-based index of feature in this pharmacophore.
std::size_t getNumFeatures() const
Returns the number of features.
std::shared_ptr< BasicPharmacophore > SharedPointer
A reference-counted smart pointer [SHPTR] for dynamically allocated BasicPharmacophore instances.
Definition: BasicPharmacophore.hpp:63
void copy(const Pharmacophore &pharm)
Replaces the current set of features and properties by a copy of the features and properties of pharm...
void orderFeatures(const FeatureCompareFunction &func)
Orders the stored features according to func.
void append(const BasicPharmacophore &pharm)
Extends the current set of features by a copy of the features in the pharmacophore pharm.
BasicPharmacophore & operator+=(const BasicPharmacophore &pharm)
Extends the current set of features by a copy of the features in the pharmacophore pharm.
FeatureIterator removeFeature(const FeatureIterator &it)
Removes the feature specified by the iterator it.
BasicPharmacophore()
Constructs an empty BasicPharmacophore instance.
void append(const FeatureContainer &cntnr)
Extends the current set of features by copies of the features in cntnr.
FeatureIterator getFeaturesEnd()
Returns a mutable iterator pointing to the end of the features.
FeatureIterator getFeaturesBegin()
Returns a mutable iterator pointing to the beginning of the features.
BasicPharmacophore(const Pharmacophore &pharm)
Constructs a copy of the Pharm::Pharmacophore instance pharm.
const BasicFeature & getFeature(std::size_t idx) const
Returns a const reference to the feature at index idx.
void append(const Pharmacophore &pharm)
Extends the current set of features by copies of the features in pharm.
Abstract base class for containers holding a sequence of Pharm::Feature objects with associated prope...
Definition: FeatureContainer.hpp:55
Abstract base class representing a single pharmacophore feature within a parent Pharm::Pharmacophore.
Definition: Feature.hpp:48
Abstract base class for mutable containers of Pharm::Feature instances representing a pharmacophore m...
Definition: Pharmacophore.hpp:53
std::shared_ptr< Pharmacophore > SharedPointer
A reference-counted smart pointer [SHPTR] for dynamically allocated Pharmacophore instances.
Definition: Pharmacophore.hpp:59
std::shared_ptr< ObjectType > SharedObjectPointer
A smart pointer to a borrowed object that returns the object to the pool on destruction.
Definition: ObjectPool.hpp:71
constexpr unsigned int T
Specifies Hydrogen (Tritium).
Definition: AtomType.hpp:67
std::function< bool(const Feature &, const Feature &)> FeatureCompareFunction
Generic wrapper class used to store a user-defined feature compare function.
Definition: FeatureCompareFunction.hpp:41
The namespace of the Chemical Data Processing Library.