Structural Bioinformatics Library
Template C++ / Python API for developping structural bioinformatics applications.
Atom selection

Classes

struct  Select_by_resname
 
struct  Select_by_atmname
 
struct  Select_by_element
 
class  Select_by_chainids
 

Description

This module gathers function objects to make a selection using an atoms. Such a function object must be a class of the following type:

class Atom_selection_concept{
template <class Atom>
bool operator() (const Atom& atom) const
{ ... }
}

Within such function objects, it is advised to use global function (prefixed by get_) so as to be used with an atom class or a molecular file line.