-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathgrating_priority.py
More file actions
403 lines (370 loc) · 21.7 KB
/
grating_priority.py
File metadata and controls
403 lines (370 loc) · 21.7 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
import numpy as np
GRATING_PRIORITIES_HASP = {'STIS/E140M': {'minwave': 1141.6, 'maxwave': 1727.2, 'priority': 1},
'COS/G130M': {'minwave': 900, 'maxwave': 1470, 'priority': 2},
'COS/G160M': {'minwave': 1342, 'maxwave': 1800, 'priority': 3},
'STIS/E140H': {'minwave': 1141.1, 'maxwave': 1687.9, 'priority': 4},
'STIS/G140M': {'minwave': 1145.1, 'maxwave': 1741.9, 'priority': 5},
'STIS/E230M': {'minwave': 1606.7, 'maxwave': 3119.2, 'priority': 6},
'STIS/E230H': {'minwave': 1629.0, 'maxwave': 3156.0, 'priority': 7},
'STIS/G230M': {'minwave': 1641.8, 'maxwave': 3098.2, 'priority': 8},
'COS/G140L': {'minwave': 901, 'maxwave': 2150, 'priority': 9},
'STIS/G230MB': {'minwave': 1635.0, 'maxwave': 3184.5, 'priority': 10},
'COS/G185M': {'minwave': 1664, 'maxwave': 2134, 'priority': 11},
'COS/G225M': {'minwave': 2069, 'maxwave': 2526, 'priority': 12},
'COS/G285M': {'minwave': 2474, 'maxwave': 3221, 'priority': 13},
'STIS/G140L': {'minwave': 1138.4, 'maxwave': 1716.4, 'priority': 14},
'STIS/G430M': {'minwave': 3021.9, 'maxwave': 5610.1, 'priority': 15},
'STIS/G230L': {'minwave': 1582.0, 'maxwave': 3158.7, 'priority': 16},
'STIS/G230LB': {'minwave': 1667.1, 'maxwave': 3071.6, 'priority': 17},
'COS/G230L': {'minwave': 1650, 'maxwave': 3200, 'priority': 18},
'STIS/G750M': {'minwave': 5464.6, 'maxwave': 10645.1, 'priority': 19},
'STIS/G430L': {'minwave': 2895.9, 'maxwave': 5704.4, 'priority': 20},
'STIS/G750L': {'minwave': 5261.3, 'maxwave': 10252.3, 'priority': 21},
}
GRATING_PRIORITIES_HSLA = {"STIS/E140H": {"minwave": 1141.1, "maxwave": 1687.9, "priority": 1},
"STIS/E230H": {"minwave": 1629.0, "maxwave": 3156.0, "priority": 2},
"STIS/E140M": {"minwave": 1141.6, "maxwave": 1727.2, "priority": 3},
"COS/G130M": {"minwave": 900, "maxwave": 1470, "priority": 4},
"COS/G160M": {"minwave": 1342, "maxwave": 1800, "priority": 5},
"STIS/E230M": {"minwave": 1606.7, "maxwave": 3119.2, "priority": 6},
"COS/G185M": {"minwave": 1664, "maxwave": 2134, "priority": 7},
"COS/G285M": {"minwave": 2474, "maxwave": 3221, "priority": 8},
"COS/G225M": {"minwave": 2069, "maxwave": 2526, "priority": 9},
"STIS/G140M": {"minwave": 1145.1, "maxwave": 1741.9, "priority": 10},
"STIS/G230M": {"minwave": 1641.8, "maxwave": 3098.2, "priority": 11},
"STIS/G430M": {"minwave": 3021.9, "maxwave": 5610.1, "priority": 12},
"STIS/G750M": {"minwave": 5464.6, "maxwave": 10645.1, "priority": 13},
"COS/G230L": {"minwave": 1650, "maxwave": 3200, "priority": 14},
"COS/G140L": {"minwave": 901, "maxwave": 2150, "priority": 15},
"STIS/G230MB": {"minwave": 1635.0, "maxwave": 3184.5, "priority": 16},
"STIS/G140L": {"minwave": 1138.4, "maxwave": 1716.4, "priority": 17},
"STIS/G230L": {"minwave": 1582.0, "maxwave": 3158.7, "priority": 18},
"STIS/G430L": {"minwave": 2895.9, "maxwave": 5704.4, "priority": 19},
"STIS/G230LB": {"minwave": 1667.1, "maxwave": 3071.6, "priority": 20},
"STIS/G750L": {"minwave": 5261.3, "maxwave": 10252.3, "priority": 21}
}
def create_level4_products(productlist, productdict, grating_table=GRATING_PRIORITIES_HASP):
"""Create a level 4 product by abutting single grating products
Parameters
----------
productlist : list
List of products to be combined
productdict : dictionary
Dictionary of settings for members of the productlist
The key is the setting: f'{instrument}/{grating}'
The value is the product
Returns
-------
abutted_product : SegmentList
The abutted product
"""
if grating_table is None:
grating_table = GRATING_PRIORITIES
used_gratings_list = get_used_gratings(productlist, grating_table)
ngratings = len(used_gratings_list)
if ngratings == 0:
print('No valid input grating products')
return None
# if ngratings == 1:
# print("Only 1 grating to abut, exiting")
# return None
print("Making a product from these gratings")
for grating in used_gratings_list:
actual_minwave = productdict[grating['name']].first_good_wavelength
actual_maxwave = productdict[grating['name']].last_good_wavelength
print(grating['name'], f"{grating['minwave']}-{grating['maxwave']}",
'(Actual: {:.1f}-{:.1f})'.format(actual_minwave, actual_maxwave))
score = 2 ** ngratings
if ngratings > 0:
for grating in used_gratings_list:
grating['score'] = score
score = score // 2
transition_wavelengths = []
for grating in used_gratings_list:
actual_minwave = productdict[grating['name']].first_good_wavelength
actual_maxwave = productdict[grating['name']].last_good_wavelength
min_wavelength = max(actual_minwave, grating['minwave'])
max_wavelength = min(actual_maxwave, grating['maxwave'])
if min_wavelength != grating['minwave']:
print(f"Minimum wavelength of {grating['name']} tweaked to {min_wavelength}")
if max_wavelength != grating['maxwave']:
print(f"Maximum wavelength of {grating['name']} tweaked to {max_wavelength}")
transition_wavelengths.append({'grating': grating['name'],
'wavelength': min_wavelength,
'delta': grating['score']})
transition_wavelengths.append({'grating': grating['name'],
'wavelength': max_wavelength,
'delta': -grating['score']})
transition_wavelengths = sorted(transition_wavelengths,
key=lambda wavelength: wavelength['wavelength'])
cumulative_sum = 0
this_grating = None
abutted_product = None
nwavelengths = len(transition_wavelengths)
for entry in range(nwavelengths):
value = transition_wavelengths[entry]
cumulative_sum = cumulative_sum + value['delta']
highest_power_of_2 = hp2(cumulative_sum, ngratings)
grating_rows = [row for row in used_gratings_list if row['score'] == highest_power_of_2]
n_with_this_score = len(grating_rows)
if n_with_this_score == 1:
new_grating = grating_rows[0]['name']
elif n_with_this_score == 0:
new_grating = None
else:
print("Unexpected number of gratings with score {}: {}".format(highest_power_of_2,
n_with_this_score))
new_grating = "Error"
if new_grating != this_grating:
if abutted_product is None:
print('Starting at the short wavelength end with grating {}'.format(new_grating))
abutted_product = abut(None, productdict[new_grating], value['wavelength'])
elif new_grating is None:
print('Truncating current grating at {}'.format(value['wavelength']))
abutted_product = abut(abutted_product, None, value['wavelength'])
else:
print('Abutting {} product to current result'.format(new_grating))
print('With a transition wavelength of {}'.format(value['wavelength']))
abutted_product = abut(abutted_product, productdict[new_grating], value['wavelength'])
this_grating = new_grating
return abutted_product
def get_used_gratings(productlist, grating_table):
"""Get the list of used gratings from the product list and return that list
sorted by grating priority
Parameters
----------
productlist : list
List of products
Returns
-------
used_gratings_list : list
List of gratings used in the products, sorted by grating priority
Each grating is an entry from the GRATING_PRIORITIES dictionary, which
is a key/value pair with key = setting (f'{instrument}/{grating}') and the
value is the dictionary of grating parameters: {'minwave': 1000, 'maxwave': 2000,
priority: 1}
"""
used_gratings_list = []
for product in productlist:
setting = product.instrument + '/' + product.grating
if setting in grating_table:
grating_dict = grating_table[setting]
grating_dict['name'] = setting
used_gratings_list.append(grating_dict)
used_gratings_list = sorted(used_gratings_list, key=lambda grating: grating['priority'])
return used_gratings_list
def hp2(number, largest_power):
"""
Returns the highest power of 2 that is <= number, up to
and including 2**largest_power
Parameters
----------
number : int
Number for which the highest lower power of two is required
largest_power : int
Largest power of 2 to try
Returns
-------
value : int
Largest power of 2 less than `number`
"""
if number == 0:
return 0
for i in range(largest_power, 0, -1):
if number & (2 ** i):
break
return 2 ** i
def abut(product_short, product_long, transition_wavelength):
"""Abut the spectra in 2 products. Assumes the first argument is the shorter
wavelength.
Parameters
----------
product_short : SegmentList or None
Product with the smaller minimum wavelength
Will be None for the first pair of products
product_long : SegmentList or None
Product with the larger minimum wavelength
Will be None for the last pair of products
transition_wavelength : float
Wavelength where the output product is from product_short for
wavelengths less than the transition wavelength, and from product_long
for wavelengths greater than the transition wavelength
Returns
-------
product_abutted : SegmentList
Product made by abutting product_short and product_long
"""
if product_long is not None and not hasattr(product_long, 'product_type'):
product_long.product_type = 'ullyses'
if product_long is not None and not hasattr(product_long, 'lifetime_position'):
product_long.lifetime_position = None
if product_short is not None and not hasattr(product_short, 'lifetime_position'):
product_short.lifetime_position = None
if product_short is not None and product_long is not None:
if transition_wavelength == "bad":
return None
# Make sure the grating doesn't appear more than once in the filename
output_gratinglist = product_short.gratinglist.copy()
if product_long.grating not in output_gratinglist:
output_gratinglist.append(product_long.grating)
output_grating = product_short.grating + '-' + product_long.disambiguated_grating
else:
output_grating = product_short.grating
product_abutted = product_short.__class__('', output_grating)
goodshort = np.where(product_short.output_exptime > 0.)
goodlong = np.where(product_long.output_exptime > 0.)
last_good_short = product_short.output_wavelength[goodshort][-1]
first_good_long = product_long.output_wavelength[goodlong][0]
short_indices = np.where(product_short.output_wavelength < last_good_short)
transition_index_short = short_indices[0][-1]
long_indices = np.where(product_long.output_wavelength > first_good_long)
transition_index_long = long_indices[0][0]
if transition_wavelength is not None:
short_indices = np.where(product_short.output_wavelength <= transition_wavelength)
if len(short_indices[0]) == 0:
print('No valid data in short-wavelength spectrum')
return product_long
transition_index_short = short_indices[0][-1]
long_indices = np.where(product_long.output_wavelength > transition_wavelength)
if len(long_indices[0]) == 0:
print('No valid data in long-wavelength spectrum')
return product_short
transition_index_long = long_indices[0][0]
nout = len(product_short.output_wavelength[:transition_index_short])
nout = nout + len(product_long.output_wavelength[transition_index_long:])
product_abutted.nelements = nout
product_abutted.output_wavelength = np.zeros(nout)
product_abutted.output_flux = np.zeros(nout)
product_abutted.output_errors = np.zeros(nout)
product_abutted.signal_to_noise = np.zeros(nout)
product_abutted.output_exptime = np.zeros(nout)
product_abutted.output_wavelength[:transition_index_short] = product_short.output_wavelength[:transition_index_short]
product_abutted.output_wavelength[transition_index_short:] = product_long.output_wavelength[transition_index_long:]
product_abutted.output_flux[:transition_index_short] = product_short.output_flux[:transition_index_short]
product_abutted.output_flux[transition_index_short:] = product_long.output_flux[transition_index_long:]
product_abutted.output_errors[:transition_index_short] = np.abs(product_short.output_errors[:transition_index_short])
product_abutted.output_errors[transition_index_short:] = np.abs(product_long.output_errors[transition_index_long:])
product_abutted.signal_to_noise[:transition_index_short] = product_short.signal_to_noise[:transition_index_short]
product_abutted.signal_to_noise[transition_index_short:] = product_long.signal_to_noise[transition_index_long:]
product_abutted.output_exptime[:transition_index_short] = product_short.output_exptime[:transition_index_short]
product_abutted.output_exptime[transition_index_short:] = product_long.output_exptime[transition_index_long:]
product_abutted.primary_headers = product_short.primary_headers + product_long.primary_headers
product_abutted.first_headers = product_short.first_headers + product_long.first_headers
product_abutted.grating = output_grating
product_abutted.disambiguated_grating = output_grating
product_abutted.gratinglist = output_gratinglist
product_abutted.aperturelist = list(set(product_short.aperturelist + product_long.aperturelist))
product_abutted.aperturelist.sort()
if product_long.instrument not in product_short.instrumentlist:
product_abutted.instrumentlist = product_short.instrumentlist.append(product_long.instrument)
else:
product_abutted.instrumentlist = product_short.instrumentlist
product_abutted.instrumentlist = product_short.instrumentlist
# product_short.target = product_short.get_targname()
# product_long.target = product_long.get_targname()
if product_short.instrument in product_long.instrument:
product_abutted.instrument = product_long.instrument
if product_long.instrument in product_short.instrument:
product_abutted.instrument = product_short.instrument
else:
temp_instrument_list = [product_short.instrument, product_long.instrument]
temp_instrument_list.sort()
product_abutted.instrument = '-'.join(temp_instrument_list)
if product_long.product_type != 'cross-program':
target_matched = False
if product_short.target == product_long.target:
product_abutted.target = product_short.target
target_matched = True
product_abutted.targnames = [product_short.target, product_long.target]
else:
for target_name in product_short.targnames:
if target_name in product_long.targnames:
product_abutted.target = target_name
target_matched = True
product_abutted.targnames = [target_name]
if not target_matched:
product_abutted = None
print('Trying to abut spectra from 2 different targets:')
print(f'{product_short.target} and {product_long.target}')
else:
product_abutted.target = product_short.target
product_abutted.propid = product_short.propid
product_abutted.rootname = product_short.rootname
product_abutted.num_exp = product_short.num_exp + product_long.num_exp
if product_long.lifetime_position == product_short.lifetime_position:
product_abutted.lifetime_position = product_short.lifetime_position
else:
product_abutted.lifetime_position = 'N/A'
elif product_short is not None:
# This will be the case for the last grating
output_grating = product_short.grating
product_abutted = product_short.__class__('', output_grating)
short_indices = np.where(product_short.output_wavelength < transition_wavelength)
transition_index_short = short_indices[0][-1]
nout = len(product_short.output_wavelength[:transition_index_short])
product_abutted.nelements = nout
product_abutted.output_wavelength = np.zeros(nout)
product_abutted.output_flux = np.zeros(nout)
product_abutted.output_errors = np.zeros(nout)
product_abutted.signal_to_noise = np.zeros(nout)
product_abutted.output_exptime = np.zeros(nout)
product_abutted.output_wavelength = product_short.output_wavelength[:transition_index_short]
product_abutted.output_flux = product_short.output_flux[:transition_index_short]
product_abutted.output_errors = np.abs(product_short.output_errors[:transition_index_short])
product_abutted.signal_to_noise = product_short.signal_to_noise[:transition_index_short]
product_abutted.output_exptime = product_short.output_exptime[:transition_index_short]
product_abutted.primary_headers = product_short.primary_headers
product_abutted.first_headers = product_short.first_headers
product_abutted.grating = product_short.grating
product_abutted.disambiguated_grating = product_short.disambiguated_grating
product_abutted.gratinglist = product_short.gratinglist
product_abutted.aperturelist = product_short.aperturelist
product_abutted.instrumentlist = product_short.instrumentlist
product_abutted.instrument = product_short.instrument
product_abutted.target = product_short.target
target_matched = True
product_abutted.targnames = [product_short.target]
product_abutted.propid = product_short.propid
product_abutted.rootname = product_short.rootname
product_abutted.num_exp = product_short.num_exp
product_abutted.morethan1lp = False
product_abutted.lifetime_position = product_short.lifetime_position
elif product_long is not None:
# This is the case for the first grating
output_grating = product_long.disambiguated_grating
product_abutted = product_long.__class__('', output_grating)
long_indices = np.where(product_long.output_wavelength > transition_wavelength)
transition_index_long = long_indices[0][0]
nout = len(product_long.output_wavelength[transition_index_long:])
product_abutted.nelements = nout
product_abutted.output_wavelength = np.zeros(nout)
product_abutted.output_flux = np.zeros(nout)
product_abutted.output_errors = np.zeros(nout)
product_abutted.signal_to_noise = np.zeros(nout)
product_abutted.output_exptime = np.zeros(nout)
product_abutted.output_wavelength = product_long.output_wavelength[transition_index_long:]
product_abutted.output_flux = product_long.output_flux[transition_index_long:]
product_abutted.output_errors = np.abs(product_long.output_errors[transition_index_long:])
product_abutted.signal_to_noise = product_long.signal_to_noise[transition_index_long:]
product_abutted.output_exptime = product_long.output_exptime[transition_index_long:]
product_abutted.primary_headers = product_long.primary_headers
product_abutted.first_headers = product_long.first_headers
product_abutted.grating = product_long.disambiguated_grating
product_abutted.disambiguated_grating = product_long.disambiguated_grating
product_abutted.gratinglist = product_long.gratinglist
product_abutted.aperturelist = product_long.aperturelist
product_abutted.instrumentlist = product_long.instrumentlist
if product_long.product_type != 'cross-program':
product_long.target = product_long.get_targname()
product_abutted.instrument = product_long.instrument
product_abutted.target = product_long.target
target_matched = True
product_abutted.targnames = [product_long.target]
product_abutted.propid = product_long.propid
product_abutted.rootname = product_long.rootname
product_abutted.num_exp = product_long.num_exp
product_abutted.lifetime_position = product_long.lifetime_position
else:
product_abutted = None
product_abutted.targ_ra, product_abutted.targ_dec, product_abutted.epoch = product_abutted.get_coords()
return product_abutted