Project

General

Profile

Setup Ceta to use Advanced TEM Scripting » History » Version 2

Anchi Cheng, 12/06/2019 04:26 PM

1 1 Anchi Cheng
h1. Setup Ceta to use Advanced TEM Scripting
2
3
At this point, only one camera can be controlled through Advanced TEM Scripting.  If the system has both Falcon and Ceta camera, Falcon camera has to be removed from instruments.cfg and Ceta camera should use feicam rather than tia python module in instruments.cfg.
4
5
h2. Example of proper instruments.cfg for diffraction recording
6
7 2 Anchi Cheng
The exact module name (camera1,camera2,cetacam in this example) is not important.  They just need to be unique. Class name needs to be exact match to the actual class.
8
9 1 Anchi Cheng
<pre>
10
#[camera1]
11
#class: feicam.Falcon3
12
#zplane: 50
13
#height: 4096
14
#width: 4096
15
#[camera2]
16
#class: feicam.Falcon3EC
17
#zplane: 50
18
#height: 4096
19
#width: 4096
20 2 Anchi Cheng
[cetacam]
21 1 Anchi Cheng
#class: tia.TIA_Ceta
22
class: feicam.Ceta
23
zplane: 50
24
height: 4096
25
width: 4096
26
</pre>