-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathADP.2016-07-15T13:22:09.434.log
3537 lines (3519 loc) · 511 KB
/
ADP.2016-07-15T13:22:09.434.log
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
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1. List of all processing jobs contributing to the product datacube of MUSE.2014-08-25T09:04:20.398_tpl.ab
This is a combined OBJECT datacube.
Note that processing occurs in inverse order: scibasic-->scipost-->[exp_align-->]exp_combine
If SKY files were used, their scheme is: scibasic-->create_sky
If existing, SKY files are always processed first, then OBJECT files.
muse_exp_combine AB: MUSE.2014-08-25T09:04:20.398_tpl.ab
^
|
muse_exp_align AB: MUSE.2014-08-25T09:04:20.398_tal.ab
muse_scipost ABs: / \
MUSE.2014-08-25T09:04:20.398_pst.ab
MUSE.2014-08-25T09:15:40.771_pst.ab
MUSE.2014-08-25T09:27:02.397_pst.ab
MUSE.2014-08-25T09:38:23.167_pst.ab
muse_scibasic ABs: | |
MUSE.2014-08-25T09:04:20.398.ab
MUSE.2014-08-25T09:15:40.771.ab
MUSE.2014-08-25T09:27:02.397.ab
MUSE.2014-08-25T09:38:23.167.ab
SKY files used:
muse_create_sky AB(s):
MUSE.2014-08-25T08:40:40.304_sky.ab
muse_scibasic AB(s): | |
MUSE.2014-08-25T08:40:40.304.ab
2. All corresponding pipeline SOFs and log files
They are sorted in chronological order, inverse to the above list.
The SOF is the 'set of frames' and contains all input files (RAW, intermediate products, master calibrations).
After the SOF, you find the pipeline processing log. Both the log and the SOF can be retrieved by calling 'grep "<rblog>" <this_file>'.
[MUSE.2014-08-25T08:40:40.304.rblog] ***************************************************************************************************************
[MUSE.2014-08-25T08:40:40.304.rblog] MUSE.2014-08-25T08:40:40.304.rblog:
[MUSE.2014-08-25T08:40:40.304.rblog] ***************************************************************************************************************
[MUSE.2014-08-25T08:40:40.304.rblog] SOF:
[MUSE.2014-08-25T08:40:40.304.rblog] SOF_CONTENT ${DFO_RAW_DIR}/2014-08-24/MUSE.2014-08-25T08:40:40.304.fits SKY RAW
[MUSE.2014-08-25T08:40:40.304.rblog] SOF_CONTENT ${DFO_CAL_DIR}/gen/MU_GEXT_140101A_extinct_table.fits EXTINCT_TABLE CALIB
[MUSE.2014-08-25T08:40:40.304.rblog] SOF_CONTENT ${DFO_CAL_DIR}/gen/MU_GSKL_140101A_sky_lines.fits SKY_LINES CALIB
[MUSE.2014-08-25T08:40:40.304.rblog] SOF_CONTENT ${DFO_CAL_DIR}/gen/MU_GFIL_140101A_filter_list.fits FILTER_LIST CALIB
[MUSE.2014-08-25T08:40:40.304.rblog] SOF_CONTENT ${DFO_CAL_DIR}/gen/MU_GEOT_140729A_geometry_table_wfm.fits GEOMETRY_TABLE CALIB
[MUSE.2014-08-25T08:40:40.304.rblog] SOF_CONTENT ${DFO_CAL_DIR}/2014-08-24/MU_MBIA_140824A_WFM-NOAO-N_SCI1.0.fits MASTER_BIAS CALIB
[MUSE.2014-08-25T08:40:40.304.rblog] SOF_CONTENT ${DFO_CAL_DIR}/2014-08-24/MU_MFLA_140824A_WFM-NOAO-E_Clear_SCI1.0.fits MASTER_FLAT CALIB
[MUSE.2014-08-25T08:40:40.304.rblog] SOF_CONTENT ${DFO_CAL_DIR}/2014-08-24/MU_PFTT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits TRACE_TABLE CALIB
[MUSE.2014-08-25T08:40:40.304.rblog] SOF_CONTENT ${DFO_CAL_DIR}/2014-08-24/MU_PWCT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits WAVECAL_TABLE CALIB
[MUSE.2014-08-25T08:40:40.304.rblog] SOF_CONTENT ${DFO_CAL_DIR}/gen/MU_GLSP_140901A_lsf_profile_slow_wfm-e.fits LSF_PROFILE CALIB
[MUSE.2014-08-25T08:40:40.304.rblog] SOF_CONTENT ${DFO_CAL_DIR}/2014-08-24/MU_MTWC_140824A_WFM-NOAO-E_Clear_SCI1.0.fits TWILIGHT_CUBE CALIB
[MUSE.2014-08-25T08:40:40.304.rblog] SOF_CONTENT ${DFO_CAL_DIR}/2014-08-23/MU_MSDR_140823B_WFM-NOAO-E_Clear_SCI1.0.fits STD_RESPONSE CALIB
[MUSE.2014-08-25T08:40:40.304.rblog] SOF_CONTENT ${DFO_CAL_DIR}/2014-08-23/MU_MSDT_140823B_WFM-NOAO-E_Clear_SCI1.0.fits STD_TELLURIC CALIB
[MUSE.2014-08-25T08:40:40.304.rblog] SOF_CONTENT ${DFO_CAL_DIR}/gen/MU_GASW_140731A_astrom_wcs_wfm.fits ASTROMETRY_WCS CALIB
[MUSE.2014-08-25T08:40:40.304.rblog] SOF_CONTENT ${DFO_RAW_DIR}/2014-08-24/MUSE.2014-08-25T08:38:58.343.fits ILLUM RAW
[MUSE.2014-08-25T08:40:40.304.rblog]
[MUSE.2014-08-25T08:40:40.304.rblog] LOG:
[MUSE.2014-08-25T08:40:40.304.rblog] ===============================================================================================================
[MUSE.2014-08-25T08:40:40.304.rblog] [2016-07-13T16:23:12] processAB: MUSE.2014-08-25T08:40:40.304.ab started (version 2.6.5)
[MUSE.2014-08-25T08:40:40.304.rblog] ===============================================================================================================
[MUSE.2014-08-25T08:40:40.304.rblog] [2016-07-13T16:23:12] start processing MUSE.2014-08-25T08:40:40.304.ab (RECIPE: muse_scibasic)
[MUSE.2014-08-25T08:40:40.304.rblog] RAW_TYPE: SKY
[MUSE.2014-08-25T08:40:40.304.rblog] RECIPE: muse_scibasic
[MUSE.2014-08-25T08:40:40.304.rblog] VERSION: /usr/lib64/esopipes-plugins/muse-1.6.1
[MUSE.2014-08-25T08:40:40.304.rblog] Setup for input files:
[MUSE.2014-08-25T08:40:40.304.rblog] INS.MODE=WFM-NOAO-E_SKY
[MUSE.2014-08-25T08:40:40.304.rblog] Non-default parameters:
[MUSE.2014-08-25T08:40:40.304.rblog] --nifu=-1
[MUSE.2014-08-25T08:40:40.304.rblog]
[MUSE.2014-08-25T08:40:40.304.rblog] -------------------------------------------------------------------------------------------------
[MUSE.2014-08-25T08:40:40.304.rblog] Requesting MUSE.2014-08-25T08:40:40.304.fits from NGAS ... (header will be updated)
[MUSE.2014-08-25T08:40:40.304.rblog] ... done successfully.
[MUSE.2014-08-25T08:40:40.304.rblog]
[MUSE.2014-08-25T08:40:40.304.rblog] RECIPE CALL:
[MUSE.2014-08-25T08:40:40.304.rblog] /opt/likwid/bin/likwid-pin -c 0-24 esorex --time --output-dir=/qc/muse_ph3/work/MUSE.2014-08-25T08:40:40.304.ab --suppress-prefix --no-checksum --no-datamd5 --check-sof-exist muse_scibasic --nifu=-1 sof
[MUSE.2014-08-25T08:40:40.304.rblog] [likwid-pin] Main PID -> core 0 - OK
[MUSE.2014-08-25T08:40:40.304.rblog]
[MUSE.2014-08-25T08:40:40.304.rblog] ***** ESO Recipe Execution Tool, version 3.12.3 *****
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:39 [ INFO ] muse_scibasic: MUSE Instrument Pipeline v1.6.1
[MUSE.2014-08-25T08:40:40.304.rblog] [pthread wrapper] [pthread wrapper] PIN_MASK: 0->1 1->2 2->3 3->4 4->5 5->6 6->7 7->8 8->9 9->10 10->11 11->12 12->13 13->14 14->15 15->16 16->17 17->18 18->19 19->20 20->21 21->22 22->23 23->24
[MUSE.2014-08-25T08:40:40.304.rblog] [pthread wrapper] SKIP MASK: 0x0
[MUSE.2014-08-25T08:40:40.304.rblog] threadid 140082568730368 -> core 1 - OK
[MUSE.2014-08-25T08:40:40.304.rblog] threadid 140082501617408 -> core 2 - OK
[MUSE.2014-08-25T08:40:40.304.rblog] threadid 140082434504448 -> core 3 - OK
[MUSE.2014-08-25T08:40:40.304.rblog] threadid 140082367391488 -> core 4 - OK
[MUSE.2014-08-25T08:40:40.304.rblog] threadid 140082300278528 -> core 5 - OK
[MUSE.2014-08-25T08:40:40.304.rblog] threadid 140082233165568 -> core 6 - OK
[MUSE.2014-08-25T08:40:40.304.rblog] threadid 140082166052608 -> core 7 - OK
[MUSE.2014-08-25T08:40:40.304.rblog] threadid 140082098939648 -> core 8 - OK
[MUSE.2014-08-25T08:40:40.304.rblog] threadid 140082031826688 -> core 9 - OK
[MUSE.2014-08-25T08:40:40.304.rblog] threadid 140081964713728 -> core 10 - OK
[MUSE.2014-08-25T08:40:40.304.rblog] threadid 140081897600768 -> core 11 - OK
[MUSE.2014-08-25T08:40:40.304.rblog] threadid 140081830487808 -> core 12 - OK
[MUSE.2014-08-25T08:40:40.304.rblog] threadid 140081763374848 -> core 13 - OK
[MUSE.2014-08-25T08:40:40.304.rblog] threadid 140081696261888 -> core 14 - OK
[MUSE.2014-08-25T08:40:40.304.rblog] threadid 140081629148928 -> core 15 - OK
[MUSE.2014-08-25T08:40:40.304.rblog] threadid 140081562035968 -> core 16 - OK
[MUSE.2014-08-25T08:40:40.304.rblog] threadid 140081494923008 -> core 17 - OK
[MUSE.2014-08-25T08:40:40.304.rblog] threadid 140081427810048 -> core 18 - OK
[MUSE.2014-08-25T08:40:40.304.rblog] threadid 140081360697088 -> core 19 - OK
[MUSE.2014-08-25T08:40:40.304.rblog] threadid 140081293584128 -> core 20 - OK
[MUSE.2014-08-25T08:40:40.304.rblog] threadid 140081226471168 -> core 21 - OK
[MUSE.2014-08-25T08:40:40.304.rblog] threadid 140081159358208 -> core 22 - OK
[MUSE.2014-08-25T08:40:40.304.rblog] threadid 140081092245248 -> core 23 - OK
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:40 [ INFO ] muse_scibasic: [tid=002] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:40:40.304.fits[CHAN03]" (extension 6)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:40 [ INFO ] muse_scibasic: [tid=004] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:40:40.304.fits[CHAN05]" (extension 5)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:40 [ INFO ] muse_scibasic: [tid=002] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:38:58.343.fits[CHAN03]" (extension 6)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:40 [ INFO ] muse_scibasic: [tid=001] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:40:40.304.fits[CHAN02]" (extension 12)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:40 [ INFO ] muse_scibasic: [tid=004] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:38:58.343.fits[CHAN05]" (extension 5)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:40 [ INFO ] muse_scibasic: [tid=001] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:38:58.343.fits[CHAN02]" (extension 12)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:40 [ INFO ] muse_scibasic: [tid=000] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:40:40.304.fits[CHAN01]" (extension 18)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:41 [ INFO ] muse_scibasic: [tid=010] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:40:40.304.fits[CHAN11]" (extension 4)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:41 [ INFO ] muse_scibasic: [tid=007] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:40:40.304.fits[CHAN08]" (extension 11)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:41 [ INFO ] muse_scibasic: [tid=009] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:40:40.304.fits[CHAN10]" (extension 10)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:41 [ INFO ] muse_scibasic: [tid=000] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:38:58.343.fits[CHAN01]" (extension 18)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:41 [ INFO ] muse_scibasic: [tid=010] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:38:58.343.fits[CHAN11]" (extension 4)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:41 [ INFO ] muse_scibasic: [tid=007] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:38:58.343.fits[CHAN08]" (extension 11)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:41 [ INFO ] muse_scibasic: [tid=006] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:40:40.304.fits[CHAN07]" (extension 17)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:41 [ INFO ] muse_scibasic: [tid=009] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:38:58.343.fits[CHAN10]" (extension 10)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:41 [ INFO ] muse_scibasic: [tid=008] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:40:40.304.fits[CHAN09]" (extension 16)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:41 [ INFO ] muse_scibasic: [tid=014] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:40:40.304.fits[CHAN15]" (extension 3)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:41 [ INFO ] muse_scibasic: [tid=003] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:40:40.304.fits[CHAN04]" (extension 24)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:41 [ INFO ] muse_scibasic: [tid=006] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:38:58.343.fits[CHAN07]" (extension 17)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:41 [ INFO ] muse_scibasic: [tid=013] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:40:40.304.fits[CHAN14]" (extension 9)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:41 [ INFO ] muse_scibasic: [tid=005] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:40:40.304.fits[CHAN06]" (extension 23)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:41 [ INFO ] muse_scibasic: [tid=014] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:38:58.343.fits[CHAN15]" (extension 3)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:41 [ INFO ] muse_scibasic: [tid=016] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:40:40.304.fits[CHAN17]" (extension 2)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:42 [ INFO ] muse_scibasic: [tid=008] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:38:58.343.fits[CHAN09]" (extension 16)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:42 [ INFO ] muse_scibasic: [tid=012] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:40:40.304.fits[CHAN13]" (extension 15)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:42 [ INFO ] muse_scibasic: [tid=013] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:38:58.343.fits[CHAN14]" (extension 9)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:42 [ INFO ] muse_scibasic: [tid=016] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:38:58.343.fits[CHAN17]" (extension 2)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:42 [ INFO ] muse_scibasic: [tid=003] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:38:58.343.fits[CHAN04]" (extension 24)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:42 [ INFO ] muse_scibasic: [tid=005] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:38:58.343.fits[CHAN06]" (extension 23)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:42 [ INFO ] muse_scibasic: [tid=012] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:38:58.343.fits[CHAN13]" (extension 15)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:42 [ INFO ] muse_scibasic: [tid=011] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:40:40.304.fits[CHAN12]" (extension 22)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:43 [ INFO ] muse_scibasic: [tid=019] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:40:40.304.fits[CHAN20]" (extension 8)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:43 [ INFO ] muse_scibasic: [tid=000] Bias correction in IFU 1 using "/qc/muse_ph3/calib/2014-08-24/MU_MBIA_140824A_WFM-NOAO-N_SCI1.0.fits[CHAN01.DATA]"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:43 [ INFO ] muse_scibasic: [tid=001] Bias correction in IFU 2 using "/qc/muse_ph3/calib/2014-08-24/MU_MBIA_140824A_WFM-NOAO-N_SCI1.0.fits[CHAN02.DATA]"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:43 [ INFO ] muse_scibasic: [tid=011] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:38:58.343.fits[CHAN12]" (extension 22)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:43 [ INFO ] muse_scibasic: [tid=022] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:40:40.304.fits[CHAN23]" (extension 1)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:43 [ INFO ] muse_scibasic: [tid=019] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:38:58.343.fits[CHAN20]" (extension 8)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:43 [ INFO ] muse_scibasic: [tid=015] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:40:40.304.fits[CHAN16]" (extension 21)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:43 [ INFO ] muse_scibasic: [tid=021] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:40:40.304.fits[CHAN22]" (extension 7)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:43 [ INFO ] muse_scibasic: [tid=018] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:40:40.304.fits[CHAN19]" (extension 14)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:43 [ INFO ] muse_scibasic: [tid=002] Bias correction in IFU 3 using "/qc/muse_ph3/calib/2014-08-24/MU_MBIA_140824A_WFM-NOAO-N_SCI1.0.fits[CHAN03.DATA]"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:43 [ INFO ] muse_scibasic: [tid=022] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:38:58.343.fits[CHAN23]" (extension 1)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:43 [ INFO ] muse_scibasic: [tid=004] Bias correction in IFU 5 using "/qc/muse_ph3/calib/2014-08-24/MU_MBIA_140824A_WFM-NOAO-N_SCI1.0.fits[CHAN05.DATA]"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:43 [ INFO ] muse_scibasic: [tid=021] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:38:58.343.fits[CHAN22]" (extension 7)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:43 [ INFO ] muse_scibasic: [tid=020] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:40:40.304.fits[CHAN21]" (extension 13)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:43 [ INFO ] muse_scibasic: [tid=017] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:40:40.304.fits[CHAN18]" (extension 20)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:43 [ INFO ] muse_scibasic: [tid=018] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:38:58.343.fits[CHAN19]" (extension 14)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:43 [ INFO ] muse_scibasic: [tid=015] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:38:58.343.fits[CHAN16]" (extension 21)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:43 [ INFO ] muse_scibasic: [tid=007] Bias correction in IFU 8 using "/qc/muse_ph3/calib/2014-08-24/MU_MBIA_140824A_WFM-NOAO-N_SCI1.0.fits[CHAN08.DATA]"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:44 [ INFO ] muse_scibasic: [tid=000] Converting 2 exposures from adu to count (= electron) units in IFU 1
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:44 [ INFO ] muse_scibasic: [tid=020] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:38:58.343.fits[CHAN21]" (extension 13)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:44 [ INFO ] muse_scibasic: [tid=017] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:38:58.343.fits[CHAN18]" (extension 20)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:44 [ INFO ] muse_scibasic: [tid=001] Converting 2 exposures from adu to count (= electron) units in IFU 2
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:44 [ INFO ] muse_scibasic: [tid=010] Bias correction in IFU 11 using "/qc/muse_ph3/calib/2014-08-24/MU_MBIA_140824A_WFM-NOAO-N_SCI1.0.fits[CHAN11.DATA]"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:44 [ INFO ] muse_scibasic: [tid=002] Converting 2 exposures from adu to count (= electron) units in IFU 3
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:44 [ INFO ] muse_scibasic: [tid=005] Bias correction in IFU 6 using "/qc/muse_ph3/calib/2014-08-24/MU_MBIA_140824A_WFM-NOAO-N_SCI1.0.fits[CHAN06.DATA]"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:44 [ INFO ] muse_scibasic: [tid=004] Converting 2 exposures from adu to count (= electron) units in IFU 5
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:44 [ INFO ] muse_scibasic: [tid=012] Bias correction in IFU 13 using "/qc/muse_ph3/calib/2014-08-24/MU_MBIA_140824A_WFM-NOAO-N_SCI1.0.fits[CHAN13.DATA]"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:45 [ INFO ] muse_scibasic: [tid=023] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:40:40.304.fits[CHAN24]" (extension 19)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:45 [ INFO ] muse_scibasic: [tid=007] Converting 2 exposures from adu to count (= electron) units in IFU 8
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:45 [ INFO ] muse_scibasic: [tid=009] Bias correction in IFU 10 using "/qc/muse_ph3/calib/2014-08-24/MU_MBIA_140824A_WFM-NOAO-N_SCI1.0.fits[CHAN10.DATA]"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:45 [ INFO ] muse_scibasic: [tid=006] Bias correction in IFU 7 using "/qc/muse_ph3/calib/2014-08-24/MU_MBIA_140824A_WFM-NOAO-N_SCI1.0.fits[CHAN07.DATA]"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:45 [ INFO ] muse_scibasic: [tid=003] Bias correction in IFU 4 using "/qc/muse_ph3/calib/2014-08-24/MU_MBIA_140824A_WFM-NOAO-N_SCI1.0.fits[CHAN04.DATA]"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:45 [ INFO ] muse_scibasic: [tid=014] Bias correction in IFU 15 using "/qc/muse_ph3/calib/2014-08-24/MU_MBIA_140824A_WFM-NOAO-N_SCI1.0.fits[CHAN15.DATA]"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:45 [ INFO ] muse_scibasic: [tid=000] Flat-field correction in IFU 1 using "/qc/muse_ph3/calib/2014-08-24/MU_MFLA_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN01.DATA]"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:45 [ INFO ] muse_scibasic: [tid=023] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:38:58.343.fits[CHAN24]" (extension 19)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:45 [ INFO ] muse_scibasic: [tid=001] Flat-field correction in IFU 2 using "/qc/muse_ph3/calib/2014-08-24/MU_MFLA_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN02.DATA]"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:45 [ INFO ] muse_scibasic: [tid=013] Bias correction in IFU 14 using "/qc/muse_ph3/calib/2014-08-24/MU_MBIA_140824A_WFM-NOAO-N_SCI1.0.fits[CHAN14.DATA]"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:45 [ INFO ] muse_scibasic: [tid=010] Converting 2 exposures from adu to count (= electron) units in IFU 11
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:45 [ INFO ] muse_scibasic: [tid=008] Bias correction in IFU 9 using "/qc/muse_ph3/calib/2014-08-24/MU_MBIA_140824A_WFM-NOAO-N_SCI1.0.fits[CHAN09.DATA]"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:45 [ INFO ] muse_scibasic: [tid=005] Converting 2 exposures from adu to count (= electron) units in IFU 6
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:45 [ INFO ] muse_scibasic: [tid=019] Bias correction in IFU 20 using "/qc/muse_ph3/calib/2014-08-24/MU_MBIA_140824A_WFM-NOAO-N_SCI1.0.fits[CHAN20.DATA]"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:45 [ INFO ] muse_scibasic: [tid=016] Bias correction in IFU 17 using "/qc/muse_ph3/calib/2014-08-24/MU_MBIA_140824A_WFM-NOAO-N_SCI1.0.fits[CHAN17.DATA]"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:45 [ INFO ] muse_scibasic: [tid=012] Converting 2 exposures from adu to count (= electron) units in IFU 13
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:46 [ INFO ] muse_scibasic: [tid=002] Flat-field correction in IFU 3 using "/qc/muse_ph3/calib/2014-08-24/MU_MFLA_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN03.DATA]"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:46 [ INFO ] muse_scibasic: [tid=009] Converting 2 exposures from adu to count (= electron) units in IFU 10
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:46 [ INFO ] muse_scibasic: [tid=011] Bias correction in IFU 12 using "/qc/muse_ph3/calib/2014-08-24/MU_MBIA_140824A_WFM-NOAO-N_SCI1.0.fits[CHAN12.DATA]"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:46 [ INFO ] muse_scibasic: [tid=004] Flat-field correction in IFU 5 using "/qc/muse_ph3/calib/2014-08-24/MU_MFLA_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN05.DATA]"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:46 [ INFO ] muse_scibasic: [tid=006] Converting 2 exposures from adu to count (= electron) units in IFU 7
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:46 [ INFO ] muse_scibasic: [tid=015] Bias correction in IFU 16 using "/qc/muse_ph3/calib/2014-08-24/MU_MBIA_140824A_WFM-NOAO-N_SCI1.0.fits[CHAN16.DATA]"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:46 [ INFO ] muse_scibasic: [tid=007] Flat-field correction in IFU 8 using "/qc/muse_ph3/calib/2014-08-24/MU_MFLA_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN08.DATA]"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:46 [ INFO ] muse_scibasic: [tid=003] Converting 2 exposures from adu to count (= electron) units in IFU 4
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:46 [ INFO ] muse_scibasic: [tid=014] Converting 2 exposures from adu to count (= electron) units in IFU 15
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:46 [ INFO ] muse_scibasic: [tid=013] Converting 2 exposures from adu to count (= electron) units in IFU 14
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:46 [ INFO ] muse_scibasic: [tid=022] Bias correction in IFU 23 using "/qc/muse_ph3/calib/2014-08-24/MU_MBIA_140824A_WFM-NOAO-N_SCI1.0.fits[CHAN23.DATA]"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:46 [ INFO ] muse_scibasic: [tid=008] Converting 2 exposures from adu to count (= electron) units in IFU 9
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:46 [ INFO ] muse_scibasic: [tid=021] Bias correction in IFU 22 using "/qc/muse_ph3/calib/2014-08-24/MU_MBIA_140824A_WFM-NOAO-N_SCI1.0.fits[CHAN22.DATA]"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:46 [ INFO ] muse_scibasic: [tid=019] Converting 2 exposures from adu to count (= electron) units in IFU 20
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:46 [ INFO ] muse_scibasic: [tid=018] Bias correction in IFU 19 using "/qc/muse_ph3/calib/2014-08-24/MU_MBIA_140824A_WFM-NOAO-N_SCI1.0.fits[CHAN19.DATA]"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:46 [ INFO ] muse_scibasic: [tid=017] Bias correction in IFU 18 using "/qc/muse_ph3/calib/2014-08-24/MU_MBIA_140824A_WFM-NOAO-N_SCI1.0.fits[CHAN18.DATA]"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:46 [ INFO ] muse_scibasic: [tid=010] Flat-field correction in IFU 11 using "/qc/muse_ph3/calib/2014-08-24/MU_MFLA_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN11.DATA]"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:46 [ INFO ] muse_scibasic: [tid=000] loaded TRACE_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PFTT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN01]" (ext 1)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:46 [ INFO ] muse_scibasic: [tid=005] Flat-field correction in IFU 6 using "/qc/muse_ph3/calib/2014-08-24/MU_MFLA_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN06.DATA]"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:47 [ INFO ] muse_scibasic: [tid=016] Converting 2 exposures from adu to count (= electron) units in IFU 17
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:47 [ INFO ] muse_scibasic: [tid=000] loaded WAVECAL_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PWCT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN01]" (ext 1)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:47 [ INFO ] muse_scibasic: [tid=000] loaded GEOMETRY_TABLE from file "/qc/muse_ph3/calib/gen/MU_GEOT_140729A_geometry_table_wfm.fits" (ext 1)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:47 [ INFO ] muse_scibasic: [tid=020] Bias correction in IFU 21 using "/qc/muse_ph3/calib/2014-08-24/MU_MBIA_140824A_WFM-NOAO-N_SCI1.0.fits[CHAN21.DATA]"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:47 [ INFO ] muse_scibasic: [tid=001] loaded TRACE_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PFTT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN02]" (ext 2)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:47 [ INFO ] muse_scibasic: [tid=011] Converting 2 exposures from adu to count (= electron) units in IFU 12
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:47 [ INFO ] muse_scibasic: [tid=001] loaded WAVECAL_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PWCT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN02]" (ext 2)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:47 [ INFO ] muse_scibasic: [tid=001] loaded GEOMETRY_TABLE from file "/qc/muse_ph3/calib/gen/MU_GEOT_140729A_geometry_table_wfm.fits" (ext 1)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:47 [ INFO ] muse_scibasic: [tid=000] Creating pixel table for IFU 1, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:47 [ INFO ] muse_scibasic: [tid=015] Converting 2 exposures from adu to count (= electron) units in IFU 16
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:47 [ INFO ] muse_scibasic: [tid=012] Flat-field correction in IFU 13 using "/qc/muse_ph3/calib/2014-08-24/MU_MFLA_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN13.DATA]"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:47 [ INFO ] muse_scibasic: [tid=006] Flat-field correction in IFU 7 using "/qc/muse_ph3/calib/2014-08-24/MU_MFLA_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN07.DATA]"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:47 [ INFO ] muse_scibasic: [tid=009] Flat-field correction in IFU 10 using "/qc/muse_ph3/calib/2014-08-24/MU_MFLA_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN10.DATA]"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:47 [ INFO ] muse_scibasic: [tid=002] loaded TRACE_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PFTT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN03]" (ext 3)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:47 [ INFO ] muse_scibasic: [tid=004] loaded TRACE_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PFTT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN05]" (ext 5)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:47 [ INFO ] muse_scibasic: [tid=001] Creating pixel table for IFU 2, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:47 [ INFO ] muse_scibasic: [tid=003] Flat-field correction in IFU 4 using "/qc/muse_ph3/calib/2014-08-24/MU_MFLA_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN04.DATA]"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:47 [ INFO ] muse_scibasic: [tid=002] loaded WAVECAL_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PWCT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN03]" (ext 3)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:47 [ INFO ] muse_scibasic: [tid=022] Converting 2 exposures from adu to count (= electron) units in IFU 23
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:47 [ INFO ] muse_scibasic: [tid=002] loaded GEOMETRY_TABLE from file "/qc/muse_ph3/calib/gen/MU_GEOT_140729A_geometry_table_wfm.fits" (ext 1)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:47 [ INFO ] muse_scibasic: [tid=021] Converting 2 exposures from adu to count (= electron) units in IFU 22
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:47 [ INFO ] muse_scibasic: [tid=004] loaded WAVECAL_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PWCT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN05]" (ext 5)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:47 [ INFO ] muse_scibasic: [tid=007] loaded TRACE_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PFTT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN08]" (ext 8)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:47 [ INFO ] muse_scibasic: [tid=004] loaded GEOMETRY_TABLE from file "/qc/muse_ph3/calib/gen/MU_GEOT_140729A_geometry_table_wfm.fits" (ext 1)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:47 [ INFO ] muse_scibasic: [tid=017] Converting 2 exposures from adu to count (= electron) units in IFU 18
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:47 [ INFO ] muse_scibasic: [tid=018] Converting 2 exposures from adu to count (= electron) units in IFU 19
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:48 [ INFO ] muse_scibasic: [tid=023] Bias correction in IFU 24 using "/qc/muse_ph3/calib/2014-08-24/MU_MBIA_140824A_WFM-NOAO-N_SCI1.0.fits[CHAN24.DATA]"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:48 [ INFO ] muse_scibasic: [tid=013] Flat-field correction in IFU 14 using "/qc/muse_ph3/calib/2014-08-24/MU_MFLA_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN14.DATA]"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:48 [ INFO ] muse_scibasic: [tid=008] Flat-field correction in IFU 9 using "/qc/muse_ph3/calib/2014-08-24/MU_MFLA_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN09.DATA]"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:48 [ INFO ] muse_scibasic: [tid=002] Creating pixel table for IFU 3, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:48 [ INFO ] muse_scibasic: [tid=020] Converting 2 exposures from adu to count (= electron) units in IFU 21
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:48 [ INFO ] muse_scibasic: [tid=007] loaded WAVECAL_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PWCT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN08]" (ext 8)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:48 [ INFO ] muse_scibasic: [tid=014] Flat-field correction in IFU 15 using "/qc/muse_ph3/calib/2014-08-24/MU_MFLA_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN15.DATA]"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:48 [ INFO ] muse_scibasic: [tid=007] loaded GEOMETRY_TABLE from file "/qc/muse_ph3/calib/gen/MU_GEOT_140729A_geometry_table_wfm.fits" (ext 1)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:48 [ INFO ] muse_scibasic: [tid=004] Creating pixel table for IFU 5, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:48 [ INFO ] muse_scibasic: [tid=005] loaded TRACE_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PFTT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN06]" (ext 6)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:48 [ INFO ] muse_scibasic: [tid=010] loaded TRACE_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PFTT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN11]" (ext 11)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:48 [ INFO ] muse_scibasic: [tid=019] Flat-field correction in IFU 20 using "/qc/muse_ph3/calib/2014-08-24/MU_MFLA_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN20.DATA]"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:48 [ INFO ] muse_scibasic: [tid=007] Creating pixel table for IFU 8, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:48 [ INFO ] muse_scibasic: [tid=016] Flat-field correction in IFU 17 using "/qc/muse_ph3/calib/2014-08-24/MU_MFLA_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN17.DATA]"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:48 [ INFO ] muse_scibasic: [tid=005] loaded WAVECAL_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PWCT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN06]" (ext 6)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:48 [ INFO ] muse_scibasic: [tid=005] loaded GEOMETRY_TABLE from file "/qc/muse_ph3/calib/gen/MU_GEOT_140729A_geometry_table_wfm.fits" (ext 1)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:48 [ INFO ] muse_scibasic: [tid=011] Flat-field correction in IFU 12 using "/qc/muse_ph3/calib/2014-08-24/MU_MFLA_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN12.DATA]"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:48 [ INFO ] muse_scibasic: [tid=015] Flat-field correction in IFU 16 using "/qc/muse_ph3/calib/2014-08-24/MU_MFLA_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN16.DATA]"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:48 [ INFO ] muse_scibasic: [tid=010] loaded WAVECAL_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PWCT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN11]" (ext 11)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:48 [ INFO ] muse_scibasic: [tid=010] loaded GEOMETRY_TABLE from file "/qc/muse_ph3/calib/gen/MU_GEOT_140729A_geometry_table_wfm.fits" (ext 1)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:49 [ INFO ] muse_scibasic: [tid=006] loaded TRACE_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PFTT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN07]" (ext 7)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:49 [ INFO ] muse_scibasic: [tid=023] Converting 2 exposures from adu to count (= electron) units in IFU 24
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:49 [ INFO ] muse_scibasic: [tid=012] loaded TRACE_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PFTT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN13]" (ext 13)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:49 [ INFO ] muse_scibasic: [tid=009] loaded TRACE_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PFTT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN10]" (ext 10)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:49 [ INFO ] muse_scibasic: [tid=005] Creating pixel table for IFU 6, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:49 [ INFO ] muse_scibasic: [tid=003] loaded TRACE_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PFTT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN04]" (ext 4)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:49 [ INFO ] muse_scibasic: [tid=006] loaded WAVECAL_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PWCT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN07]" (ext 7)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:49 [ INFO ] muse_scibasic: [tid=010] Creating pixel table for IFU 11, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:49 [ INFO ] muse_scibasic: [tid=006] loaded GEOMETRY_TABLE from file "/qc/muse_ph3/calib/gen/MU_GEOT_140729A_geometry_table_wfm.fits" (ext 1)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:49 [ INFO ] muse_scibasic: [tid=003] loaded WAVECAL_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PWCT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN04]" (ext 4)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:49 [ INFO ] muse_scibasic: [tid=003] loaded GEOMETRY_TABLE from file "/qc/muse_ph3/calib/gen/MU_GEOT_140729A_geometry_table_wfm.fits" (ext 1)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:49 [ INFO ] muse_scibasic: [tid=009] loaded WAVECAL_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PWCT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN10]" (ext 10)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:49 [ INFO ] muse_scibasic: [tid=022] Flat-field correction in IFU 23 using "/qc/muse_ph3/calib/2014-08-24/MU_MFLA_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN23.DATA]"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:49 [ INFO ] muse_scibasic: [tid=009] loaded GEOMETRY_TABLE from file "/qc/muse_ph3/calib/gen/MU_GEOT_140729A_geometry_table_wfm.fits" (ext 1)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:49 [ INFO ] muse_scibasic: [tid=012] loaded WAVECAL_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PWCT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN13]" (ext 13)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:49 [ INFO ] muse_scibasic: [tid=017] Flat-field correction in IFU 18 using "/qc/muse_ph3/calib/2014-08-24/MU_MFLA_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN18.DATA]"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:49 [ INFO ] muse_scibasic: [tid=018] Flat-field correction in IFU 19 using "/qc/muse_ph3/calib/2014-08-24/MU_MFLA_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN19.DATA]"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:49 [ INFO ] muse_scibasic: [tid=012] loaded GEOMETRY_TABLE from file "/qc/muse_ph3/calib/gen/MU_GEOT_140729A_geometry_table_wfm.fits" (ext 1)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:49 [ INFO ] muse_scibasic: [tid=021] Flat-field correction in IFU 22 using "/qc/muse_ph3/calib/2014-08-24/MU_MFLA_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN22.DATA]"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:49 [ INFO ] muse_scibasic: [tid=013] loaded TRACE_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PFTT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN14]" (ext 14)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:49 [ INFO ] muse_scibasic: [tid=008] loaded TRACE_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PFTT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN09]" (ext 9)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:49 [ INFO ] muse_scibasic: [tid=006] Creating pixel table for IFU 7, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:49 [ INFO ] muse_scibasic: [tid=014] loaded TRACE_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PFTT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN15]" (ext 15)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:49 [ INFO ] muse_scibasic: [tid=003] Creating pixel table for IFU 4, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:50 [ INFO ] muse_scibasic: [tid=009] Creating pixel table for IFU 10, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:50 [ INFO ] muse_scibasic: [tid=012] Creating pixel table for IFU 13, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:50 [ INFO ] muse_scibasic: [tid=008] loaded WAVECAL_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PWCT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN09]" (ext 9)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:50 [ INFO ] muse_scibasic: [tid=008] loaded GEOMETRY_TABLE from file "/qc/muse_ph3/calib/gen/MU_GEOT_140729A_geometry_table_wfm.fits" (ext 1)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:50 [ INFO ] muse_scibasic: [tid=013] loaded WAVECAL_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PWCT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN14]" (ext 14)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:50 [ INFO ] muse_scibasic: [tid=013] loaded GEOMETRY_TABLE from file "/qc/muse_ph3/calib/gen/MU_GEOT_140729A_geometry_table_wfm.fits" (ext 1)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:50 [ INFO ] muse_scibasic: [tid=019] loaded TRACE_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PFTT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN20]" (ext 20)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:50 [ INFO ] muse_scibasic: [tid=020] Flat-field correction in IFU 21 using "/qc/muse_ph3/calib/2014-08-24/MU_MFLA_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN21.DATA]"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:50 [ INFO ] muse_scibasic: [tid=016] loaded TRACE_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PFTT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN17]" (ext 17)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:50 [ INFO ] muse_scibasic: [tid=014] loaded WAVECAL_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PWCT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN15]" (ext 15)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:50 [ INFO ] muse_scibasic: [tid=008] Creating pixel table for IFU 9, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:50 [ INFO ] muse_scibasic: [tid=014] loaded GEOMETRY_TABLE from file "/qc/muse_ph3/calib/gen/MU_GEOT_140729A_geometry_table_wfm.fits" (ext 1)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:50 [ INFO ] muse_scibasic: [tid=011] loaded TRACE_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PFTT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN12]" (ext 12)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:50 [ INFO ] muse_scibasic: [tid=015] loaded TRACE_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PFTT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN16]" (ext 16)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:50 [ INFO ] muse_scibasic: [tid=013] Creating pixel table for IFU 14, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:50 [ INFO ] muse_scibasic: [tid=014] Creating pixel table for IFU 15, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:50 [ INFO ] muse_scibasic: [tid=023] Flat-field correction in IFU 24 using "/qc/muse_ph3/calib/2014-08-24/MU_MFLA_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN24.DATA]"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:50 [ INFO ] muse_scibasic: [tid=011] loaded WAVECAL_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PWCT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN12]" (ext 12)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:50 [ INFO ] muse_scibasic: [tid=011] loaded GEOMETRY_TABLE from file "/qc/muse_ph3/calib/gen/MU_GEOT_140729A_geometry_table_wfm.fits" (ext 1)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:50 [ INFO ] muse_scibasic: [tid=016] loaded WAVECAL_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PWCT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN17]" (ext 17)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:50 [ INFO ] muse_scibasic: [tid=016] loaded GEOMETRY_TABLE from file "/qc/muse_ph3/calib/gen/MU_GEOT_140729A_geometry_table_wfm.fits" (ext 1)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:51 [ INFO ] muse_scibasic: [tid=019] loaded WAVECAL_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PWCT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN20]" (ext 20)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:51 [ INFO ] muse_scibasic: [tid=019] loaded GEOMETRY_TABLE from file "/qc/muse_ph3/calib/gen/MU_GEOT_140729A_geometry_table_wfm.fits" (ext 1)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:51 [ INFO ] muse_scibasic: [tid=015] loaded WAVECAL_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PWCT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN16]" (ext 16)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:51 [ INFO ] muse_scibasic: [tid=015] loaded GEOMETRY_TABLE from file "/qc/muse_ph3/calib/gen/MU_GEOT_140729A_geometry_table_wfm.fits" (ext 1)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:51 [ INFO ] muse_scibasic: [tid=011] Creating pixel table for IFU 12, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:51 [ INFO ] muse_scibasic: [tid=022] loaded TRACE_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PFTT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN23]" (ext 23)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:51 [ INFO ] muse_scibasic: [tid=016] Creating pixel table for IFU 17, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:51 [ INFO ] muse_scibasic: [tid=017] loaded TRACE_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PFTT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN18]" (ext 18)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:51 [ INFO ] muse_scibasic: [tid=018] loaded TRACE_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PFTT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN19]" (ext 19)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:51 [ INFO ] muse_scibasic: [tid=019] Creating pixel table for IFU 20, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:51 [ INFO ] muse_scibasic: [tid=021] loaded TRACE_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PFTT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN22]" (ext 22)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:51 [ INFO ] muse_scibasic: [tid=015] Creating pixel table for IFU 16, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:52 [ INFO ] muse_scibasic: [tid=017] loaded WAVECAL_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PWCT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN18]" (ext 18)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:52 [ INFO ] muse_scibasic: [tid=017] loaded GEOMETRY_TABLE from file "/qc/muse_ph3/calib/gen/MU_GEOT_140729A_geometry_table_wfm.fits" (ext 1)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:52 [ INFO ] muse_scibasic: [tid=018] loaded WAVECAL_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PWCT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN19]" (ext 19)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:52 [ INFO ] muse_scibasic: [tid=018] loaded GEOMETRY_TABLE from file "/qc/muse_ph3/calib/gen/MU_GEOT_140729A_geometry_table_wfm.fits" (ext 1)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:52 [ INFO ] muse_scibasic: [tid=022] loaded WAVECAL_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PWCT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN23]" (ext 23)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:52 [ INFO ] muse_scibasic: [tid=021] loaded WAVECAL_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PWCT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN22]" (ext 22)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:52 [ INFO ] muse_scibasic: [tid=022] loaded GEOMETRY_TABLE from file "/qc/muse_ph3/calib/gen/MU_GEOT_140729A_geometry_table_wfm.fits" (ext 1)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:52 [ INFO ] muse_scibasic: [tid=021] loaded GEOMETRY_TABLE from file "/qc/muse_ph3/calib/gen/MU_GEOT_140729A_geometry_table_wfm.fits" (ext 1)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:52 [ INFO ] muse_scibasic: [tid=020] loaded TRACE_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PFTT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN21]" (ext 21)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:52 [ INFO ] muse_scibasic: [tid=017] Creating pixel table for IFU 18, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:52 [ INFO ] muse_scibasic: [tid=018] Creating pixel table for IFU 19, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:52 [ INFO ] muse_scibasic: [tid=022] Creating pixel table for IFU 23, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:52 [ INFO ] muse_scibasic: [tid=021] Creating pixel table for IFU 22, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:52 [ INFO ] muse_scibasic: [tid=023] loaded TRACE_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PFTT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN24]" (ext 24)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:52 [ INFO ] muse_scibasic: [tid=020] loaded WAVECAL_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PWCT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN21]" (ext 21)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:53 [ INFO ] muse_scibasic: [tid=020] loaded GEOMETRY_TABLE from file "/qc/muse_ph3/calib/gen/MU_GEOT_140729A_geometry_table_wfm.fits" (ext 1)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:53 [ INFO ] muse_scibasic: [tid=020] Creating pixel table for IFU 21, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:53 [ INFO ] muse_scibasic: [tid=023] loaded WAVECAL_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PWCT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN24]" (ext 24)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:53 [ INFO ] muse_scibasic: [tid=023] loaded GEOMETRY_TABLE from file "/qc/muse_ph3/calib/gen/MU_GEOT_140729A_geometry_table_wfm.fits" (ext 1)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:23:53 [ INFO ] muse_scibasic: [tid=023] Creating pixel table for IFU 24, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T08:40:40.304.rblog] 16:24:31 [ INFO ] muse_scibasic: [tid=001] Preparing ILLUM flat: 48 slices in the data of IFU 2 found.
[MUSE.2014-08-25T08:40:40.304.rblog] 16:24:31 [ INFO ] muse_scibasic: [tid=001] Saving image as SKY_RED_0001-02.fits
[MUSE.2014-08-25T08:40:40.304.rblog] 16:24:32 [ INFO ] muse_scibasic: [tid=001] Creating pixel table for IFU 2, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T08:40:40.304.rblog] 16:24:36 [ INFO ] muse_scibasic: [tid=002] Preparing ILLUM flat: 48 slices in the data of IFU 3 found.
[MUSE.2014-08-25T08:40:40.304.rblog] 16:24:36 [ INFO ] muse_scibasic: [tid=002] Saving image as SKY_RED_0001-03.fits
[MUSE.2014-08-25T08:40:40.304.rblog] 16:24:37 [ INFO ] muse_scibasic: [tid=002] Creating pixel table for IFU 3, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T08:40:40.304.rblog] 16:24:41 [ INFO ] muse_scibasic: [tid=005] Preparing ILLUM flat: 48 slices in the data of IFU 6 found.
[MUSE.2014-08-25T08:40:40.304.rblog] 16:24:41 [ INFO ] muse_scibasic: [tid=005] Saving image as SKY_RED_0001-06.fits
[MUSE.2014-08-25T08:40:40.304.rblog] 16:24:42 [ INFO ] muse_scibasic: [tid=005] Creating pixel table for IFU 6, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T08:40:40.304.rblog] 16:24:43 [ INFO ] muse_scibasic: [tid=009] Preparing ILLUM flat: 48 slices in the data of IFU 10 found.
[MUSE.2014-08-25T08:40:40.304.rblog] 16:24:43 [ INFO ] muse_scibasic: [tid=009] Saving image as SKY_RED_0001-10.fits
[MUSE.2014-08-25T08:40:40.304.rblog] 16:24:43 [ INFO ] muse_scibasic: [tid=007] Preparing ILLUM flat: 48 slices in the data of IFU 8 found.
[MUSE.2014-08-25T08:40:40.304.rblog] 16:24:43 [ INFO ] muse_scibasic: [tid=007] Saving image as SKY_RED_0001-08.fits
[MUSE.2014-08-25T08:40:40.304.rblog] 16:24:44 [ INFO ] muse_scibasic: [tid=009] Creating pixel table for IFU 10, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T08:40:40.304.rblog] 16:24:44 [ INFO ] muse_scibasic: [tid=007] Creating pixel table for IFU 8, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T08:40:40.304.rblog] 16:24:45 [ INFO ] muse_scibasic: [tid=010] Preparing ILLUM flat: 48 slices in the data of IFU 11 found.
[MUSE.2014-08-25T08:40:40.304.rblog] 16:24:45 [ INFO ] muse_scibasic: [tid=010] Saving image as SKY_RED_0001-11.fits
[MUSE.2014-08-25T08:40:40.304.rblog] 16:24:46 [ INFO ] muse_scibasic: [tid=006] Preparing ILLUM flat: 48 slices in the data of IFU 7 found.
[MUSE.2014-08-25T08:40:40.304.rblog] 16:24:46 [ INFO ] muse_scibasic: [tid=006] Saving image as SKY_RED_0001-07.fits
[MUSE.2014-08-25T08:40:40.304.rblog] 16:24:46 [ INFO ] muse_scibasic: [tid=010] Creating pixel table for IFU 11, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T08:40:40.304.rblog] 16:24:46 [ INFO ] muse_scibasic: [tid=013] Preparing ILLUM flat: 48 slices in the data of IFU 14 found.
[MUSE.2014-08-25T08:40:40.304.rblog] 16:24:46 [ INFO ] muse_scibasic: [tid=013] Saving image as SKY_RED_0001-14.fits
[MUSE.2014-08-25T08:40:40.304.rblog] 16:24:46 [ INFO ] muse_scibasic: [tid=006] Creating pixel table for IFU 7, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T08:40:40.304.rblog] 16:24:46 [ INFO ] muse_scibasic: [tid=021] Preparing ILLUM flat: 48 slices in the data of IFU 22 found.
[MUSE.2014-08-25T08:40:40.304.rblog] 16:24:47 [ INFO ] muse_scibasic: [tid=021] Saving image as SKY_RED_0001-22.fits
[MUSE.2014-08-25T08:40:40.304.rblog] 16:24:47 [ INFO ] muse_scibasic: [tid=013] Creating pixel table for IFU 14, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T08:40:40.304.rblog] 16:24:47 [ INFO ] muse_scibasic: [tid=014] Preparing ILLUM flat: 48 slices in the data of IFU 15 found.
[MUSE.2014-08-25T08:40:40.304.rblog] 16:24:47 [ INFO ] muse_scibasic: [tid=014] Saving image as SKY_RED_0001-15.fits
[MUSE.2014-08-25T08:40:40.304.rblog] 16:24:47 [ INFO ] muse_scibasic: [tid=021] Creating pixel table for IFU 22, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T08:40:40.304.rblog] 16:24:47 [ INFO ] muse_scibasic: [tid=017] Preparing ILLUM flat: 48 slices in the data of IFU 18 found.
[MUSE.2014-08-25T08:40:40.304.rblog] 16:24:47 [ INFO ] muse_scibasic: [tid=017] Saving image as SKY_RED_0001-18.fits
[MUSE.2014-08-25T08:40:40.304.rblog] 16:24:48 [ INFO ] muse_scibasic: [tid=014] Creating pixel table for IFU 15, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T08:40:40.304.rblog] 16:24:48 [ INFO ] muse_scibasic: [tid=017] Creating pixel table for IFU 18, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T08:40:40.304.rblog] 16:24:49 [ INFO ] muse_scibasic: [tid=022] Preparing ILLUM flat: 48 slices in the data of IFU 23 found.
[MUSE.2014-08-25T08:40:40.304.rblog] 16:24:49 [ INFO ] muse_scibasic: [tid=022] Saving image as SKY_RED_0001-23.fits
[MUSE.2014-08-25T08:40:40.304.rblog] 16:24:49 [ INFO ] muse_scibasic: [tid=018] Preparing ILLUM flat: 48 slices in the data of IFU 19 found.
[MUSE.2014-08-25T08:40:40.304.rblog] 16:24:49 [ INFO ] muse_scibasic: [tid=018] Saving image as SKY_RED_0001-19.fits
[MUSE.2014-08-25T08:40:40.304.rblog] 16:24:49 [ INFO ] muse_scibasic: [tid=022] Creating pixel table for IFU 23, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T08:40:40.304.rblog] 16:24:50 [ INFO ] muse_scibasic: [tid=018] Creating pixel table for IFU 19, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T08:40:40.304.rblog] 16:24:50 [ INFO ] muse_scibasic: [tid=003] Preparing ILLUM flat: 48 slices in the data of IFU 4 found.
[MUSE.2014-08-25T08:40:40.304.rblog] 16:24:50 [ INFO ] muse_scibasic: [tid=003] Saving image as SKY_RED_0001-04.fits
[MUSE.2014-08-25T08:40:40.304.rblog] 16:24:51 [ INFO ] muse_scibasic: [tid=003] Creating pixel table for IFU 4, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T08:40:40.304.rblog] 16:24:54 [ INFO ] muse_scibasic: [tid=015] Preparing ILLUM flat: 48 slices in the data of IFU 16 found.
[MUSE.2014-08-25T08:40:40.304.rblog] 16:24:54 [ INFO ] muse_scibasic: [tid=015] Saving image as SKY_RED_0001-16.fits
[MUSE.2014-08-25T08:40:40.304.rblog] 16:24:54 [ INFO ] muse_scibasic: [tid=019] Preparing ILLUM flat: 48 slices in the data of IFU 20 found.
[MUSE.2014-08-25T08:40:40.304.rblog] 16:24:54 [ INFO ] muse_scibasic: [tid=019] Saving image as SKY_RED_0001-20.fits
[MUSE.2014-08-25T08:40:40.304.rblog] 16:24:55 [ INFO ] muse_scibasic: [tid=015] Creating pixel table for IFU 16, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T08:40:40.304.rblog] 16:24:55 [ INFO ] muse_scibasic: [tid=019] Creating pixel table for IFU 20, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T08:40:40.304.rblog] 16:24:55 [ INFO ] muse_scibasic: [tid=023] Preparing ILLUM flat: 48 slices in the data of IFU 24 found.
[MUSE.2014-08-25T08:40:40.304.rblog] 16:24:56 [ INFO ] muse_scibasic: [tid=023] Saving image as SKY_RED_0001-24.fits
[MUSE.2014-08-25T08:40:40.304.rblog] 16:24:56 [ INFO ] muse_scibasic: [tid=023] Creating pixel table for IFU 24, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:12 [ INFO ] muse_scibasic: [tid=011] Preparing ILLUM flat: 48 slices in the data of IFU 12 found.
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:12 [ INFO ] muse_scibasic: [tid=011] Saving image as SKY_RED_0001-12.fits
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:13 [ INFO ] muse_scibasic: [tid=011] Creating pixel table for IFU 12, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:16 [ INFO ] muse_scibasic: [tid=000] Preparing ILLUM flat: 48 slices in the data of IFU 1 found.
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:16 [ INFO ] muse_scibasic: [tid=000] Saving image as SKY_RED_0001-01.fits
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:16 [ INFO ] muse_scibasic: [tid=000] Creating pixel table for IFU 1, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:26 [ INFO ] muse_scibasic: [tid=001] Skyline correction (2 lines): shifting data of IFU 2 by -0.0054 Angstrom
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:26 [ INFO ] muse_scibasic: [tid=001] Extended mode: cropping the pixel table of IFU 2 to 4600.0...9350.0 Angstrom
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:26 [ INFO ] muse_scibasic: [tid=001] Applying ILLUM flat-field in IFU 2 (48 slices)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:26 [ INFO ] muse_scibasic: [tid=001] Starting twilight correction 1 in IFU 2
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:27 [ INFO ] muse_scibasic: [tid=001] Saving pixel table as "PIXTABLE_SKY_0001-02.fits"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:33 [ INFO ] muse_scibasic: [tid=002] Skyline correction (2 lines): shifting data of IFU 3 by 0.0318 Angstrom
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:33 [ INFO ] muse_scibasic: [tid=002] Extended mode: cropping the pixel table of IFU 3 to 4600.0...9350.0 Angstrom
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:34 [ INFO ] muse_scibasic: [tid=002] Applying ILLUM flat-field in IFU 3 (48 slices)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:34 [ INFO ] muse_scibasic: [tid=002] Starting twilight correction 1 in IFU 3
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:34 [ INFO ] muse_scibasic: [tid=002] Saving pixel table as "PIXTABLE_SKY_0001-03.fits"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:35 [ INFO ] muse_scibasic: [tid=005] Skyline correction (2 lines): shifting data of IFU 6 by 0.0440 Angstrom
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:35 [ INFO ] muse_scibasic: [tid=005] Extended mode: cropping the pixel table of IFU 6 to 4600.0...9350.0 Angstrom
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:36 [ INFO ] muse_scibasic: [tid=004] Preparing ILLUM flat: 48 slices in the data of IFU 5 found.
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:36 [ INFO ] muse_scibasic: [tid=004] Saving image as SKY_RED_0001-05.fits
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:36 [ INFO ] muse_scibasic: [tid=005] Applying ILLUM flat-field in IFU 6 (48 slices)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:36 [ INFO ] muse_scibasic: [tid=005] Starting twilight correction 1 in IFU 6
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:37 [ INFO ] muse_scibasic: [tid=004] Creating pixel table for IFU 5, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:37 [ INFO ] muse_scibasic: [tid=009] Skyline correction (2 lines): shifting data of IFU 10 by 0.0044 Angstrom
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:37 [ INFO ] muse_scibasic: [tid=009] Extended mode: cropping the pixel table of IFU 10 to 4600.0...9350.0 Angstrom
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:37 [ INFO ] muse_scibasic: [tid=005] Saving pixel table as "PIXTABLE_SKY_0001-06.fits"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:37 [ INFO ] muse_scibasic: [tid=009] Applying ILLUM flat-field in IFU 10 (48 slices)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:37 [ INFO ] muse_scibasic: [tid=009] Starting twilight correction 1 in IFU 10
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:38 [ INFO ] muse_scibasic: [tid=009] Saving pixel table as "PIXTABLE_SKY_0001-10.fits"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:39 [ INFO ] muse_scibasic: [tid=013] Skyline correction (2 lines): shifting data of IFU 14 by 0.0070 Angstrom
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:39 [ INFO ] muse_scibasic: [tid=013] Extended mode: cropping the pixel table of IFU 14 to 4600.0...9350.0 Angstrom
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:39 [ INFO ] muse_scibasic: [tid=021] Skyline correction (2 lines): shifting data of IFU 22 by 0.0071 Angstrom
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:39 [ INFO ] muse_scibasic: [tid=021] Extended mode: cropping the pixel table of IFU 22 to 4600.0...9350.0 Angstrom
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:40 [ INFO ] muse_scibasic: [tid=013] Applying ILLUM flat-field in IFU 14 (48 slices)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:40 [ INFO ] muse_scibasic: [tid=017] Skyline correction (2 lines): shifting data of IFU 18 by 0.0224 Angstrom
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:40 [ INFO ] muse_scibasic: [tid=017] Extended mode: cropping the pixel table of IFU 18 to 4600.0...9350.0 Angstrom
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:40 [ INFO ] muse_scibasic: [tid=013] Starting twilight correction 1 in IFU 14
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:40 [ INFO ] muse_scibasic: [tid=021] Applying ILLUM flat-field in IFU 22 (48 slices)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:40 [ INFO ] muse_scibasic: [tid=021] Starting twilight correction 1 in IFU 22
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:40 [ INFO ] muse_scibasic: [tid=012] Preparing ILLUM flat: 48 slices in the data of IFU 13 found.
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:40 [ INFO ] muse_scibasic: [tid=012] Saving image as SKY_RED_0001-13.fits
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:40 [ INFO ] muse_scibasic: [tid=010] Skyline correction (2 lines): shifting data of IFU 11 by 0.0105 Angstrom
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:40 [ INFO ] muse_scibasic: [tid=010] Extended mode: cropping the pixel table of IFU 11 to 4600.0...9350.0 Angstrom
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:40 [ INFO ] muse_scibasic: [tid=013] Saving pixel table as "PIXTABLE_SKY_0001-14.fits"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:41 [ INFO ] muse_scibasic: [tid=017] Applying ILLUM flat-field in IFU 18 (48 slices)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:41 [ INFO ] muse_scibasic: [tid=006] Skyline correction (2 lines): shifting data of IFU 7 by -0.0272 Angstrom
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:41 [ INFO ] muse_scibasic: [tid=006] Extended mode: cropping the pixel table of IFU 7 to 4600.0...9350.0 Angstrom
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:41 [ INFO ] muse_scibasic: [tid=017] Starting twilight correction 1 in IFU 18
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:41 [ INFO ] muse_scibasic: [tid=021] Saving pixel table as "PIXTABLE_SKY_0001-22.fits"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:41 [ INFO ] muse_scibasic: [tid=008] Preparing ILLUM flat: 48 slices in the data of IFU 9 found.
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:41 [ INFO ] muse_scibasic: [tid=012] Creating pixel table for IFU 13, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:41 [ INFO ] muse_scibasic: [tid=008] Saving image as SKY_RED_0001-09.fits
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:41 [ INFO ] muse_scibasic: [tid=010] Applying ILLUM flat-field in IFU 11 (48 slices)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:41 [ INFO ] muse_scibasic: [tid=014] Skyline correction (2 lines): shifting data of IFU 15 by -0.0026 Angstrom
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:41 [ INFO ] muse_scibasic: [tid=010] Starting twilight correction 1 in IFU 11
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:41 [ INFO ] muse_scibasic: [tid=014] Extended mode: cropping the pixel table of IFU 15 to 4600.0...9350.0 Angstrom
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:41 [ INFO ] muse_scibasic: [tid=017] Saving pixel table as "PIXTABLE_SKY_0001-18.fits"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:42 [ INFO ] muse_scibasic: [tid=006] Applying ILLUM flat-field in IFU 7 (48 slices)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:42 [ INFO ] muse_scibasic: [tid=006] Starting twilight correction 1 in IFU 7
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:42 [ INFO ] muse_scibasic: [tid=016] Preparing ILLUM flat: 48 slices in the data of IFU 17 found.
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:42 [ INFO ] muse_scibasic: [tid=022] Skyline correction (2 lines): shifting data of IFU 23 by 0.0444 Angstrom
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:42 [ INFO ] muse_scibasic: [tid=022] Extended mode: cropping the pixel table of IFU 23 to 4600.0...9350.0 Angstrom
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:42 [ INFO ] muse_scibasic: [tid=016] Saving image as SKY_RED_0001-17.fits
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:42 [ INFO ] muse_scibasic: [tid=018] Skyline correction (2 lines): shifting data of IFU 19 by -0.0042 Angstrom
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:42 [ INFO ] muse_scibasic: [tid=018] Extended mode: cropping the pixel table of IFU 19 to 4600.0...9350.0 Angstrom
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:42 [ INFO ] muse_scibasic: [tid=008] Creating pixel table for IFU 9, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:42 [ INFO ] muse_scibasic: [tid=014] Applying ILLUM flat-field in IFU 15 (48 slices)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:42 [ INFO ] muse_scibasic: [tid=010] Saving pixel table as "PIXTABLE_SKY_0001-11.fits"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:42 [ INFO ] muse_scibasic: [tid=014] Starting twilight correction 1 in IFU 15
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:42 [ INFO ] muse_scibasic: [tid=006] Saving pixel table as "PIXTABLE_SKY_0001-07.fits"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:42 [ INFO ] muse_scibasic: [tid=020] Preparing ILLUM flat: 48 slices in the data of IFU 21 found.
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:43 [ INFO ] muse_scibasic: [tid=020] Saving image as SKY_RED_0001-21.fits
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:43 [ INFO ] muse_scibasic: [tid=022] Applying ILLUM flat-field in IFU 23 (48 slices)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:43 [ INFO ] muse_scibasic: [tid=022] Starting twilight correction 1 in IFU 23
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:43 [ INFO ] muse_scibasic: [tid=016] Creating pixel table for IFU 17, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:43 [ INFO ] muse_scibasic: [tid=014] Saving pixel table as "PIXTABLE_SKY_0001-15.fits"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:43 [ INFO ] muse_scibasic: [tid=018] Applying ILLUM flat-field in IFU 19 (48 slices)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:43 [ INFO ] muse_scibasic: [tid=018] Starting twilight correction 1 in IFU 19
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:43 [ INFO ] muse_scibasic: [tid=007] Skyline correction (2 lines): shifting data of IFU 8 by -0.0039 Angstrom
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:43 [ INFO ] muse_scibasic: [tid=007] Extended mode: cropping the pixel table of IFU 8 to 4600.0...9350.0 Angstrom
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:44 [ INFO ] muse_scibasic: [tid=020] Creating pixel table for IFU 21, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:44 [ INFO ] muse_scibasic: [tid=007] Applying ILLUM flat-field in IFU 8 (48 slices)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:44 [ INFO ] muse_scibasic: [tid=022] Saving pixel table as "PIXTABLE_SKY_0001-23.fits"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:44 [ INFO ] muse_scibasic: [tid=007] Starting twilight correction 1 in IFU 8
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:44 [ INFO ] muse_scibasic: [tid=018] Saving pixel table as "PIXTABLE_SKY_0001-19.fits"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:45 [ INFO ] muse_scibasic: [tid=007] Saving pixel table as "PIXTABLE_SKY_0001-08.fits"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:45 [ INFO ] muse_scibasic: [tid=003] Skyline correction (2 lines): shifting data of IFU 4 by -0.0035 Angstrom
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:45 [ INFO ] muse_scibasic: [tid=003] Extended mode: cropping the pixel table of IFU 4 to 4600.0...9350.0 Angstrom
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:46 [ INFO ] muse_scibasic: [tid=003] Applying ILLUM flat-field in IFU 4 (48 slices)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:46 [ INFO ] muse_scibasic: [tid=003] Starting twilight correction 1 in IFU 4
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:46 [ INFO ] muse_scibasic: [tid=015] Skyline correction (2 lines): shifting data of IFU 16 by -0.0013 Angstrom
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:47 [ INFO ] muse_scibasic: [tid=019] Skyline correction (2 lines): shifting data of IFU 20 by -0.0104 Angstrom
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:47 [ INFO ] muse_scibasic: [tid=019] Extended mode: cropping the pixel table of IFU 20 to 4600.0...9350.0 Angstrom
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:47 [ INFO ] muse_scibasic: [tid=015] Extended mode: cropping the pixel table of IFU 16 to 4600.0...9350.0 Angstrom
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:47 [ INFO ] muse_scibasic: [tid=003] Saving pixel table as "PIXTABLE_SKY_0001-04.fits"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:47 [ INFO ] muse_scibasic: [tid=019] Applying ILLUM flat-field in IFU 20 (48 slices)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:47 [ INFO ] muse_scibasic: [tid=019] Starting twilight correction 1 in IFU 20
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:47 [ INFO ] muse_scibasic: [tid=015] Applying ILLUM flat-field in IFU 16 (48 slices)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:47 [ INFO ] muse_scibasic: [tid=015] Starting twilight correction 1 in IFU 16
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:47 [ INFO ] muse_scibasic: [tid=023] Skyline correction (2 lines): shifting data of IFU 24 by 0.0314 Angstrom
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:47 [ INFO ] muse_scibasic: [tid=023] Extended mode: cropping the pixel table of IFU 24 to 4600.0...9350.0 Angstrom
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:48 [ INFO ] muse_scibasic: [tid=023] Applying ILLUM flat-field in IFU 24 (48 slices)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:48 [ INFO ] muse_scibasic: [tid=019] Saving pixel table as "PIXTABLE_SKY_0001-20.fits"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:48 [ INFO ] muse_scibasic: [tid=023] Starting twilight correction 1 in IFU 24
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:48 [ INFO ] muse_scibasic: [tid=015] Saving pixel table as "PIXTABLE_SKY_0001-16.fits"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:48 [ INFO ] muse_scibasic: [tid=011] Skyline correction (2 lines): shifting data of IFU 12 by 0.0325 Angstrom
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:48 [ INFO ] muse_scibasic: [tid=011] Extended mode: cropping the pixel table of IFU 12 to 4600.0...9350.0 Angstrom
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:49 [ INFO ] muse_scibasic: [tid=023] Saving pixel table as "PIXTABLE_SKY_0001-24.fits"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:49 [ INFO ] muse_scibasic: [tid=011] Applying ILLUM flat-field in IFU 12 (48 slices)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:49 [ INFO ] muse_scibasic: [tid=011] Starting twilight correction 1 in IFU 12
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:50 [ INFO ] muse_scibasic: [tid=011] Saving pixel table as "PIXTABLE_SKY_0001-12.fits"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:54 [ INFO ] muse_scibasic: [tid=000] Skyline correction (2 lines): shifting data of IFU 1 by 0.0082 Angstrom
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:55 [ INFO ] muse_scibasic: [tid=000] Extended mode: cropping the pixel table of IFU 1 to 4600.0...9350.0 Angstrom
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:55 [ INFO ] muse_scibasic: [tid=000] Applying ILLUM flat-field in IFU 1 (48 slices)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:55 [ INFO ] muse_scibasic: [tid=000] Starting twilight correction 1 in IFU 1
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:56 [ INFO ] muse_scibasic: [tid=000] Saving pixel table as "PIXTABLE_SKY_0001-01.fits"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:56 [ INFO ] muse_scibasic: [tid=004] Skyline correction (2 lines): shifting data of IFU 5 by 0.0028 Angstrom
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:56 [ INFO ] muse_scibasic: [tid=004] Extended mode: cropping the pixel table of IFU 5 to 4600.0...9350.0 Angstrom
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:57 [ INFO ] muse_scibasic: [tid=012] Skyline correction (2 lines): shifting data of IFU 13 by -0.0177 Angstrom
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:57 [ INFO ] muse_scibasic: [tid=012] Extended mode: cropping the pixel table of IFU 13 to 4600.0...9350.0 Angstrom
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:57 [ INFO ] muse_scibasic: [tid=008] Skyline correction (2 lines): shifting data of IFU 9 by 0.0145 Angstrom
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:57 [ INFO ] muse_scibasic: [tid=008] Extended mode: cropping the pixel table of IFU 9 to 4600.0...9350.0 Angstrom
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:57 [ INFO ] muse_scibasic: [tid=004] Applying ILLUM flat-field in IFU 5 (48 slices)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:57 [ INFO ] muse_scibasic: [tid=004] Starting twilight correction 1 in IFU 5
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:57 [ INFO ] muse_scibasic: [tid=020] Skyline correction (2 lines): shifting data of IFU 21 by -0.0328 Angstrom
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:57 [ INFO ] muse_scibasic: [tid=020] Extended mode: cropping the pixel table of IFU 21 to 4600.0...9350.0 Angstrom
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:57 [ INFO ] muse_scibasic: [tid=016] Skyline correction (2 lines): shifting data of IFU 17 by 0.0082 Angstrom
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:57 [ INFO ] muse_scibasic: [tid=016] Extended mode: cropping the pixel table of IFU 17 to 4600.0...9350.0 Angstrom
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:57 [ INFO ] muse_scibasic: [tid=012] Applying ILLUM flat-field in IFU 13 (48 slices)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:57 [ INFO ] muse_scibasic: [tid=012] Starting twilight correction 1 in IFU 13
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:57 [ INFO ] muse_scibasic: [tid=008] Applying ILLUM flat-field in IFU 9 (48 slices)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:57 [ INFO ] muse_scibasic: [tid=008] Starting twilight correction 1 in IFU 9
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:58 [ INFO ] muse_scibasic: [tid=004] Saving pixel table as "PIXTABLE_SKY_0001-05.fits"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:58 [ INFO ] muse_scibasic: [tid=020] Applying ILLUM flat-field in IFU 21 (48 slices)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:58 [ INFO ] muse_scibasic: [tid=020] Starting twilight correction 1 in IFU 21
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:58 [ INFO ] muse_scibasic: [tid=016] Applying ILLUM flat-field in IFU 17 (48 slices)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:58 [ INFO ] muse_scibasic: [tid=016] Starting twilight correction 1 in IFU 17
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:58 [ INFO ] muse_scibasic: [tid=012] Saving pixel table as "PIXTABLE_SKY_0001-13.fits"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:58 [ INFO ] muse_scibasic: [tid=008] Saving pixel table as "PIXTABLE_SKY_0001-09.fits"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:59 [ INFO ] muse_scibasic: [tid=020] Saving pixel table as "PIXTABLE_SKY_0001-21.fits"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:25:59 [ INFO ] muse_scibasic: [tid=016] Saving pixel table as "PIXTABLE_SKY_0001-17.fits"
[MUSE.2014-08-25T08:40:40.304.rblog] 16:26:00 [ INFO ] esorex: [tid=000] Created product PIXTABLE_SKY_0001-02.fits (in place)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:26:00 [ INFO ] esorex: [tid=000] Created product PIXTABLE_SKY_0001-03.fits (in place)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:26:00 [ INFO ] esorex: [tid=000] Created product PIXTABLE_SKY_0001-06.fits (in place)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:26:00 [ INFO ] esorex: [tid=000] Created product PIXTABLE_SKY_0001-10.fits (in place)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:26:00 [ INFO ] esorex: [tid=000] Created product PIXTABLE_SKY_0001-14.fits (in place)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:26:00 [ INFO ] esorex: [tid=000] Created product PIXTABLE_SKY_0001-22.fits (in place)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:26:00 [ INFO ] esorex: [tid=000] Created product PIXTABLE_SKY_0001-18.fits (in place)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:26:00 [ INFO ] esorex: [tid=000] Created product PIXTABLE_SKY_0001-11.fits (in place)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:26:00 [ INFO ] esorex: [tid=000] Created product PIXTABLE_SKY_0001-07.fits (in place)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:26:00 [ INFO ] esorex: [tid=000] Created product PIXTABLE_SKY_0001-15.fits (in place)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:26:00 [ INFO ] esorex: [tid=000] Created product PIXTABLE_SKY_0001-23.fits (in place)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:26:00 [ INFO ] esorex: [tid=000] Created product PIXTABLE_SKY_0001-19.fits (in place)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:26:00 [ INFO ] esorex: [tid=000] Created product PIXTABLE_SKY_0001-08.fits (in place)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:26:00 [ INFO ] esorex: [tid=000] Created product PIXTABLE_SKY_0001-04.fits (in place)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:26:00 [ INFO ] esorex: [tid=000] Created product PIXTABLE_SKY_0001-20.fits (in place)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:26:00 [ INFO ] esorex: [tid=000] Created product PIXTABLE_SKY_0001-16.fits (in place)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:26:00 [ INFO ] esorex: [tid=000] Created product PIXTABLE_SKY_0001-24.fits (in place)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:26:00 [ INFO ] esorex: [tid=000] Created product PIXTABLE_SKY_0001-12.fits (in place)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:26:00 [ INFO ] esorex: [tid=000] Created product PIXTABLE_SKY_0001-01.fits (in place)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:26:00 [ INFO ] esorex: [tid=000] Created product PIXTABLE_SKY_0001-05.fits (in place)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:26:00 [ INFO ] esorex: [tid=000] Created product PIXTABLE_SKY_0001-13.fits (in place)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:26:00 [ INFO ] esorex: [tid=000] Created product PIXTABLE_SKY_0001-09.fits (in place)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:26:00 [ INFO ] esorex: [tid=000] Created product PIXTABLE_SKY_0001-21.fits (in place)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:26:00 [ INFO ] esorex: [tid=000] Created product PIXTABLE_SKY_0001-17.fits (in place)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:26:00 [ INFO ] esorex: [tid=000] Created product SKY_RED_0001-02.fits (in place)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:26:00 [ INFO ] esorex: [tid=000] Created product SKY_RED_0001-03.fits (in place)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:26:00 [ INFO ] esorex: [tid=000] Created product SKY_RED_0001-06.fits (in place)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:26:00 [ INFO ] esorex: [tid=000] Created product SKY_RED_0001-10.fits (in place)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:26:00 [ INFO ] esorex: [tid=000] Created product SKY_RED_0001-14.fits (in place)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:26:00 [ INFO ] esorex: [tid=000] Created product SKY_RED_0001-22.fits (in place)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:26:00 [ INFO ] esorex: [tid=000] Created product SKY_RED_0001-18.fits (in place)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:26:00 [ INFO ] esorex: [tid=000] Created product SKY_RED_0001-11.fits (in place)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:26:00 [ INFO ] esorex: [tid=000] Created product SKY_RED_0001-07.fits (in place)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:26:00 [ INFO ] esorex: [tid=000] Created product SKY_RED_0001-15.fits (in place)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:26:00 [ INFO ] esorex: [tid=000] Created product SKY_RED_0001-23.fits (in place)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:26:00 [ INFO ] esorex: [tid=000] Created product SKY_RED_0001-19.fits (in place)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:26:00 [ INFO ] esorex: [tid=000] Created product SKY_RED_0001-08.fits (in place)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:26:00 [ INFO ] esorex: [tid=000] Created product SKY_RED_0001-04.fits (in place)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:26:00 [ INFO ] esorex: [tid=000] Created product SKY_RED_0001-20.fits (in place)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:26:00 [ INFO ] esorex: [tid=000] Created product SKY_RED_0001-16.fits (in place)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:26:00 [ INFO ] esorex: [tid=000] Created product SKY_RED_0001-24.fits (in place)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:26:00 [ INFO ] esorex: [tid=000] Created product SKY_RED_0001-12.fits (in place)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:26:00 [ INFO ] esorex: [tid=000] Created product SKY_RED_0001-01.fits (in place)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:26:00 [ INFO ] esorex: [tid=000] Created product SKY_RED_0001-05.fits (in place)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:26:00 [ INFO ] esorex: [tid=000] Created product SKY_RED_0001-13.fits (in place)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:26:00 [ INFO ] esorex: [tid=000] Created product SKY_RED_0001-09.fits (in place)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:26:00 [ INFO ] esorex: [tid=000] Created product SKY_RED_0001-21.fits (in place)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:26:00 [ INFO ] esorex: [tid=000] Created product SKY_RED_0001-17.fits (in place)
[MUSE.2014-08-25T08:40:40.304.rblog] 16:26:00 [ INFO ] esorex: [tid=000] 48 products created
[MUSE.2014-08-25T08:40:40.304.rblog] 16:26:00 [ INFO ] esorex: [tid=000] Recipe operation(s) took 141 seconds to complete.
[MUSE.2014-08-25T08:40:40.304.rblog] 16:26:00 [ INFO ] esorex: [tid=000] Total size of 2 raw input frames = 1766.58 MB
[MUSE.2014-08-25T08:40:40.304.rblog]
[MUSE.2014-08-25T08:40:40.304.rblog] 16:26:00 [ INFO ] esorex: [tid=000] => processing rate of 12.52 MB/sec
[MUSE.2014-08-25T08:40:40.304.rblog]
[MUSE.2014-08-25T08:40:40.304.rblog] EXIT_CODE = 0
[MUSE.2014-08-25T08:40:40.304.rblog] [2016-07-13T16:26:00] *** INFO: ... terminated successful.
[MUSE.2014-08-25T08:40:40.304.rblog]
[MUSE.2014-08-25T08:40:40.304.rblog] [2016-07-13T16:26:03] Execute pgi_postSCI
[MUSE.2014-08-25T08:40:40.304.rblog] [pgi_postSCI] Ignore warnings about SKY_RED.
[MUSE.2014-08-25T08:40:40.304.rblog] ===============================================================================================================
[MUSE.2014-08-25T08:40:40.304.rblog] [2016-07-13T16:26:04] end processing MUSE.2014-08-25T08:40:40.304.ab (RECIPE: muse_scibasic)
[MUSE.2014-08-25T08:40:40.304.rblog] ===============================================================================================================
[MUSE.2014-08-25T08:40:40.304_sky.rblog] ***************************************************************************************************************
[MUSE.2014-08-25T08:40:40.304_sky.rblog] MUSE.2014-08-25T08:40:40.304_sky.rblog:
[MUSE.2014-08-25T08:40:40.304_sky.rblog] ***************************************************************************************************************
[MUSE.2014-08-25T08:40:40.304_sky.rblog] SOF:
[MUSE.2014-08-25T08:40:40.304_sky.rblog] SOF_CONTENT ${DFS_PRODUCT}/SKY/2014-08-24/r.MUSE.2014-08-25T08:40:40.304_0001-01.fits PIXTABLE_SKY CALIB
[MUSE.2014-08-25T08:40:40.304_sky.rblog] SOF_CONTENT ${DFS_PRODUCT}/SKY/2014-08-24/r.MUSE.2014-08-25T08:40:40.304_0001-02.fits PIXTABLE_SKY CALIB
[MUSE.2014-08-25T08:40:40.304_sky.rblog] SOF_CONTENT ${DFS_PRODUCT}/SKY/2014-08-24/r.MUSE.2014-08-25T08:40:40.304_0001-03.fits PIXTABLE_SKY CALIB
[MUSE.2014-08-25T08:40:40.304_sky.rblog] SOF_CONTENT ${DFS_PRODUCT}/SKY/2014-08-24/r.MUSE.2014-08-25T08:40:40.304_0001-04.fits PIXTABLE_SKY CALIB
[MUSE.2014-08-25T08:40:40.304_sky.rblog] SOF_CONTENT ${DFS_PRODUCT}/SKY/2014-08-24/r.MUSE.2014-08-25T08:40:40.304_0001-05.fits PIXTABLE_SKY CALIB
[MUSE.2014-08-25T08:40:40.304_sky.rblog] SOF_CONTENT ${DFS_PRODUCT}/SKY/2014-08-24/r.MUSE.2014-08-25T08:40:40.304_0001-06.fits PIXTABLE_SKY CALIB
[MUSE.2014-08-25T08:40:40.304_sky.rblog] SOF_CONTENT ${DFS_PRODUCT}/SKY/2014-08-24/r.MUSE.2014-08-25T08:40:40.304_0001-07.fits PIXTABLE_SKY CALIB
[MUSE.2014-08-25T08:40:40.304_sky.rblog] SOF_CONTENT ${DFS_PRODUCT}/SKY/2014-08-24/r.MUSE.2014-08-25T08:40:40.304_0001-08.fits PIXTABLE_SKY CALIB
[MUSE.2014-08-25T08:40:40.304_sky.rblog] SOF_CONTENT ${DFS_PRODUCT}/SKY/2014-08-24/r.MUSE.2014-08-25T08:40:40.304_0001-09.fits PIXTABLE_SKY CALIB
[MUSE.2014-08-25T08:40:40.304_sky.rblog] SOF_CONTENT ${DFS_PRODUCT}/SKY/2014-08-24/r.MUSE.2014-08-25T08:40:40.304_0001-10.fits PIXTABLE_SKY CALIB
[MUSE.2014-08-25T08:40:40.304_sky.rblog] SOF_CONTENT ${DFS_PRODUCT}/SKY/2014-08-24/r.MUSE.2014-08-25T08:40:40.304_0001-11.fits PIXTABLE_SKY CALIB
[MUSE.2014-08-25T08:40:40.304_sky.rblog] SOF_CONTENT ${DFS_PRODUCT}/SKY/2014-08-24/r.MUSE.2014-08-25T08:40:40.304_0001-12.fits PIXTABLE_SKY CALIB
[MUSE.2014-08-25T08:40:40.304_sky.rblog] SOF_CONTENT ${DFS_PRODUCT}/SKY/2014-08-24/r.MUSE.2014-08-25T08:40:40.304_0001-13.fits PIXTABLE_SKY CALIB
[MUSE.2014-08-25T08:40:40.304_sky.rblog] SOF_CONTENT ${DFS_PRODUCT}/SKY/2014-08-24/r.MUSE.2014-08-25T08:40:40.304_0001-14.fits PIXTABLE_SKY CALIB
[MUSE.2014-08-25T08:40:40.304_sky.rblog] SOF_CONTENT ${DFS_PRODUCT}/SKY/2014-08-24/r.MUSE.2014-08-25T08:40:40.304_0001-15.fits PIXTABLE_SKY CALIB
[MUSE.2014-08-25T08:40:40.304_sky.rblog] SOF_CONTENT ${DFS_PRODUCT}/SKY/2014-08-24/r.MUSE.2014-08-25T08:40:40.304_0001-16.fits PIXTABLE_SKY CALIB
[MUSE.2014-08-25T08:40:40.304_sky.rblog] SOF_CONTENT ${DFS_PRODUCT}/SKY/2014-08-24/r.MUSE.2014-08-25T08:40:40.304_0001-17.fits PIXTABLE_SKY CALIB
[MUSE.2014-08-25T08:40:40.304_sky.rblog] SOF_CONTENT ${DFS_PRODUCT}/SKY/2014-08-24/r.MUSE.2014-08-25T08:40:40.304_0001-18.fits PIXTABLE_SKY CALIB
[MUSE.2014-08-25T08:40:40.304_sky.rblog] SOF_CONTENT ${DFS_PRODUCT}/SKY/2014-08-24/r.MUSE.2014-08-25T08:40:40.304_0001-19.fits PIXTABLE_SKY CALIB
[MUSE.2014-08-25T08:40:40.304_sky.rblog] SOF_CONTENT ${DFS_PRODUCT}/SKY/2014-08-24/r.MUSE.2014-08-25T08:40:40.304_0001-20.fits PIXTABLE_SKY CALIB
[MUSE.2014-08-25T08:40:40.304_sky.rblog] SOF_CONTENT ${DFS_PRODUCT}/SKY/2014-08-24/r.MUSE.2014-08-25T08:40:40.304_0001-21.fits PIXTABLE_SKY CALIB
[MUSE.2014-08-25T08:40:40.304_sky.rblog] SOF_CONTENT ${DFS_PRODUCT}/SKY/2014-08-24/r.MUSE.2014-08-25T08:40:40.304_0001-22.fits PIXTABLE_SKY CALIB
[MUSE.2014-08-25T08:40:40.304_sky.rblog] SOF_CONTENT ${DFS_PRODUCT}/SKY/2014-08-24/r.MUSE.2014-08-25T08:40:40.304_0001-23.fits PIXTABLE_SKY CALIB
[MUSE.2014-08-25T08:40:40.304_sky.rblog] SOF_CONTENT ${DFS_PRODUCT}/SKY/2014-08-24/r.MUSE.2014-08-25T08:40:40.304_0001-24.fits PIXTABLE_SKY CALIB
[MUSE.2014-08-25T08:40:40.304_sky.rblog] SOF_CONTENT ${DFO_CAL_DIR}/gen/MU_GEXT_140101A_extinct_table.fits EXTINCT_TABLE CALIB
[MUSE.2014-08-25T08:40:40.304_sky.rblog] SOF_CONTENT ${DFO_CAL_DIR}/gen/MU_GSKL_140101A_sky_lines.fits SKY_LINES CALIB
[MUSE.2014-08-25T08:40:40.304_sky.rblog] SOF_CONTENT ${DFO_CAL_DIR}/gen/MU_GFIL_140101A_filter_list.fits FILTER_LIST CALIB
[MUSE.2014-08-25T08:40:40.304_sky.rblog] SOF_CONTENT ${DFO_CAL_DIR}/gen/MU_GLSP_140901A_lsf_profile_slow_wfm-e.fits LSF_PROFILE CALIB
[MUSE.2014-08-25T08:40:40.304_sky.rblog] SOF_CONTENT ${DFO_CAL_DIR}/2014-08-23/MU_MSDR_140823B_WFM-NOAO-E_Clear_SCI1.0.fits STD_RESPONSE CALIB
[MUSE.2014-08-25T08:40:40.304_sky.rblog] SOF_CONTENT ${DFO_CAL_DIR}/2014-08-23/MU_MSDT_140823B_WFM-NOAO-E_Clear_SCI1.0.fits STD_TELLURIC CALIB
[MUSE.2014-08-25T08:40:40.304_sky.rblog] SOF_CONTENT ${DFO_CAL_DIR}/gen/MU_GASW_140731A_astrom_wcs_wfm.fits ASTROMETRY_WCS CALIB
[MUSE.2014-08-25T08:40:40.304_sky.rblog]
[MUSE.2014-08-25T08:40:40.304_sky.rblog] LOG:
[MUSE.2014-08-25T08:40:40.304_sky.rblog] ===============================================================================================================
[MUSE.2014-08-25T08:40:40.304_sky.rblog] [2016-07-13T17:16:48] processAB: MUSE.2014-08-25T08:40:40.304_sky.ab started (version 2.6.5)
[MUSE.2014-08-25T08:40:40.304_sky.rblog] ===============================================================================================================
[MUSE.2014-08-25T08:40:40.304_sky.rblog] [2016-07-13T17:16:48] start processing MUSE.2014-08-25T08:40:40.304_sky.ab (RECIPE: muse_create_sky)
[MUSE.2014-08-25T08:40:40.304_sky.rblog] RAW_TYPE: PIXTABLE_SKY
[MUSE.2014-08-25T08:40:40.304_sky.rblog] RECIPE: muse_create_sky
[MUSE.2014-08-25T08:40:40.304_sky.rblog] VERSION: /usr/lib64/esopipes-plugins/muse-1.6.1
[MUSE.2014-08-25T08:40:40.304_sky.rblog] Setup for input files:
[MUSE.2014-08-25T08:40:40.304_sky.rblog] INS.MODE=WFM-NOAO-E_SKY
[MUSE.2014-08-25T08:40:40.304_sky.rblog] Parameters: all default
[MUSE.2014-08-25T08:40:40.304_sky.rblog]
[MUSE.2014-08-25T08:40:40.304_sky.rblog] -------------------------------------------------------------------------------------------------
[MUSE.2014-08-25T08:40:40.304_sky.rblog]
[MUSE.2014-08-25T08:40:40.304_sky.rblog] RECIPE CALL:
[MUSE.2014-08-25T08:40:40.304_sky.rblog] esorex --time --output-dir=/qc/muse_ph3/work/MUSE.2014-08-25T08:40:40.304_sky.ab --suppress-prefix --no-checksum --no-datamd5 --check-sof-exist muse_create_sky sof
[MUSE.2014-08-25T08:40:40.304_sky.rblog]
[MUSE.2014-08-25T08:40:40.304_sky.rblog] ***** ESO Recipe Execution Tool, version 3.12.3 *****
[MUSE.2014-08-25T08:40:40.304_sky.rblog] 17:16:48 [ INFO ] muse_create_sky: MUSE Instrument Pipeline v1.6.1
[MUSE.2014-08-25T08:40:40.304_sky.rblog] 17:16:48 [ INFO ] muse_create_sky: [tid=000] Loading pixel table "/qc/muse_ph3/dfs_product/SKY/2014-08-24/r.MUSE.2014-08-25T08:40:40.304_0001-01.fits" (image format)
[MUSE.2014-08-25T08:40:40.304_sky.rblog] 17:16:48 [ INFO ] muse_create_sky: [tid=000] Loading pixel table "/qc/muse_ph3/dfs_product/SKY/2014-08-24/r.MUSE.2014-08-25T08:40:40.304_0001-02.fits" (image format)
[MUSE.2014-08-25T08:40:40.304_sky.rblog] 17:16:49 [ INFO ] muse_create_sky: [tid=000] Loading pixel table "/qc/muse_ph3/dfs_product/SKY/2014-08-24/r.MUSE.2014-08-25T08:40:40.304_0001-03.fits" (image format)
[MUSE.2014-08-25T08:40:40.304_sky.rblog] 17:16:50 [ INFO ] muse_create_sky: [tid=000] Loading pixel table "/qc/muse_ph3/dfs_product/SKY/2014-08-24/r.MUSE.2014-08-25T08:40:40.304_0001-04.fits" (image format)
[MUSE.2014-08-25T08:40:40.304_sky.rblog] 17:16:51 [ INFO ] muse_create_sky: [tid=000] Loading pixel table "/qc/muse_ph3/dfs_product/SKY/2014-08-24/r.MUSE.2014-08-25T08:40:40.304_0001-05.fits" (image format)
[MUSE.2014-08-25T08:40:40.304_sky.rblog] 17:16:51 [ INFO ] muse_create_sky: [tid=000] Loading pixel table "/qc/muse_ph3/dfs_product/SKY/2014-08-24/r.MUSE.2014-08-25T08:40:40.304_0001-06.fits" (image format)
[MUSE.2014-08-25T08:40:40.304_sky.rblog] 17:16:52 [ INFO ] muse_create_sky: [tid=000] Loading pixel table "/qc/muse_ph3/dfs_product/SKY/2014-08-24/r.MUSE.2014-08-25T08:40:40.304_0001-07.fits" (image format)
[MUSE.2014-08-25T08:40:40.304_sky.rblog] 17:16:53 [ INFO ] muse_create_sky: [tid=000] Loading pixel table "/qc/muse_ph3/dfs_product/SKY/2014-08-24/r.MUSE.2014-08-25T08:40:40.304_0001-08.fits" (image format)
[MUSE.2014-08-25T08:40:40.304_sky.rblog] 17:16:54 [ INFO ] muse_create_sky: [tid=000] Loading pixel table "/qc/muse_ph3/dfs_product/SKY/2014-08-24/r.MUSE.2014-08-25T08:40:40.304_0001-09.fits" (image format)
[MUSE.2014-08-25T08:40:40.304_sky.rblog] 17:16:54 [ INFO ] muse_create_sky: [tid=000] Loading pixel table "/qc/muse_ph3/dfs_product/SKY/2014-08-24/r.MUSE.2014-08-25T08:40:40.304_0001-10.fits" (image format)
[MUSE.2014-08-25T08:40:40.304_sky.rblog] 17:16:55 [ INFO ] muse_create_sky: [tid=000] Loading pixel table "/qc/muse_ph3/dfs_product/SKY/2014-08-24/r.MUSE.2014-08-25T08:40:40.304_0001-11.fits" (image format)
[MUSE.2014-08-25T08:40:40.304_sky.rblog] 17:16:56 [ INFO ] muse_create_sky: [tid=000] Loading pixel table "/qc/muse_ph3/dfs_product/SKY/2014-08-24/r.MUSE.2014-08-25T08:40:40.304_0001-12.fits" (image format)
[MUSE.2014-08-25T08:40:40.304_sky.rblog] 17:16:56 [ INFO ] muse_create_sky: [tid=000] Loading pixel table "/qc/muse_ph3/dfs_product/SKY/2014-08-24/r.MUSE.2014-08-25T08:40:40.304_0001-13.fits" (image format)
[MUSE.2014-08-25T08:40:40.304_sky.rblog] 17:16:57 [ INFO ] muse_create_sky: [tid=000] Loading pixel table "/qc/muse_ph3/dfs_product/SKY/2014-08-24/r.MUSE.2014-08-25T08:40:40.304_0001-14.fits" (image format)
[MUSE.2014-08-25T08:40:40.304_sky.rblog] 17:16:58 [ INFO ] muse_create_sky: [tid=000] Loading pixel table "/qc/muse_ph3/dfs_product/SKY/2014-08-24/r.MUSE.2014-08-25T08:40:40.304_0001-15.fits" (image format)
[MUSE.2014-08-25T08:40:40.304_sky.rblog] 17:16:59 [ INFO ] muse_create_sky: [tid=000] Loading pixel table "/qc/muse_ph3/dfs_product/SKY/2014-08-24/r.MUSE.2014-08-25T08:40:40.304_0001-16.fits" (image format)
[MUSE.2014-08-25T08:40:40.304_sky.rblog] 17:16:59 [ INFO ] muse_create_sky: [tid=000] Loading pixel table "/qc/muse_ph3/dfs_product/SKY/2014-08-24/r.MUSE.2014-08-25T08:40:40.304_0001-17.fits" (image format)
[MUSE.2014-08-25T08:40:40.304_sky.rblog] 17:17:00 [ INFO ] muse_create_sky: [tid=000] Loading pixel table "/qc/muse_ph3/dfs_product/SKY/2014-08-24/r.MUSE.2014-08-25T08:40:40.304_0001-18.fits" (image format)
[MUSE.2014-08-25T08:40:40.304_sky.rblog] 17:17:01 [ INFO ] muse_create_sky: [tid=000] Loading pixel table "/qc/muse_ph3/dfs_product/SKY/2014-08-24/r.MUSE.2014-08-25T08:40:40.304_0001-19.fits" (image format)
[MUSE.2014-08-25T08:40:40.304_sky.rblog] 17:17:02 [ INFO ] muse_create_sky: [tid=000] Loading pixel table "/qc/muse_ph3/dfs_product/SKY/2014-08-24/r.MUSE.2014-08-25T08:40:40.304_0001-20.fits" (image format)
[MUSE.2014-08-25T08:40:40.304_sky.rblog] 17:17:02 [ INFO ] muse_create_sky: [tid=000] Loading pixel table "/qc/muse_ph3/dfs_product/SKY/2014-08-24/r.MUSE.2014-08-25T08:40:40.304_0001-21.fits" (image format)
[MUSE.2014-08-25T08:40:40.304_sky.rblog] 17:17:03 [ INFO ] muse_create_sky: [tid=000] Loading pixel table "/qc/muse_ph3/dfs_product/SKY/2014-08-24/r.MUSE.2014-08-25T08:40:40.304_0001-22.fits" (image format)
[MUSE.2014-08-25T08:40:40.304_sky.rblog] 17:17:04 [ INFO ] muse_create_sky: [tid=000] Loading pixel table "/qc/muse_ph3/dfs_product/SKY/2014-08-24/r.MUSE.2014-08-25T08:40:40.304_0001-23.fits" (image format)
[MUSE.2014-08-25T08:40:40.304_sky.rblog] 17:17:04 [ INFO ] muse_create_sky: [tid=000] Loading pixel table "/qc/muse_ph3/dfs_product/SKY/2014-08-24/r.MUSE.2014-08-25T08:40:40.304_0001-24.fits" (image format)
[MUSE.2014-08-25T08:40:40.304_sky.rblog] 17:17:06 [ INFO ] muse_create_sky: [tid=000] loaded STD_RESPONSE from file "/qc/muse_ph3/calib/2014-08-23/MU_MSDR_140823B_WFM-NOAO-E_Clear_SCI1.0.fits" (ext 1)
[MUSE.2014-08-25T08:40:40.304_sky.rblog] 17:17:06 [ INFO ] muse_create_sky: [tid=000] loaded EXTINCT_TABLE from file "/qc/muse_ph3/calib/gen/MU_GEXT_140101A_extinct_table.fits" (ext 1)
[MUSE.2014-08-25T08:40:40.304_sky.rblog] 17:17:06 [ INFO ] muse_create_sky: [tid=000] loaded STD_TELLURIC from file "/qc/muse_ph3/calib/2014-08-23/MU_MSDT_140823B_WFM-NOAO-E_Clear_SCI1.0.fits" (ext 1)
[MUSE.2014-08-25T08:40:40.304_sky.rblog] 17:17:06 [ INFO ] muse_create_sky: [tid=000] Starting flux calibration (exptime=300.00s, airmass=1.6824), with telluric correction
[MUSE.2014-08-25T08:40:40.304_sky.rblog] 17:17:21 [ INFO ] muse_create_sky: [tid=000] DAR for T=9.69 degC, fp=0.623 mmHg, P=556.5 mmHg, at airmass=1.6824, using ref. wavelength 0.700000 um (Filippenko)
[MUSE.2014-08-25T08:40:40.304_sky.rblog] 17:17:23 [ INFO ] muse_create_sky: [tid=000] Output cube size 320 x 309 x 3801 (fit to data)
[MUSE.2014-08-25T08:40:40.304_sky.rblog] 17:17:42 [ INFO ] muse_create_sky: [tid=000] Using median statistics (15.000 sigma level) for cosmic-ray rejection
[MUSE.2014-08-25T08:40:40.304_sky.rblog] 17:18:34 [ INFO ] muse_create_sky: [tid=000] Starting resampling, using method "drizzle" (pixfrac f=0.600,0.600,0.600, loop distance ld=1)
[MUSE.2014-08-25T08:40:40.304_sky.rblog] 17:18:53 [ INFO ] muse_create_sky: [tid=000] Saving image as IMAGE_FOV.fits
[MUSE.2014-08-25T08:40:40.304_sky.rblog] 17:18:54 [ INFO ] muse_create_sky: [tid=000] Creating sky mask for pixels between minimum (82.4206) and threshold (86.5186)
[MUSE.2014-08-25T08:40:40.304_sky.rblog] 17:18:54 [ INFO ] muse_create_sky: [tid=000] Saving mask as SKY_MASK.fits
[MUSE.2014-08-25T08:40:40.304_sky.rblog] 17:20:58 [ INFO ] muse_create_sky: [tid=000] Saving table as "SKY_SPECTRUM.fits"
[MUSE.2014-08-25T08:40:40.304_sky.rblog] 17:20:59 [ INFO ] muse_create_sky: [tid=000] Loaded sky lines from "/qc/muse_ph3/calib/gen/MU_GSKL_140101A_sky_lines.fits"
[MUSE.2014-08-25T08:40:40.304_sky.rblog] 17:20:59 [WARNING] muse_create_sky: [tid=000] Could not load LSF (cube format) for IFU 1 from "/qc/muse_ph3/calib/gen/MU_GLSP_140901A_lsf_profile_slow_wfm-e.fits"!
[MUSE.2014-08-25T08:40:40.304_sky.rblog] 17:20:59 [ INFO ] muse_create_sky: [tid=000] Loaded (merged) slice LSF params from "/qc/muse_ph3/calib/gen/MU_GLSP_140901A_lsf_profile_slow_wfm-e.fits"
[MUSE.2014-08-25T08:40:40.304_sky.rblog] 17:20:59 [ INFO ] muse_create_sky: [tid=000] Starting master sky fit
[MUSE.2014-08-25T08:40:40.304_sky.rblog] 17:21:27 [ INFO ] muse_create_sky: [tid=000] Master sky fit finished successfully.
[MUSE.2014-08-25T08:40:40.304_sky.rblog] 17:21:27 [ INFO ] muse_create_sky: [tid=000] refraction index=1+0, offset=0.105423 Angstrom
[MUSE.2014-08-25T08:40:40.304_sky.rblog] 17:21:31 [ INFO ] muse_create_sky: [tid=000] Starting sky subtraction of 1152 slices
[MUSE.2014-08-25T08:40:40.304_sky.rblog] 17:24:11 [ INFO ] esorex: [tid=000] Created product IMAGE_FOV.fits (in place)
[MUSE.2014-08-25T08:40:40.304_sky.rblog] 17:24:11 [ INFO ] esorex: [tid=000] Created product SKY_CONTINUUM.fits (in place)
[MUSE.2014-08-25T08:40:40.304_sky.rblog] 17:24:11 [ INFO ] esorex: [tid=000] Created product SKY_LINES.fits (in place)
[MUSE.2014-08-25T08:40:40.304_sky.rblog] 17:24:11 [ INFO ] esorex: [tid=000] Created product SKY_MASK.fits (in place)
[MUSE.2014-08-25T08:40:40.304_sky.rblog] 17:24:11 [ INFO ] esorex: [tid=000] Created product SKY_SPECTRUM.fits (in place)
[MUSE.2014-08-25T08:40:40.304_sky.rblog] 17:24:11 [ INFO ] esorex: [tid=000] 5 products created
[MUSE.2014-08-25T08:40:40.304_sky.rblog] 17:24:11 [ INFO ] esorex: [tid=000] Recipe operation(s) took 443 seconds to complete.
[MUSE.2014-08-25T08:40:40.304_sky.rblog] 17:24:11 [ INFO ] esorex: [tid=000] Total size of 24 raw input frames = 9358.09 MB
[MUSE.2014-08-25T08:40:40.304_sky.rblog]
[MUSE.2014-08-25T08:40:40.304_sky.rblog] 17:24:11 [ INFO ] esorex: [tid=000] => processing rate of 21.13 MB/sec
[MUSE.2014-08-25T08:40:40.304_sky.rblog]
[MUSE.2014-08-25T08:40:40.304_sky.rblog] EXIT_CODE = 0
[MUSE.2014-08-25T08:40:40.304_sky.rblog] [2016-07-13T17:24:11] *** INFO: ... terminated successful.
[MUSE.2014-08-25T08:40:40.304_sky.rblog]
[MUSE.2014-08-25T08:40:40.304_sky.rblog] [2016-07-13T17:24:11] Execute pgi_postSCI
[MUSE.2014-08-25T08:40:40.304_sky.rblog] [pgi_postSCI] Calling phoenixGetLogs for the pipeline log file ...
[MUSE.2014-08-25T08:40:40.304_sky.rblog] [pgi_postSCI] PIXTABLE_SKY files not deleted, needed for pst AB.
[MUSE.2014-08-25T08:40:40.304_sky.rblog] ===============================================================================================================
[MUSE.2014-08-25T08:40:40.304_sky.rblog] [2016-07-13T17:24:11] end processing MUSE.2014-08-25T08:40:40.304_sky.ab (RECIPE: muse_create_sky)
[MUSE.2014-08-25T08:40:40.304_sky.rblog] ===============================================================================================================
[MUSE.2014-08-25T09:04:20.398.rblog] ***************************************************************************************************************
[MUSE.2014-08-25T09:04:20.398.rblog] MUSE.2014-08-25T09:04:20.398.rblog:
[MUSE.2014-08-25T09:04:20.398.rblog] ***************************************************************************************************************
[MUSE.2014-08-25T09:04:20.398.rblog] SOF:
[MUSE.2014-08-25T09:04:20.398.rblog] SOF_CONTENT ${DFO_RAW_DIR}/2014-08-24/MUSE.2014-08-25T09:04:20.398.fits OBJECT RAW
[MUSE.2014-08-25T09:04:20.398.rblog] SOF_CONTENT ${DFO_CAL_DIR}/gen/MU_GEXT_140101A_extinct_table.fits EXTINCT_TABLE CALIB
[MUSE.2014-08-25T09:04:20.398.rblog] SOF_CONTENT ${DFO_CAL_DIR}/gen/MU_GFIL_140101A_filter_list.fits FILTER_LIST CALIB
[MUSE.2014-08-25T09:04:20.398.rblog] SOF_CONTENT ${DFO_CAL_DIR}/gen/MU_GEOT_140729A_geometry_table_wfm.fits GEOMETRY_TABLE CALIB
[MUSE.2014-08-25T09:04:20.398.rblog] SOF_CONTENT ${DFO_CAL_DIR}/2014-08-24/MU_MBIA_140824A_WFM-NOAO-N_SCI1.0.fits MASTER_BIAS CALIB
[MUSE.2014-08-25T09:04:20.398.rblog] SOF_CONTENT ${DFO_CAL_DIR}/2014-08-24/MU_MFLA_140824A_WFM-NOAO-E_Clear_SCI1.0.fits MASTER_FLAT CALIB
[MUSE.2014-08-25T09:04:20.398.rblog] SOF_CONTENT ${DFO_CAL_DIR}/2014-08-24/MU_PFTT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits TRACE_TABLE CALIB
[MUSE.2014-08-25T09:04:20.398.rblog] SOF_CONTENT ${DFO_CAL_DIR}/2014-08-24/MU_PWCT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits WAVECAL_TABLE CALIB
[MUSE.2014-08-25T09:04:20.398.rblog] SOF_CONTENT ${DFO_CAL_DIR}/gen/MU_GLSP_140901A_lsf_profile_slow_wfm-e.fits LSF_PROFILE CALIB
[MUSE.2014-08-25T09:04:20.398.rblog] SOF_CONTENT ${DFO_CAL_DIR}/2014-08-24/MU_MTWC_140824A_WFM-NOAO-E_Clear_SCI1.0.fits TWILIGHT_CUBE CALIB
[MUSE.2014-08-25T09:04:20.398.rblog] SOF_CONTENT ${DFO_CAL_DIR}/2014-08-23/MU_MSDR_140823B_WFM-NOAO-E_Clear_SCI1.0.fits STD_RESPONSE CALIB
[MUSE.2014-08-25T09:04:20.398.rblog] SOF_CONTENT ${DFO_CAL_DIR}/2014-08-23/MU_MSDT_140823B_WFM-NOAO-E_Clear_SCI1.0.fits STD_TELLURIC CALIB
[MUSE.2014-08-25T09:04:20.398.rblog] SOF_CONTENT ${DFO_CAL_DIR}/gen/MU_GASW_140731A_astrom_wcs_wfm.fits ASTROMETRY_WCS CALIB
[MUSE.2014-08-25T09:04:20.398.rblog] SOF_CONTENT ${DFS_PRODUCT}/SKY/2014-08-24/r.MUSE.2014-08-25T08:40:40.304_sky_0001.fits SKY_LINES CALIB
[MUSE.2014-08-25T09:04:20.398.rblog] SOF_CONTENT ${DFS_PRODUCT}/SKY/2014-08-24/r.MUSE.2014-08-25T08:40:40.304_sky_0002.fits SKY_CONTINUUM CALIB
[MUSE.2014-08-25T09:04:20.398.rblog] SOF_CONTENT ${DFO_RAW_DIR}/2014-08-24/MUSE.2014-08-25T08:38:58.343.fits ILLUM RAW
[MUSE.2014-08-25T09:04:20.398.rblog]
[MUSE.2014-08-25T09:04:20.398.rblog] LOG:
[MUSE.2014-08-25T09:04:20.398.rblog] ===============================================================================================================
[MUSE.2014-08-25T09:04:20.398.rblog] [2016-07-13T19:38:55] processAB: MUSE.2014-08-25T09:04:20.398.ab started (version 2.6.5)
[MUSE.2014-08-25T09:04:20.398.rblog] ===============================================================================================================
[MUSE.2014-08-25T09:04:20.398.rblog] [2016-07-13T19:38:55] start processing MUSE.2014-08-25T09:04:20.398.ab (RECIPE: muse_scibasic)
[MUSE.2014-08-25T09:04:20.398.rblog] RAW_TYPE: SCI_SINGLE
[MUSE.2014-08-25T09:04:20.398.rblog] RECIPE: muse_scibasic
[MUSE.2014-08-25T09:04:20.398.rblog] VERSION: /usr/lib64/esopipes-plugins/muse-1.6.1
[MUSE.2014-08-25T09:04:20.398.rblog] Setup for input files:
[MUSE.2014-08-25T09:04:20.398.rblog] INS.MODE=WFM-NOAO-E
[MUSE.2014-08-25T09:04:20.398.rblog] Non-default parameters:
[MUSE.2014-08-25T09:04:20.398.rblog] --nifu=-1
[MUSE.2014-08-25T09:04:20.398.rblog]
[MUSE.2014-08-25T09:04:20.398.rblog] -------------------------------------------------------------------------------------------------
[MUSE.2014-08-25T09:04:20.398.rblog] Requesting MUSE.2014-08-25T09:04:20.398.fits from NGAS ... (header will be updated)
[MUSE.2014-08-25T09:04:20.398.rblog] ... done successfully.
[MUSE.2014-08-25T09:04:20.398.rblog]
[MUSE.2014-08-25T09:04:20.398.rblog] RECIPE CALL:
[MUSE.2014-08-25T09:04:20.398.rblog] /opt/likwid/bin/likwid-pin -c 0-24 esorex --time --output-dir=/qc/muse_ph3/work/MUSE.2014-08-25T09:04:20.398.ab --suppress-prefix --no-checksum --no-datamd5 --check-sof-exist muse_scibasic --nifu=-1 sof
[MUSE.2014-08-25T09:04:20.398.rblog] [likwid-pin] Main PID -> core 0 - OK
[MUSE.2014-08-25T09:04:20.398.rblog]
[MUSE.2014-08-25T09:04:20.398.rblog] ***** ESO Recipe Execution Tool, version 3.12.3 *****
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:34 [ INFO ] muse_scibasic: MUSE Instrument Pipeline v1.6.1
[MUSE.2014-08-25T09:04:20.398.rblog] [pthread wrapper] [pthread wrapper] PIN_MASK: 0->1 1->2 2->3 3->4 4->5 5->6 6->7 7->8 8->9 9->10 10->11 11->12 12->13 13->14 14->15 15->16 16->17 17->18 18->19 19->20 20->21 21->22 22->23 23->24
[MUSE.2014-08-25T09:04:20.398.rblog] [pthread wrapper] SKIP MASK: 0x0
[MUSE.2014-08-25T09:04:20.398.rblog] threadid 139719789455104 -> core 1 - OK
[MUSE.2014-08-25T09:04:20.398.rblog] threadid 139719722342144 -> core 2 - OK
[MUSE.2014-08-25T09:04:20.398.rblog] threadid 139719655229184 -> core 3 - OK
[MUSE.2014-08-25T09:04:20.398.rblog] threadid 139719588116224 -> core 4 - OK
[MUSE.2014-08-25T09:04:20.398.rblog] threadid 139719521003264 -> core 5 - OK
[MUSE.2014-08-25T09:04:20.398.rblog] threadid 139719453890304 -> core 6 - OK
[MUSE.2014-08-25T09:04:20.398.rblog] threadid 139719386777344 -> core 7 - OK
[MUSE.2014-08-25T09:04:20.398.rblog] threadid 139719319664384 -> core 8 - OK
[MUSE.2014-08-25T09:04:20.398.rblog] threadid 139719252551424 -> core 9 - OK
[MUSE.2014-08-25T09:04:20.398.rblog] threadid 139719185438464 -> core 10 - OK
[MUSE.2014-08-25T09:04:20.398.rblog] threadid 139719118325504 -> core 11 - OK
[MUSE.2014-08-25T09:04:20.398.rblog] threadid 139719051212544 -> core 12 - OK
[MUSE.2014-08-25T09:04:20.398.rblog] threadid 139718984099584 -> core 13 - OK
[MUSE.2014-08-25T09:04:20.398.rblog] threadid 139718916986624 -> core 14 - OK
[MUSE.2014-08-25T09:04:20.398.rblog] threadid 139718849873664 -> core 15 - OK
[MUSE.2014-08-25T09:04:20.398.rblog] threadid 139718782760704 -> core 16 - OK
[MUSE.2014-08-25T09:04:20.398.rblog] threadid 139718715647744 -> core 17 - OK
[MUSE.2014-08-25T09:04:20.398.rblog] threadid 139718648534784 -> core 18 - OK
[MUSE.2014-08-25T09:04:20.398.rblog] threadid 139718581421824 -> core 19 - OK
[MUSE.2014-08-25T09:04:20.398.rblog] threadid 139718514308864 -> core 20 - OK
[MUSE.2014-08-25T09:04:20.398.rblog] threadid 139718447195904 -> core 21 - OK
[MUSE.2014-08-25T09:04:20.398.rblog] threadid 139718380082944 -> core 22 - OK
[MUSE.2014-08-25T09:04:20.398.rblog] threadid 139718312969984 -> core 23 - OK
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:37 [ INFO ] muse_scibasic: [tid=002] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T09:04:20.398.fits[CHAN03]" (extension 6)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:37 [ INFO ] muse_scibasic: [tid=004] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T09:04:20.398.fits[CHAN05]" (extension 5)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:37 [ INFO ] muse_scibasic: [tid=002] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:38:58.343.fits[CHAN03]" (extension 6)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:37 [ INFO ] muse_scibasic: [tid=001] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T09:04:20.398.fits[CHAN02]" (extension 12)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:37 [ INFO ] muse_scibasic: [tid=004] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:38:58.343.fits[CHAN05]" (extension 5)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:38 [ INFO ] muse_scibasic: [tid=001] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:38:58.343.fits[CHAN02]" (extension 12)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:38 [ INFO ] muse_scibasic: [tid=000] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T09:04:20.398.fits[CHAN01]" (extension 18)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:39 [ INFO ] muse_scibasic: [tid=010] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T09:04:20.398.fits[CHAN11]" (extension 4)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:39 [ INFO ] muse_scibasic: [tid=007] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T09:04:20.398.fits[CHAN08]" (extension 11)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:39 [ INFO ] muse_scibasic: [tid=000] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:38:58.343.fits[CHAN01]" (extension 18)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:39 [WARNING] muse_scibasic: [tid=000] Raw exposure 1 [/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T09:04:20.398.fits] is probably saturated in IFU 1 (33009 of 17909760 pixels)!
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:39 [ INFO ] muse_scibasic: [tid=010] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:38:58.343.fits[CHAN11]" (extension 4)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:40 [ INFO ] muse_scibasic: [tid=009] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T09:04:20.398.fits[CHAN10]" (extension 10)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:40 [ INFO ] muse_scibasic: [tid=007] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:38:58.343.fits[CHAN08]" (extension 11)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:40 [ INFO ] muse_scibasic: [tid=006] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T09:04:20.398.fits[CHAN07]" (extension 17)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:40 [ INFO ] muse_scibasic: [tid=009] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:38:58.343.fits[CHAN10]" (extension 10)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:40 [ INFO ] muse_scibasic: [tid=008] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T09:04:20.398.fits[CHAN09]" (extension 16)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:40 [ INFO ] muse_scibasic: [tid=014] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T09:04:20.398.fits[CHAN15]" (extension 3)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:41 [ INFO ] muse_scibasic: [tid=003] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T09:04:20.398.fits[CHAN04]" (extension 24)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:41 [ INFO ] muse_scibasic: [tid=006] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:38:58.343.fits[CHAN07]" (extension 17)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:41 [ INFO ] muse_scibasic: [tid=016] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T09:04:20.398.fits[CHAN17]" (extension 2)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:41 [ INFO ] muse_scibasic: [tid=005] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T09:04:20.398.fits[CHAN06]" (extension 23)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:41 [ INFO ] muse_scibasic: [tid=013] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T09:04:20.398.fits[CHAN14]" (extension 9)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:41 [ INFO ] muse_scibasic: [tid=014] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:38:58.343.fits[CHAN15]" (extension 3)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:41 [ INFO ] muse_scibasic: [tid=008] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:38:58.343.fits[CHAN09]" (extension 16)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:41 [ INFO ] muse_scibasic: [tid=016] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:38:58.343.fits[CHAN17]" (extension 2)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:41 [ INFO ] muse_scibasic: [tid=012] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T09:04:20.398.fits[CHAN13]" (extension 15)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:42 [ INFO ] muse_scibasic: [tid=013] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:38:58.343.fits[CHAN14]" (extension 9)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:42 [ INFO ] muse_scibasic: [tid=003] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:38:58.343.fits[CHAN04]" (extension 24)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:42 [ INFO ] muse_scibasic: [tid=005] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:38:58.343.fits[CHAN06]" (extension 23)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:42 [ INFO ] muse_scibasic: [tid=012] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:38:58.343.fits[CHAN13]" (extension 15)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:42 [ INFO ] muse_scibasic: [tid=011] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T09:04:20.398.fits[CHAN12]" (extension 22)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:43 [ INFO ] muse_scibasic: [tid=000] Bias correction in IFU 1 using "/qc/muse_ph3/calib/2014-08-24/MU_MBIA_140824A_WFM-NOAO-N_SCI1.0.fits[CHAN01.DATA]"
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:43 [ INFO ] muse_scibasic: [tid=019] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T09:04:20.398.fits[CHAN20]" (extension 8)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:43 [ INFO ] muse_scibasic: [tid=001] Bias correction in IFU 2 using "/qc/muse_ph3/calib/2014-08-24/MU_MBIA_140824A_WFM-NOAO-N_SCI1.0.fits[CHAN02.DATA]"
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:43 [ INFO ] muse_scibasic: [tid=002] Bias correction in IFU 3 using "/qc/muse_ph3/calib/2014-08-24/MU_MBIA_140824A_WFM-NOAO-N_SCI1.0.fits[CHAN03.DATA]"
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:43 [ INFO ] muse_scibasic: [tid=011] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:38:58.343.fits[CHAN12]" (extension 22)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:43 [ INFO ] muse_scibasic: [tid=015] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T09:04:20.398.fits[CHAN16]" (extension 21)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:43 [ INFO ] muse_scibasic: [tid=019] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:38:58.343.fits[CHAN20]" (extension 8)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:43 [ INFO ] muse_scibasic: [tid=022] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T09:04:20.398.fits[CHAN23]" (extension 1)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:44 [ INFO ] muse_scibasic: [tid=018] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T09:04:20.398.fits[CHAN19]" (extension 14)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:44 [ INFO ] muse_scibasic: [tid=021] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T09:04:20.398.fits[CHAN22]" (extension 7)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:44 [ INFO ] muse_scibasic: [tid=022] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:38:58.343.fits[CHAN23]" (extension 1)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:44 [ INFO ] muse_scibasic: [tid=004] Bias correction in IFU 5 using "/qc/muse_ph3/calib/2014-08-24/MU_MBIA_140824A_WFM-NOAO-N_SCI1.0.fits[CHAN05.DATA]"
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:44 [ INFO ] muse_scibasic: [tid=015] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:38:58.343.fits[CHAN16]" (extension 21)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:44 [ INFO ] muse_scibasic: [tid=017] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T09:04:20.398.fits[CHAN18]" (extension 20)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:44 [ INFO ] muse_scibasic: [tid=020] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T09:04:20.398.fits[CHAN21]" (extension 13)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:44 [ INFO ] muse_scibasic: [tid=021] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:38:58.343.fits[CHAN22]" (extension 7)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:44 [ INFO ] muse_scibasic: [tid=018] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:38:58.343.fits[CHAN19]" (extension 14)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:45 [ INFO ] muse_scibasic: [tid=007] Bias correction in IFU 8 using "/qc/muse_ph3/calib/2014-08-24/MU_MBIA_140824A_WFM-NOAO-N_SCI1.0.fits[CHAN08.DATA]"
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:45 [ INFO ] muse_scibasic: [tid=020] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:38:58.343.fits[CHAN21]" (extension 13)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:45 [ INFO ] muse_scibasic: [tid=000] Converting 2 exposures from adu to count (= electron) units in IFU 1
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:45 [ INFO ] muse_scibasic: [tid=017] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:38:58.343.fits[CHAN18]" (extension 20)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:45 [ INFO ] muse_scibasic: [tid=001] Converting 2 exposures from adu to count (= electron) units in IFU 2
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:45 [ INFO ] muse_scibasic: [tid=010] Bias correction in IFU 11 using "/qc/muse_ph3/calib/2014-08-24/MU_MBIA_140824A_WFM-NOAO-N_SCI1.0.fits[CHAN11.DATA]"
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:46 [ INFO ] muse_scibasic: [tid=008] Bias correction in IFU 9 using "/qc/muse_ph3/calib/2014-08-24/MU_MBIA_140824A_WFM-NOAO-N_SCI1.0.fits[CHAN09.DATA]"
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:46 [ INFO ] muse_scibasic: [tid=002] Converting 2 exposures from adu to count (= electron) units in IFU 3
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:47 [ INFO ] muse_scibasic: [tid=005] Bias correction in IFU 6 using "/qc/muse_ph3/calib/2014-08-24/MU_MBIA_140824A_WFM-NOAO-N_SCI1.0.fits[CHAN06.DATA]"
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:47 [ INFO ] muse_scibasic: [tid=004] Converting 2 exposures from adu to count (= electron) units in IFU 5
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:47 [ INFO ] muse_scibasic: [tid=007] Converting 2 exposures from adu to count (= electron) units in IFU 8
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:48 [ INFO ] muse_scibasic: [tid=023] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T09:04:20.398.fits[CHAN24]" (extension 19)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:50 [ INFO ] muse_scibasic: [tid=010] Converting 2 exposures from adu to count (= electron) units in IFU 11
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:50 [ INFO ] muse_scibasic: [tid=008] Converting 2 exposures from adu to count (= electron) units in IFU 9
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:52 [ INFO ] muse_scibasic: [tid=001] Flat-field correction in IFU 2 using "/qc/muse_ph3/calib/2014-08-24/MU_MFLA_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN02.DATA]"
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:52 [ INFO ] muse_scibasic: [tid=000] Flat-field correction in IFU 1 using "/qc/muse_ph3/calib/2014-08-24/MU_MFLA_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN01.DATA]"
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:52 [ INFO ] muse_scibasic: [tid=009] Bias correction in IFU 10 using "/qc/muse_ph3/calib/2014-08-24/MU_MBIA_140824A_WFM-NOAO-N_SCI1.0.fits[CHAN10.DATA]"
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:53 [ INFO ] muse_scibasic: [tid=023] loaded "/qc/muse_ph3/raw/2014-08-24/MUSE.2014-08-25T08:38:58.343.fits[CHAN24]" (extension 19)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:53 [ INFO ] muse_scibasic: [tid=016] Bias correction in IFU 17 using "/qc/muse_ph3/calib/2014-08-24/MU_MBIA_140824A_WFM-NOAO-N_SCI1.0.fits[CHAN17.DATA]"
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:53 [ INFO ] muse_scibasic: [tid=002] Flat-field correction in IFU 3 using "/qc/muse_ph3/calib/2014-08-24/MU_MFLA_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN03.DATA]"
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:53 [ INFO ] muse_scibasic: [tid=005] Converting 2 exposures from adu to count (= electron) units in IFU 6
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:53 [ INFO ] muse_scibasic: [tid=006] Bias correction in IFU 7 using "/qc/muse_ph3/calib/2014-08-24/MU_MBIA_140824A_WFM-NOAO-N_SCI1.0.fits[CHAN07.DATA]"
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:53 [ INFO ] muse_scibasic: [tid=013] Bias correction in IFU 14 using "/qc/muse_ph3/calib/2014-08-24/MU_MBIA_140824A_WFM-NOAO-N_SCI1.0.fits[CHAN14.DATA]"
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:53 [ INFO ] muse_scibasic: [tid=004] Flat-field correction in IFU 5 using "/qc/muse_ph3/calib/2014-08-24/MU_MFLA_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN05.DATA]"
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:53 [ INFO ] muse_scibasic: [tid=014] Bias correction in IFU 15 using "/qc/muse_ph3/calib/2014-08-24/MU_MBIA_140824A_WFM-NOAO-N_SCI1.0.fits[CHAN15.DATA]"
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:54 [ INFO ] muse_scibasic: [tid=003] Bias correction in IFU 4 using "/qc/muse_ph3/calib/2014-08-24/MU_MBIA_140824A_WFM-NOAO-N_SCI1.0.fits[CHAN04.DATA]"
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:54 [ INFO ] muse_scibasic: [tid=007] Flat-field correction in IFU 8 using "/qc/muse_ph3/calib/2014-08-24/MU_MFLA_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN08.DATA]"
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:54 [ INFO ] muse_scibasic: [tid=008] Flat-field correction in IFU 9 using "/qc/muse_ph3/calib/2014-08-24/MU_MFLA_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN09.DATA]"
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:54 [ INFO ] muse_scibasic: [tid=010] Flat-field correction in IFU 11 using "/qc/muse_ph3/calib/2014-08-24/MU_MFLA_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN11.DATA]"
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:55 [ INFO ] muse_scibasic: [tid=009] Converting 2 exposures from adu to count (= electron) units in IFU 10
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:55 [ INFO ] muse_scibasic: [tid=013] Converting 2 exposures from adu to count (= electron) units in IFU 14
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:55 [ INFO ] muse_scibasic: [tid=016] Converting 2 exposures from adu to count (= electron) units in IFU 17
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:55 [ INFO ] muse_scibasic: [tid=012] Bias correction in IFU 13 using "/qc/muse_ph3/calib/2014-08-24/MU_MBIA_140824A_WFM-NOAO-N_SCI1.0.fits[CHAN13.DATA]"
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:55 [ INFO ] muse_scibasic: [tid=019] Bias correction in IFU 20 using "/qc/muse_ph3/calib/2014-08-24/MU_MBIA_140824A_WFM-NOAO-N_SCI1.0.fits[CHAN20.DATA]"
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:55 [ INFO ] muse_scibasic: [tid=006] Converting 2 exposures from adu to count (= electron) units in IFU 7
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:56 [ INFO ] muse_scibasic: [tid=014] Converting 2 exposures from adu to count (= electron) units in IFU 15
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:56 [ INFO ] muse_scibasic: [tid=000] loaded TRACE_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PFTT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN01]" (ext 1)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:56 [ INFO ] muse_scibasic: [tid=000] loaded WAVECAL_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PWCT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN01]" (ext 1)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:57 [ INFO ] muse_scibasic: [tid=003] Converting 2 exposures from adu to count (= electron) units in IFU 4
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:57 [ INFO ] muse_scibasic: [tid=000] loaded GEOMETRY_TABLE from file "/qc/muse_ph3/calib/gen/MU_GEOT_140729A_geometry_table_wfm.fits" (ext 1)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:57 [ INFO ] muse_scibasic: [tid=001] loaded TRACE_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PFTT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN02]" (ext 2)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:57 [ INFO ] muse_scibasic: [tid=015] Bias correction in IFU 16 using "/qc/muse_ph3/calib/2014-08-24/MU_MBIA_140824A_WFM-NOAO-N_SCI1.0.fits[CHAN16.DATA]"
[MUSE.2014-08-25T09:04:20.398.rblog] 19:39:57 [ INFO ] muse_scibasic: [tid=011] Bias correction in IFU 12 using "/qc/muse_ph3/calib/2014-08-24/MU_MBIA_140824A_WFM-NOAO-N_SCI1.0.fits[CHAN12.DATA]"
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:01 [ INFO ] muse_scibasic: [tid=001] loaded WAVECAL_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PWCT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN02]" (ext 2)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:01 [ INFO ] muse_scibasic: [tid=005] Flat-field correction in IFU 6 using "/qc/muse_ph3/calib/2014-08-24/MU_MFLA_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN06.DATA]"
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:01 [ INFO ] muse_scibasic: [tid=019] Converting 2 exposures from adu to count (= electron) units in IFU 20
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:01 [ INFO ] muse_scibasic: [tid=012] Converting 2 exposures from adu to count (= electron) units in IFU 13
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:01 [ INFO ] muse_scibasic: [tid=001] loaded GEOMETRY_TABLE from file "/qc/muse_ph3/calib/gen/MU_GEOT_140729A_geometry_table_wfm.fits" (ext 1)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:02 [ INFO ] muse_scibasic: [tid=022] Bias correction in IFU 23 using "/qc/muse_ph3/calib/2014-08-24/MU_MBIA_140824A_WFM-NOAO-N_SCI1.0.fits[CHAN23.DATA]"
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:02 [ INFO ] muse_scibasic: [tid=002] loaded TRACE_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PFTT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN03]" (ext 3)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:02 [ INFO ] muse_scibasic: [tid=004] loaded TRACE_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PFTT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN05]" (ext 5)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:02 [ INFO ] muse_scibasic: [tid=002] loaded WAVECAL_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PWCT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN03]" (ext 3)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:02 [ INFO ] muse_scibasic: [tid=000] Creating pixel table for IFU 1, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:02 [ INFO ] muse_scibasic: [tid=002] loaded GEOMETRY_TABLE from file "/qc/muse_ph3/calib/gen/MU_GEOT_140729A_geometry_table_wfm.fits" (ext 1)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:02 [ INFO ] muse_scibasic: [tid=004] loaded WAVECAL_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PWCT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN05]" (ext 5)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:02 [ INFO ] muse_scibasic: [tid=003] Flat-field correction in IFU 4 using "/qc/muse_ph3/calib/2014-08-24/MU_MFLA_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN04.DATA]"
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:03 [ INFO ] muse_scibasic: [tid=006] Flat-field correction in IFU 7 using "/qc/muse_ph3/calib/2014-08-24/MU_MFLA_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN07.DATA]"
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:03 [ INFO ] muse_scibasic: [tid=017] Bias correction in IFU 18 using "/qc/muse_ph3/calib/2014-08-24/MU_MBIA_140824A_WFM-NOAO-N_SCI1.0.fits[CHAN18.DATA]"
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:03 [ INFO ] muse_scibasic: [tid=004] loaded GEOMETRY_TABLE from file "/qc/muse_ph3/calib/gen/MU_GEOT_140729A_geometry_table_wfm.fits" (ext 1)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:03 [ INFO ] muse_scibasic: [tid=009] Flat-field correction in IFU 10 using "/qc/muse_ph3/calib/2014-08-24/MU_MFLA_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN10.DATA]"
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:03 [ INFO ] muse_scibasic: [tid=020] Bias correction in IFU 21 using "/qc/muse_ph3/calib/2014-08-24/MU_MBIA_140824A_WFM-NOAO-N_SCI1.0.fits[CHAN21.DATA]"
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:03 [ INFO ] muse_scibasic: [tid=001] Creating pixel table for IFU 2, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:03 [ INFO ] muse_scibasic: [tid=015] Converting 2 exposures from adu to count (= electron) units in IFU 16
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:03 [ INFO ] muse_scibasic: [tid=007] loaded TRACE_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PFTT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN08]" (ext 8)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:03 [ INFO ] muse_scibasic: [tid=008] loaded TRACE_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PFTT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN09]" (ext 9)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:03 [ INFO ] muse_scibasic: [tid=021] Bias correction in IFU 22 using "/qc/muse_ph3/calib/2014-08-24/MU_MBIA_140824A_WFM-NOAO-N_SCI1.0.fits[CHAN22.DATA]"
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:03 [ INFO ] muse_scibasic: [tid=018] Bias correction in IFU 19 using "/qc/muse_ph3/calib/2014-08-24/MU_MBIA_140824A_WFM-NOAO-N_SCI1.0.fits[CHAN19.DATA]"
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:03 [ INFO ] muse_scibasic: [tid=013] Flat-field correction in IFU 14 using "/qc/muse_ph3/calib/2014-08-24/MU_MFLA_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN14.DATA]"
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:03 [ INFO ] muse_scibasic: [tid=014] Flat-field correction in IFU 15 using "/qc/muse_ph3/calib/2014-08-24/MU_MFLA_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN15.DATA]"
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:04 [ INFO ] muse_scibasic: [tid=016] Flat-field correction in IFU 17 using "/qc/muse_ph3/calib/2014-08-24/MU_MFLA_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN17.DATA]"
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:04 [ INFO ] muse_scibasic: [tid=022] Converting 2 exposures from adu to count (= electron) units in IFU 23
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:04 [ INFO ] muse_scibasic: [tid=002] Creating pixel table for IFU 3, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:04 [ INFO ] muse_scibasic: [tid=007] loaded WAVECAL_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PWCT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN08]" (ext 8)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:04 [ INFO ] muse_scibasic: [tid=011] Converting 2 exposures from adu to count (= electron) units in IFU 12
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:05 [ INFO ] muse_scibasic: [tid=008] loaded WAVECAL_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PWCT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN09]" (ext 9)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:05 [ INFO ] muse_scibasic: [tid=010] loaded TRACE_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PFTT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN11]" (ext 11)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:05 [ INFO ] muse_scibasic: [tid=007] loaded GEOMETRY_TABLE from file "/qc/muse_ph3/calib/gen/MU_GEOT_140729A_geometry_table_wfm.fits" (ext 1)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:05 [ INFO ] muse_scibasic: [tid=004] Creating pixel table for IFU 5, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:05 [ INFO ] muse_scibasic: [tid=008] loaded GEOMETRY_TABLE from file "/qc/muse_ph3/calib/gen/MU_GEOT_140729A_geometry_table_wfm.fits" (ext 1)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:06 [ INFO ] muse_scibasic: [tid=017] Converting 2 exposures from adu to count (= electron) units in IFU 18
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:06 [ INFO ] muse_scibasic: [tid=020] Converting 2 exposures from adu to count (= electron) units in IFU 21
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:06 [ INFO ] muse_scibasic: [tid=021] Converting 2 exposures from adu to count (= electron) units in IFU 22
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:06 [ INFO ] muse_scibasic: [tid=018] Converting 2 exposures from adu to count (= electron) units in IFU 19
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:07 [ INFO ] muse_scibasic: [tid=010] loaded WAVECAL_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PWCT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN11]" (ext 11)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:07 [ INFO ] muse_scibasic: [tid=007] Creating pixel table for IFU 8, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:07 [ INFO ] muse_scibasic: [tid=010] loaded GEOMETRY_TABLE from file "/qc/muse_ph3/calib/gen/MU_GEOT_140729A_geometry_table_wfm.fits" (ext 1)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:07 [ INFO ] muse_scibasic: [tid=008] Creating pixel table for IFU 9, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:07 [ INFO ] muse_scibasic: [tid=012] Flat-field correction in IFU 13 using "/qc/muse_ph3/calib/2014-08-24/MU_MFLA_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN13.DATA]"
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:07 [ INFO ] muse_scibasic: [tid=019] Flat-field correction in IFU 20 using "/qc/muse_ph3/calib/2014-08-24/MU_MFLA_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN20.DATA]"
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:07 [ INFO ] muse_scibasic: [tid=005] loaded TRACE_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PFTT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN06]" (ext 6)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:10 [ INFO ] muse_scibasic: [tid=005] loaded WAVECAL_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PWCT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN06]" (ext 6)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:10 [ INFO ] muse_scibasic: [tid=015] Flat-field correction in IFU 16 using "/qc/muse_ph3/calib/2014-08-24/MU_MFLA_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN16.DATA]"
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:10 [ INFO ] muse_scibasic: [tid=005] loaded GEOMETRY_TABLE from file "/qc/muse_ph3/calib/gen/MU_GEOT_140729A_geometry_table_wfm.fits" (ext 1)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:10 [ INFO ] muse_scibasic: [tid=010] Creating pixel table for IFU 11, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:10 [ INFO ] muse_scibasic: [tid=003] loaded TRACE_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PFTT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN04]" (ext 4)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:10 [ INFO ] muse_scibasic: [tid=011] Flat-field correction in IFU 12 using "/qc/muse_ph3/calib/2014-08-24/MU_MFLA_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN12.DATA]"
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:11 [ INFO ] muse_scibasic: [tid=006] loaded TRACE_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PFTT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN07]" (ext 7)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:11 [ INFO ] muse_scibasic: [tid=009] loaded TRACE_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PFTT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN10]" (ext 10)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:11 [ INFO ] muse_scibasic: [tid=014] loaded TRACE_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PFTT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN15]" (ext 15)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:11 [ INFO ] muse_scibasic: [tid=003] loaded WAVECAL_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PWCT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN04]" (ext 4)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:11 [ INFO ] muse_scibasic: [tid=003] loaded GEOMETRY_TABLE from file "/qc/muse_ph3/calib/gen/MU_GEOT_140729A_geometry_table_wfm.fits" (ext 1)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:11 [ INFO ] muse_scibasic: [tid=013] loaded TRACE_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PFTT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN14]" (ext 14)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:11 [ INFO ] muse_scibasic: [tid=006] loaded WAVECAL_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PWCT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN07]" (ext 7)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:12 [ INFO ] muse_scibasic: [tid=022] Flat-field correction in IFU 23 using "/qc/muse_ph3/calib/2014-08-24/MU_MFLA_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN23.DATA]"
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:12 [ INFO ] muse_scibasic: [tid=006] loaded GEOMETRY_TABLE from file "/qc/muse_ph3/calib/gen/MU_GEOT_140729A_geometry_table_wfm.fits" (ext 1)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:12 [ INFO ] muse_scibasic: [tid=005] Creating pixel table for IFU 6, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:12 [ INFO ] muse_scibasic: [tid=009] loaded WAVECAL_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PWCT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN10]" (ext 10)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:13 [ INFO ] muse_scibasic: [tid=009] loaded GEOMETRY_TABLE from file "/qc/muse_ph3/calib/gen/MU_GEOT_140729A_geometry_table_wfm.fits" (ext 1)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:13 [ INFO ] muse_scibasic: [tid=018] Flat-field correction in IFU 19 using "/qc/muse_ph3/calib/2014-08-24/MU_MFLA_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN19.DATA]"
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:13 [ INFO ] muse_scibasic: [tid=016] loaded TRACE_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PFTT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN17]" (ext 17)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:13 [ INFO ] muse_scibasic: [tid=014] loaded WAVECAL_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PWCT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN15]" (ext 15)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:13 [ INFO ] muse_scibasic: [tid=013] loaded WAVECAL_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PWCT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN14]" (ext 14)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:13 [ INFO ] muse_scibasic: [tid=020] Flat-field correction in IFU 21 using "/qc/muse_ph3/calib/2014-08-24/MU_MFLA_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN21.DATA]"
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:13 [ INFO ] muse_scibasic: [tid=021] Flat-field correction in IFU 22 using "/qc/muse_ph3/calib/2014-08-24/MU_MFLA_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN22.DATA]"
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:14 [ INFO ] muse_scibasic: [tid=014] loaded GEOMETRY_TABLE from file "/qc/muse_ph3/calib/gen/MU_GEOT_140729A_geometry_table_wfm.fits" (ext 1)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:14 [ INFO ] muse_scibasic: [tid=017] Flat-field correction in IFU 18 using "/qc/muse_ph3/calib/2014-08-24/MU_MFLA_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN18.DATA]"
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:14 [ INFO ] muse_scibasic: [tid=013] loaded GEOMETRY_TABLE from file "/qc/muse_ph3/calib/gen/MU_GEOT_140729A_geometry_table_wfm.fits" (ext 1)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:14 [ INFO ] muse_scibasic: [tid=023] Bias correction in IFU 24 using "/qc/muse_ph3/calib/2014-08-24/MU_MBIA_140824A_WFM-NOAO-N_SCI1.0.fits[CHAN24.DATA]"
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:14 [ INFO ] muse_scibasic: [tid=006] Creating pixel table for IFU 7, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:14 [ INFO ] muse_scibasic: [tid=003] Creating pixel table for IFU 4, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:15 [ INFO ] muse_scibasic: [tid=009] Creating pixel table for IFU 10, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:15 [ INFO ] muse_scibasic: [tid=014] Creating pixel table for IFU 15, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:15 [ INFO ] muse_scibasic: [tid=012] loaded TRACE_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PFTT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN13]" (ext 13)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:15 [ INFO ] muse_scibasic: [tid=013] Creating pixel table for IFU 14, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:15 [ INFO ] muse_scibasic: [tid=016] loaded WAVECAL_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PWCT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN17]" (ext 17)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:15 [ INFO ] muse_scibasic: [tid=016] loaded GEOMETRY_TABLE from file "/qc/muse_ph3/calib/gen/MU_GEOT_140729A_geometry_table_wfm.fits" (ext 1)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:15 [ INFO ] muse_scibasic: [tid=019] loaded TRACE_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PFTT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN20]" (ext 20)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:15 [ INFO ] muse_scibasic: [tid=016] Creating pixel table for IFU 17, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:16 [ INFO ] muse_scibasic: [tid=011] loaded TRACE_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PFTT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN12]" (ext 12)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:16 [ INFO ] muse_scibasic: [tid=012] loaded WAVECAL_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PWCT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN13]" (ext 13)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:16 [ INFO ] muse_scibasic: [tid=012] loaded GEOMETRY_TABLE from file "/qc/muse_ph3/calib/gen/MU_GEOT_140729A_geometry_table_wfm.fits" (ext 1)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:16 [ INFO ] muse_scibasic: [tid=015] loaded TRACE_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PFTT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN16]" (ext 16)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:16 [ INFO ] muse_scibasic: [tid=012] Creating pixel table for IFU 13, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:16 [ INFO ] muse_scibasic: [tid=011] loaded WAVECAL_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PWCT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN12]" (ext 12)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:16 [ INFO ] muse_scibasic: [tid=011] loaded GEOMETRY_TABLE from file "/qc/muse_ph3/calib/gen/MU_GEOT_140729A_geometry_table_wfm.fits" (ext 1)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:16 [ INFO ] muse_scibasic: [tid=023] Converting 2 exposures from adu to count (= electron) units in IFU 24
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:16 [ INFO ] muse_scibasic: [tid=019] loaded WAVECAL_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PWCT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN20]" (ext 20)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:17 [ INFO ] muse_scibasic: [tid=019] loaded GEOMETRY_TABLE from file "/qc/muse_ph3/calib/gen/MU_GEOT_140729A_geometry_table_wfm.fits" (ext 1)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:17 [ INFO ] muse_scibasic: [tid=022] loaded TRACE_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PFTT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN23]" (ext 23)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:17 [ INFO ] muse_scibasic: [tid=015] loaded WAVECAL_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PWCT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN16]" (ext 16)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:17 [ INFO ] muse_scibasic: [tid=015] loaded GEOMETRY_TABLE from file "/qc/muse_ph3/calib/gen/MU_GEOT_140729A_geometry_table_wfm.fits" (ext 1)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:17 [ INFO ] muse_scibasic: [tid=018] loaded TRACE_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PFTT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN19]" (ext 19)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:17 [ INFO ] muse_scibasic: [tid=011] Creating pixel table for IFU 12, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:17 [ INFO ] muse_scibasic: [tid=017] loaded TRACE_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PFTT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN18]" (ext 18)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:17 [ INFO ] muse_scibasic: [tid=021] loaded TRACE_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PFTT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN22]" (ext 22)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:17 [ INFO ] muse_scibasic: [tid=019] Creating pixel table for IFU 20, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:17 [ INFO ] muse_scibasic: [tid=020] loaded TRACE_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PFTT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN21]" (ext 21)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:17 [ INFO ] muse_scibasic: [tid=015] Creating pixel table for IFU 16, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:18 [ INFO ] muse_scibasic: [tid=018] loaded WAVECAL_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PWCT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN19]" (ext 19)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:18 [ INFO ] muse_scibasic: [tid=017] loaded WAVECAL_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PWCT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN18]" (ext 18)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:18 [ INFO ] muse_scibasic: [tid=018] loaded GEOMETRY_TABLE from file "/qc/muse_ph3/calib/gen/MU_GEOT_140729A_geometry_table_wfm.fits" (ext 1)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:18 [ INFO ] muse_scibasic: [tid=022] loaded WAVECAL_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PWCT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN23]" (ext 23)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:18 [ INFO ] muse_scibasic: [tid=017] loaded GEOMETRY_TABLE from file "/qc/muse_ph3/calib/gen/MU_GEOT_140729A_geometry_table_wfm.fits" (ext 1)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:18 [ INFO ] muse_scibasic: [tid=022] loaded GEOMETRY_TABLE from file "/qc/muse_ph3/calib/gen/MU_GEOT_140729A_geometry_table_wfm.fits" (ext 1)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:18 [ INFO ] muse_scibasic: [tid=020] loaded WAVECAL_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PWCT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN21]" (ext 21)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:18 [ INFO ] muse_scibasic: [tid=021] loaded WAVECAL_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PWCT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN22]" (ext 22)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:19 [ INFO ] muse_scibasic: [tid=020] loaded GEOMETRY_TABLE from file "/qc/muse_ph3/calib/gen/MU_GEOT_140729A_geometry_table_wfm.fits" (ext 1)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:19 [ INFO ] muse_scibasic: [tid=021] loaded GEOMETRY_TABLE from file "/qc/muse_ph3/calib/gen/MU_GEOT_140729A_geometry_table_wfm.fits" (ext 1)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:19 [ INFO ] muse_scibasic: [tid=018] Creating pixel table for IFU 19, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:19 [ INFO ] muse_scibasic: [tid=017] Creating pixel table for IFU 18, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:19 [ INFO ] muse_scibasic: [tid=022] Creating pixel table for IFU 23, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:20 [ INFO ] muse_scibasic: [tid=020] Creating pixel table for IFU 21, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:21 [ INFO ] muse_scibasic: [tid=021] Creating pixel table for IFU 22, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:23 [ INFO ] muse_scibasic: [tid=023] Flat-field correction in IFU 24 using "/qc/muse_ph3/calib/2014-08-24/MU_MFLA_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN24.DATA]"
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:24 [ INFO ] muse_scibasic: [tid=001] Preparing ILLUM flat: 48 slices in the data of IFU 2 found.
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:24 [ INFO ] muse_scibasic: [tid=001] Saving image as OBJECT_RED_0001-02.fits
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:25 [ INFO ] muse_scibasic: [tid=001] Creating pixel table for IFU 2, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:30 [ INFO ] muse_scibasic: [tid=002] Preparing ILLUM flat: 48 slices in the data of IFU 3 found.
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:30 [ INFO ] muse_scibasic: [tid=002] Saving image as OBJECT_RED_0001-03.fits
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:31 [ INFO ] muse_scibasic: [tid=000] Preparing ILLUM flat: 48 slices in the data of IFU 1 found.
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:31 [ INFO ] muse_scibasic: [tid=000] Saving image as OBJECT_RED_0001-01.fits
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:32 [ INFO ] muse_scibasic: [tid=023] loaded TRACE_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PFTT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN24]" (ext 24)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:32 [ INFO ] muse_scibasic: [tid=002] Creating pixel table for IFU 3, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:32 [ INFO ] muse_scibasic: [tid=000] Creating pixel table for IFU 1, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:33 [ INFO ] muse_scibasic: [tid=023] loaded WAVECAL_TABLE from file "/qc/muse_ph3/calib/2014-08-24/MU_PWCT_140824A_WFM-NOAO-E_Clear_SCI1.0.fits[CHAN24]" (ext 24)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:33 [ INFO ] muse_scibasic: [tid=023] loaded GEOMETRY_TABLE from file "/qc/muse_ph3/calib/gen/MU_GEOT_140729A_geometry_table_wfm.fits" (ext 1)
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:35 [ INFO ] muse_scibasic: [tid=023] Creating pixel table for IFU 24, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:42 [ INFO ] muse_scibasic: [tid=007] Preparing ILLUM flat: 48 slices in the data of IFU 8 found.
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:42 [ INFO ] muse_scibasic: [tid=007] Saving image as OBJECT_RED_0001-08.fits
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:44 [ INFO ] muse_scibasic: [tid=007] Creating pixel table for IFU 8, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:56 [ INFO ] muse_scibasic: [tid=010] Preparing ILLUM flat: 48 slices in the data of IFU 11 found.
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:56 [ INFO ] muse_scibasic: [tid=010] Saving image as OBJECT_RED_0001-11.fits
[MUSE.2014-08-25T09:04:20.398.rblog] 19:40:57 [ INFO ] muse_scibasic: [tid=010] Creating pixel table for IFU 11, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T09:04:20.398.rblog] 19:41:05 [ INFO ] muse_scibasic: [tid=005] Preparing ILLUM flat: 48 slices in the data of IFU 6 found.
[MUSE.2014-08-25T09:04:20.398.rblog] 19:41:05 [ INFO ] muse_scibasic: [tid=005] Saving image as OBJECT_RED_0001-06.fits
[MUSE.2014-08-25T09:04:20.398.rblog] 19:41:07 [ INFO ] muse_scibasic: [tid=005] Creating pixel table for IFU 6, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T09:04:20.398.rblog] 19:41:10 [ INFO ] muse_scibasic: [tid=009] Preparing ILLUM flat: 48 slices in the data of IFU 10 found.
[MUSE.2014-08-25T09:04:20.398.rblog] 19:41:10 [ INFO ] muse_scibasic: [tid=009] Saving image as OBJECT_RED_0001-10.fits
[MUSE.2014-08-25T09:04:20.398.rblog] 19:41:11 [ INFO ] muse_scibasic: [tid=009] Creating pixel table for IFU 10, using order 5 for trace solution and orders 2/6 for wavelength solution
[MUSE.2014-08-25T09:04:20.398.rblog] 19:41:11 [ INFO ] muse_scibasic: [tid=006] Preparing ILLUM flat: 48 slices in the data of IFU 7 found.