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
Paths and values related to a specific scan/data collection for a beamline
123
+
"""
52
124
type ScanPaths {
53
125
"""
54
126
The visit used to generate this scan information. Should be the same as the visit passed in
@@ -75,21 +147,33 @@ type ScanPaths {
75
147
}
76
148
77
149
"""
78
-
A template describing the location within a visit directory where the root scan file should be written
150
+
A template describing the location within a visit directory where the root scan file should be written. It should be a relative path and contain a placeholder for {scan_number} to ensure files are unique.
79
151
"""
80
152
scalar ScanTemplate
81
153
82
154
83
155
scalar Subdirectory
84
156
157
+
"""
158
+
The path to a visit directory and the components used to build it
159
+
"""
85
160
type VisitPath {
161
+
"""
162
+
The visit for which this is the visit directory
163
+
"""
86
164
visit: String!
165
+
"""
166
+
This beamline for which this is the visit directory
167
+
"""
87
168
beamline: String!
169
+
"""
170
+
The absolute path to the visit directory
171
+
"""
88
172
directory: String!
89
173
}
90
174
91
175
"""
92
-
A template describing the path to the visit directory for a beamline
176
+
A template describing the path to the visit directory for a beamline. It should be an absolute path and contain placeholders for {instrument} and {visit}.
0 commit comments