Changes in src/World.hpp [5d880e:cf0ca1]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/World.hpp
r5d880e rcf0ca1 62 62 friend class MoleculeDescriptor_impl; 63 63 friend class MoleculeDescriptor; 64 // coupling with descriptors over selection 65 friend class AtomSelectionDescriptor_impl; 66 friend class MoleculeSelectionDescriptor_impl; 64 67 65 68 // Actions, calculations etc associated with the World … … 222 225 * All these iterators are observed to track changes. 223 226 * There is a corresponding protected section with unobserved iterators, 224 * which ca be used internally when the extra speed is needed227 * which can be used internally when the extra speed is needed 225 228 */ 226 229 … … 239 242 typedef SelectiveIterator<molecule*,MoleculeSet,MoleculeDescriptor> MoleculeIterator; 240 243 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 */ 241 249 MoleculeIterator getMoleculeIter(MoleculeDescriptor descr); 242 250 MoleculeIterator getMoleculeIter(); 243 251 244 252 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(); 245 287 246 288 protected: … … 308 350 class ThermoStatContainer *Thermostats; 309 351 int ExitFlag; 310 public: 352 private: 353 311 354 AtomSet atoms; 312 private: 355 AtomSet selectedAtoms; 313 356 typedef std::set<std::pair<atomId_t, atomId_t> > atomIdPool_t; 314 315 357 /** 316 358 * stores the pool for all available AtomIds below currAtomId … … 324 366 325 367 MoleculeSet molecules; 368 MoleculeSet selectedMolecules; 326 369 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 */ 327 375 moleculeIdPool_t moleculeIdPool; 328 376 moleculeId_t currMoleculeId;
Note:
See TracChangeset
for help on using the changeset viewer.