Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/World.hpp

    r5d880e rcf0ca1  
    6262friend class MoleculeDescriptor_impl;
    6363friend class MoleculeDescriptor;
     64// coupling with descriptors over selection
     65friend class AtomSelectionDescriptor_impl;
     66friend class MoleculeSelectionDescriptor_impl;
    6467
    6568// Actions, calculations etc associated with the World
     
    222225   * All these iterators are observed to track changes.
    223226   * There is a corresponding protected section with unobserved iterators,
    224    * which ca be used internally when the extra speed is needed
     227   * which can be used internally when the extra speed is needed
    225228   */
    226229
     
    239242  typedef SelectiveIterator<molecule*,MoleculeSet,MoleculeDescriptor>   MoleculeIterator;
    240243
     244  /**
     245   * returns an iterator over all Molecules matching a given descriptor.
     246   * This iterator is observed, so don't keep it around unnecessary to
     247   * avoid unintended blocking.
     248   */
    241249  MoleculeIterator getMoleculeIter(MoleculeDescriptor descr);
    242250  MoleculeIterator getMoleculeIter();
    243251
    244252  MoleculeIterator moleculeEnd();
     253
     254  /******** Selections of molecules and Atoms *************/
     255  void clearAtomSelection();
     256  void selectAtom(atom*);
     257  void selectAtom(atomId_t);
     258  void selectAllAtoms(AtomDescriptor);
     259  void selectAtomsOfMolecule(molecule*);
     260  void selectAtomsOfMolecule(moleculeId_t);
     261  void unselectAtom(atom*);
     262  void unselectAtom(atomId_t);
     263  void unselectAllAtoms(AtomDescriptor);
     264  void unselectAtomsOfMolecule(molecule*);
     265  void unselectAtomsOfMolecule(moleculeId_t);
     266
     267  void clearMoleculeSelection();
     268  void selectMolecule(molecule*);
     269  void selectMolecule(moleculeId_t);
     270  void selectAllMoleculess(MoleculeDescriptor);
     271  void selectMoleculeOfAtom(atom*);
     272  void selectMoleculeOfAtom(atomId_t);
     273  void unselectMolecule(molecule*);
     274  void unselectMolecule(moleculeId_t);
     275  void unselectAllMoleculess(MoleculeDescriptor);
     276  void unselectMoleculeOfAtom(atom*);
     277  void unselectMoleculeOfAtom(atomId_t);
     278
     279  /******************** Iterators to selections *****************/
     280  typedef AtomSet::iterator AtomSelectionIterator;
     281  AtomSelectionIterator beginAtomSelection();
     282  AtomSelectionIterator endAtomSelection();
     283
     284  typedef MoleculeSet::iterator MoleculeSelectionIterator;
     285  MoleculeSelectionIterator beginMoleculeSelection();
     286  MoleculeSelectionIterator endMoleculeSelection();
    245287
    246288protected:
     
    308350  class ThermoStatContainer *Thermostats;
    309351  int ExitFlag;
    310 public:
     352private:
     353
    311354  AtomSet atoms;
    312 private:
     355  AtomSet selectedAtoms;
    313356  typedef std::set<std::pair<atomId_t, atomId_t> > atomIdPool_t;
    314 
    315357  /**
    316358   * stores the pool for all available AtomIds below currAtomId
     
    324366
    325367  MoleculeSet molecules;
     368  MoleculeSet selectedMolecules;
    326369  typedef std::set<std::pair<moleculeId_t, moleculeId_t> > moleculeIdPool_t;
     370  /**
     371   * stores the pool for all available AtomIds below currAtomId
     372   *
     373   * The pool contains ranges of free ids in the form [bottom,top).
     374   */
    327375  moleculeIdPool_t moleculeIdPool;
    328376  moleculeId_t currMoleculeId;
Note: See TracChangeset for help on using the changeset viewer.