-
Notifications
You must be signed in to change notification settings - Fork 2
/
VI_config.py
70 lines (61 loc) · 2.78 KB
/
VI_config.py
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
# -*- coding: utf-8 -*-
"""
file with basic cellsuration settings
configs = {
name: value
for name, value in vars(config).items()
if not name.startswith('__')
}
configs_list = [
name
for name, value in vars(config).items()
if not name.startswith('__')
]
"""
# from Pars_class import Pars_gen
# import types
default = {}
# start folder
default['start_folder'] = '' # write data containing folder here
default['supress_ROIquestion'] = 0 # 0 - ask question, 1 - response no, 2 - yes
default['HeightfromZ'] = 0
default['ROImode'] = 0 # 0 - "no selection", 1 - "select above h-level",
# 2 - "draw", 3- "draw and select above h-level"
default['h_level'] = -10000 # nm, low value to select all points
default['save_short'] = 0
cells = {}
# start folder
cells['start_folder'] = '' # write data containing folder here
cells['supress_ROIquestion'] = 2 # 0 - ask question, 1 - response no, 2 - yes
cells['HeightfromZ'] = 1
cells['ROImode'] = 3 # 0 - "no selection", 1 - "select above h-level",
# 2 - "draw", 3- "draw and select above h-level"
cells['h_level'] = 200 # nm, select points above substarte level
cells['save_short'] = 1
singlecurves = {}
singlecurves['start_folder'] = '' # write data containing folder here
singlecurves['supress_ROIquestion'] = 3 # 0 - ask question, 1 - response no, 2 - yes, 3 - no flatten
singlecurves['HeightfromZ'] = 0
singlecurves['ROImode'] = 0 # 0 - "no selection", 1 - "select above h-level",
# 2 - "draw", 3- "draw and select above h-level"
singlecurves['h_level'] = 0 # nm, select points above substarte level
singlecurves['save_short'] = 0
biomomentum = {}
biomomentum['start_folder'] = 'D:/MailCloud/BioMomentum' # write data containing folder here
biomomentum['supress_ROIquestion'] = 3 # 0 - ask question, 1 - response no, 2 - yes, 3 - no flatten
biomomentum['HeightfromZ'] = 1
biomomentum['ROImode'] = 0 # 0 - "no selection", 1 - "select above h-level",
# 2 - "draw", 3- "draw and select above h-level"
biomomentum['h_level'] = 0 # nm, select points above substarte level
biomomentum['save_short'] = 1
cells_YE = {}
# start folder
cells_YE['start_folder'] = '' # write data containing folder here
cells_YE['supress_ROIquestion'] = 2 # 0 - ask question, 1 - response no, 2 - yes
cells_YE['HeightfromZ'] = 1
cells_YE['ROImode'] = 1 # 0 - "no selection", 1 - "select above h-level",
# 2 - "draw", 3- "draw and select above h-level"
cells_YE['h_level'] = 100 # nm, select points above substarte level
cells_YE['save_short'] = 1
# cells_YE['ReplacePars'] = types.SimpleNamespace()
# cells_YE['ReplacePars'].hydro.speedcoef = 5.0e-7