File: system.sip

package info (click to toggle)
ball 1.5.0%2Bgit20180813.37fc53c-6
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 239,888 kB
  • sloc: cpp: 326,149; ansic: 4,208; python: 2,303; yacc: 1,778; lex: 1,099; xml: 958; sh: 322; makefile: 95
file content (74 lines) | stat: -rw-r--r-- 2,147 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
class System
	: AtomContainer,
	  PropertyManager
{
%TypeHeaderCode
	#include <BALL/KERNEL/system.h>
%End
	public:
	System();
	System(const System&, bool deep = true);
	System(const String&);
	~System() throw();

	virtual void clear() throw();
	virtual void destroy() throw();
	void set(const System&, bool = true);
	void get(System&, bool = true) const;
	void swap(System&);
	void setName(const String&);
	const String& getName() const;
	Molecule* getMolecule(Position position);
	Protein* getProtein(Position position);
	Size countMolecules() const;
	Size countFragments() const;
	Size countAtoms() const;
	Size countSecondaryStructures() const;
	Size countResidues() const;
	Size countChains() const;
	Size countProteins() const;

	void prepend(Molecule& /Transfer/);
	void append(Molecule& /Transfer/);
	void insert(Molecule& /Transfer/);
	void insertBefore(Molecule& /Transfer/, Composite&);
	void insertAfter(Molecule& /Transfer/, Composite&);
	bool remove(Molecule&);
	void spliceBefore(System&);
	void spliceAfter(System&);
	void splice(System&);
	void destroyBonds();
	virtual bool isValid() const throw();

	FragmentIterator iterfragments();
%MethodCode
	return BALL_CONVERT_FROM_INSTANCE(new FragmentIterator(sipCpp->beginFragment()), FragmentIterator, Py_None);
%End

	ChainIterator iterchains();
%MethodCode
	return BALL_CONVERT_FROM_INSTANCE(new ChainIterator(sipCpp->beginChain()), ChainIterator, Py_None);
%End

	ResidueIterator iterresidues();
%MethodCode
	return BALL_CONVERT_FROM_INSTANCE(new ResidueIterator(sipCpp->beginResidue()), ResidueIterator, Py_None);
%End

	MoleculeIterator itermolecules();
%MethodCode
	return BALL_CONVERT_FROM_INSTANCE(new MoleculeIterator(sipCpp->beginMolecule()), MoleculeIterator, Py_None);
%End

	ProteinIterator iterproteins();
%MethodCode
	return BALL_CONVERT_FROM_INSTANCE(new ProteinIterator(sipCpp->beginProtein()), ProteinIterator, Py_None);
%End

	SIP_PYOBJECT __str__();
%MethodCode
	sipRes = PyString_FromString(String(String("System ") + sipCpp->getName()
		+ " { " + String(sipCpp->countMolecules()) + " molecules,  "
		+ String(sipCpp->countAtoms()) + " atoms }").c_str());
%End
};