/** * \file IMP/misc/LowestRefinedPairScore.h * \brief Score on the lowest scoring pair of the refined pairs. * * Copyright 2007-2013 IMP Inventors. All rights reserved. */ #ifndef IMPMISC_LOWEST_REFINED_PAIR_SCORE_H #define IMPMISC_LOWEST_REFINED_PAIR_SCORE_H #include #include #include #include #include #include IMPMISC_BEGIN_NAMESPACE //! Refine both particles with the refiner and score on the lowest pair. /** Score on the lowest of the pairs defined by refining the two particles. */ class IMPMISCEXPORT LowestRefinedPairScore : public PairScore { IMP::OwnerPointer r_; IMP::OwnerPointer f_; public: /** \param[in] r The Refiner to call on each particle \param[in] f The pair score to apply to the generated pairs */ LowestRefinedPairScore(Refiner *r, PairScore *f); IMP_INDEX_PAIR_SCORE(LowestRefinedPairScore); }; IMPMISC_END_NAMESPACE #endif /* IMPMISC_LOWEST_REFINED_PAIR_SCORE_H */