You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description="Directories to be created within each visit",
39
+
)
28
40
analyse_created_directories: List[str] = []
29
41
gain_reference_directory: Optional[Path] =None
30
42
eer_fractionation_file_template: str=""
43
+
gain_reference_directory: Optional[Path] =Field(
44
+
default=None,
45
+
description="Directory in which the gain reference is written from the detector",
46
+
)
31
47
processed_directory_name: str="processed"
32
48
gain_directory_name: str="processing"
33
49
node_creator_queue: str="node_creator"
34
-
superres: bool=False
35
-
camera: str="FALCON"
50
+
superres: bool=Field(
51
+
default=False, description="Is the detector on this instrument a GATAN K3?"
52
+
)
53
+
camera: Literal["FALCON", "K3", ""] =Field(
54
+
default="FALCON",
55
+
description="What camera is the instrument equipped with? Only relevant for TEM instruments. Use the option closest to your case. This is used to determine whether the gain reference needs to be binned down from superres",
0 commit comments