8 #ifndef IMPKERNEL_DECORATOR_H
9 #define IMPKERNEL_DECORATOR_H
11 #include <IMP/kernel_config.h>
12 #include "base_types.h"
18 #include "Constraint.h"
19 #include "internal/utility.h"
24 IMPKERNEL_BEGIN_NAMESPACE
25 class ParticleAdaptor;
122 if (o < get_particle())
124 else if (o > get_particle())
132 : model_(m), pi_(pi), is_valid_(
true) {}
145 bool __eq__(
Object* o)
const {
return operator==(o); }
146 bool __ne__(
Object* o)
const {
return operator!=(o); }
147 bool __lt__(
Object* o)
const {
return operator<(o); }
148 bool __gt__(
Object* o)
const {
return operator>(o); }
149 bool __ge__(
Object* o)
const {
return operator>=(o); }
150 bool __le__(
Object* o)
const {
return operator<=(o); }
152 bool operator==(
Object* o)
const {
return (
compare(o) == 0); }
153 bool operator!=(
Object* o)
const {
return (
compare(o) != 0); }
156 bool operator>=(
Object* o)
const {
return !(
compare(o) < 0); }
157 bool operator<=(
Object* o)
const {
return !(
compare(o) > 0); }
174 "Particle " << pi_ <<
" is no longer part of the model.");
175 return model_->get_particle(pi_);
180 operator Particle*()
const {
return get_particle(); }
181 Particle* operator->()
const {
return get_particle(); }
182 operator ParticleIndex()
const {
return get_particle_index(); }
203 #if !defined(IMP_DOXYGEN) && !defined(SWIG)
204 typedef boost::false_type DecoratorHasTraits;
211 IMPKERNELEXPORT
void check_particle(Model *m,
ParticleIndex pi);
213 IMPKERNEL_DEPRECATED_FUNCTION_DECL(2.5)
214 inline
void check_particle(Particle* p) {
215 IMPKERNEL_DEPRECATED_FUNCTION_DEF(2.5,
"Use the index version instead");
216 check_particle(p->get_model(), p->get_index());
220 IMPKERNEL_END_NAMESPACE
ParticleIndex get_particle_index() const
Returns the particle index decorated by this decorator.
Smart pointer to Object-derived classes that does not refcount.
#define IMP_HASHABLE_INLINE(name, hashret)
Model * get_model() const
Returns the Model containing the particle.
Storage of a model, its restraints, constraints and particles.
Index< ParticleIndexTag > ParticleIndex
Class for storing model, its restraints, constraints, and particles.
Base for a simple primitive-like type.
Common base class for heavy weight IMP objects.
int compare(const VectorD< D > &a, const VectorD< D > &b)
lexicographic comparison of two vectors
Various general useful macros for IMP.
A nullptr-initialized pointer to an Object.
A class for storing lists of IMP items.
For backwards compatibility.
bool get_is_valid() const
Particle * get_particle() const
Returns the particle decorated by this decorator.
Classes to handle individual model particles. (Note that implementation of inline functions is in int...
A shared base class to help in debugging and things.
Class to handle individual model particles.
#define IMP_USAGE_CHECK(expr, message)
A runtime test for incorrect usage of a class or method.