File: ionMapExample.xml

package info (click to toggle)
3depict 0.0.23-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 18,628 kB
  • sloc: cpp: 75,669; sh: 6,436; xml: 1,608; python: 350; ansic: 190; makefile: 177
file content (22 lines) | stat: -rw-r--r-- 805 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!-- This is an example of an "ion map" file. You can specify arbitrary strings 
 that 3depict can, in some cases, use to break up ions when doing things like reporting composition
 -->
<ionmap>
	<!-- These are the entries in the ion map. Each entry changes a source ion (in this case TiO) into some target components.
	 each uniquely named entry can only occur once.
	-->
	<entry name="TiO">
		<ion name="Ti" count="1"/>
		<ion name="O" count="1"/>
	</entry>
	<entry name="TiO2">
		<ion name="Ti" count="1"/>
		<ion name="O" count="2"/>
	</entry>
	<!-- the entry names need not match the fragments. 
	  Here benzene is converted to 6 C ions ,and 6 H ions, as benzene has the molecular formula C6H6 -->
	<entry name="Benzene">
		<ion  name="C" count="6"/>
		<ion  name="H" count="6"/>
	</entry>
</ionmap>