-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcasapy-20141030-213126.log
1913 lines (1913 loc) · 263 KB
/
casapy-20141030-213126.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
2014-10-30 21:32:30 INFO casa::::casa ---
2014-10-30 21:32:30 INFO casa::::casa CASA Version 4.2.2 (prerelease r30986)
2014-10-30 21:32:30 INFO casa::::casa Tagged on: Thu, 21 Aug 2014
2014-10-30 21:46:42 INFO clean::::casa
2014-10-30 21:46:42 INFO clean::::casa+ ##########################################
2014-10-30 21:46:42 INFO clean::::casa+ ##### Begin Task: clean #####
2014-10-30 21:46:42 INFO clean::::casa clean(vis="L85562_all_flagged.MS",imagename="Ctimesteps_flg1_dt0-05-37.5_tp0b_n0_it5000_wp512_facets1",outlierfile="",field="0",
2014-10-30 21:46:42 INFO clean::::casa+ spw="15~38",selectdata=True,timerange="2013/01/24/21:37:11.000000+0:05:37.5",uvrange="",antenna="",
2014-10-30 21:46:42 INFO clean::::casa+ scan="",observation="",intent="",mode="mfs",resmooth=False,
2014-10-30 21:46:42 INFO clean::::casa+ gridmode="widefield",wprojplanes=512,facets=1,cfcache="cfcache.dir",rotpainc=5.0,
2014-10-30 21:46:42 INFO clean::::casa+ painc=360.0,aterm=True,psterm=False,mterm=True,wbawp=False,
2014-10-30 21:46:42 INFO clean::::casa+ conjbeams=True,epjtable="",interpolation="linear",niter=5000,gain=0.1,
2014-10-30 21:46:42 INFO clean::::casa+ threshold="0.0mJy",psfmode="clark",imagermode="csclean",ftmachine="mosaic",mosweight=False,
2014-10-30 21:46:42 INFO clean::::casa+ scaletype="SAULT",multiscale=[0],negcomponent=-1,smallscalebias=0.6,interactive=False,
2014-10-30 21:46:42 INFO clean::::casa+ mask=[],nchan=-1,start=0,width=1,outframe="",
2014-10-30 21:46:42 INFO clean::::casa+ veltype="radio",imsize=[1024, 1024],cell="41.0710960679arcsec",phasecenter="",restfreq="",
2014-10-30 21:46:42 INFO clean::::casa+ stokes="I",weighting="natural",robust=0.0,uvtaper=False,outertaper=[''],
2014-10-30 21:46:42 INFO clean::::casa+ innertaper=['1.0'],modelimage="",restoringbeam=[''],pbcor=False,minpb=0.2,
2014-10-30 21:46:42 INFO clean::::casa+ usescratch=False,noise="1.0Jy",npixels=0,npercycle=100,cyclefactor=1.5,
2014-10-30 21:46:42 INFO clean::::casa+ cyclespeedup=-1,nterms=1,reffreq="",chaniter=False,flatnoise=True,
2014-10-30 21:46:42 INFO clean::::casa+ allowchunk=False)
2014-10-30 21:46:42 INFO clean::::casa nchan=-1 start=0 width=1
2014-10-30 21:46:42 INFO clean::::casa Use default channelization for clean
2014-10-30 21:46:42 INFO clean::::casa clean image: Ctimesteps_flg1_dt0-05-37.5_tp0b_n0_it5000_wp512_facets1
2014-10-30 21:46:50 INFO Imager::open() Opening MeasurementSet /home/mknapp/L85562_all_flagged.MS
2014-10-30 21:49:04 INFO clean::::casa FTMachine used is wproject
2014-10-30 21:49:04 INFO imager::data selection Performing selection on MeasurementSet : /home/mknapp/L85562_all_flagged.MS
2014-10-30 21:49:04 INFO imager::data selection Selecting on fields : 0
2014-10-30 21:49:04 INFO imager::data selection Selecting on spectral windows expression : 15~38
2014-10-30 21:49:04 INFO imager::data selection Selecting on time range : 2013/01/24/21:37:11.000000+0:05:37.5
2014-10-30 21:52:00 INFO imager::data selection Selected 573648 out of 181964520 rows.
2014-10-30 21:52:00 INFO imager::data selection Selected: [1 chans in spw 15] [1 chans in spw 16] [1 chans in spw 17] [1 chans in spw 18] [1 chans in spw 19] [1 chans in spw 20] [1 chans in spw 21] [1 chans in spw 22] [1 chans in spw 23] [1 chans in spw 24] [1 chans in spw 25] [1 chans in spw 26] [1 chans in spw 27] [1 chans in spw 28] [1 chans in spw 29] [1 chans in spw 30] [1 chans in spw 31] [1 chans in spw 32] [1 chans in spw 33] [1 chans in spw 34] [1 chans in spw 35] [1 chans in spw 36] [1 chans in spw 37] [1 chans in spw 38]
2014-10-30 21:52:10 INFO imager::defineimage() Defining image properties:nx=1024 ny=1024 cellx='41.0711arcsec' celly='41.0711arcsec' stokes=I' mode=MFS nchan=-1 start=0 step=1 spwids=[15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38] fieldid=0 facets=1 frame=5 distance='0'
2014-10-30 21:52:10 INFO imager::defineimage() phaseCenter='field-0 ' mStart='Radialvelocity: 0' qStep='0 '' mFreqStart='Frequency: 0
2014-10-30 21:52:10 INFO Imager::setvp() Setting voltage pattern parameters
2014-10-30 21:52:10 INFO Imager::setvp() Sky position tolerance is 180 degrees
2014-10-30 21:52:10 INFO Imager::setvp() Using system default voltage patterns for each telescope
2014-10-30 21:52:10 INFO imager::makeimage() Calculating image (without full skyequation)
2014-10-30 21:52:10 WARN imager::makeimage() (file /var/rpmbuild/BUILD/casapy422/casapy422-42.2.30986/code/synthesis/MeasurementEquations/Imager.cc, line 2880) The MS has multiple antenna diameters ..PB could be wrong
2014-10-30 21:52:11 INFO Imager::setvp() Setting voltage pattern parameters
2014-10-30 21:52:11 INFO imager::weight() Weighting MS: Imaging weights will be changed
2014-10-30 21:52:11 INFO imager::weight() Natural weighting
2014-10-30 21:52:11 INFO clean::::casa Used mask(s) : [''] to create mask image(s) : Ctimesteps_flg1_dt0-05-37.5_tp0b_n0_it5000_wp512_facets1.mask
2014-10-30 21:52:11 INFO imager::setoptions() Setting processing options
2014-10-30 21:52:11 INFO clean::::casa No model found. Making empty initial model : Ctimesteps_flg1_dt0-05-37.5_tp0b_n0_it5000_wp512_facets1.model
2014-10-30 21:52:12 INFO Imager::imagecoordinates() Center frequency = 0.040428 GHz, synthesized continuum bandwidth = 0.00937496 GHz
2014-10-30 21:52:12 INFO imager::clean() Using multifield Clark clean
2014-10-30 21:52:12 INFO imager::createFTMachine() Multiple fields or facets: transforms will be padded by a factor 1.2
2014-10-30 21:52:12 INFO imager::createFTMachine() Performing w-plane projection
2014-10-30 21:52:12 INFO imager::clean() Clean gain = 0.1, Niter = 5000, Threshold = 0 mJy
2014-10-30 21:52:12 INFO imager::clean() Starting deconvolution
2014-10-30 21:52:12 INFO WPConvFunc::findConvFunction W projection using 512 planes
2014-10-30 21:52:12 INFO WPConvFunc::findConvFunction Estimating maximum possible W = 1255.54 (wavelengths)
2014-10-30 21:52:12 INFO WPConvFunc::findConvFunction Typical wavelength = 8.34241 (m)
2014-10-30 21:52:12 INFO WPConvFunc::findConvFunction Scaling in W (at maximum W) = 0.00480825 wavelengths per pixel
2014-10-30 21:53:36 INFO WPConvFunc::findConvFunction Convolution support = [16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 108, 108, 108, 108, 108, 108, 108, 108, 108, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 116, 116, 116, 116, 116, 116, 116, 116, 116, 120, 120, 120, 120, 120, 120, 120, 120, 120, 124, 124, 124, 124, 124, 124, 124, 124, 128, 128, 128, 128, 128, 128, 128, 128, 128, 132, 132, 132, 132, 132, 132, 132, 132, 132, 136, 136, 136, 136, 136, 136, 136, 136, 140, 140, 140, 140, 140, 140, 140, 140, 144, 144, 144, 144, 144, 144, 144, 144, 148, 148, 148, 148, 148, 148] pixels in Fourier plane
2014-10-30 21:53:36 INFO WPConvFunc::findConvFunction Memory used in gridding function = 93 MB from maximum 122952 MB
2014-10-30 21:53:41 INFO ImageSkyModel::makeApproxPSFs bmaj: 300.05", bmin: 266.332", bpa: -57.3575 deg
2014-10-30 21:53:41 INFO MFCleanImageSkyModel::solve *** Starting major cycle 0
2014-10-30 21:53:44 INFO MFCleanImageSkyModel::solve The minor-cycle threshold is MAX[ 0.95 x 0 , peak residual x 0.54028 ]
2014-10-30 21:53:44 INFO MFCleanImageSkyModel::solve Maximum residual = 10.0901, cleaning down to 5.45148
2014-10-30 21:53:44 INFO MFCleanImageSkyModel::solve Processing model 0
2014-10-30 21:53:44 INFO ClarkCleanModel::singleSolve Initial maximum residual: 10.0901
2014-10-30 21:53:44 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-30 21:53:44 INFO MFCleanImageSkyModel::solve Clean used 19 iterations to approach a threshhold of 5.45148
2014-10-30 21:53:44 INFO MFCleanImageSkyModel::solve 13.3349 Jy <- cleaned in this cycle for model 0 (Total flux : 13.3349Jy)
2014-10-30 21:53:44 INFO MFCleanImageSkyModel::solve *** Starting major cycle 1
2014-10-30 21:53:50 INFO MFCleanImageSkyModel::solve The minor-cycle threshold is MAX[ 0.95 x 0 , peak residual x 0.54028 ]
2014-10-30 21:53:50 INFO MFCleanImageSkyModel::solve Maximum residual = 5.30515, cleaning down to 2.86627
2014-10-30 21:53:50 INFO MFCleanImageSkyModel::solve Processing model 0
2014-10-30 21:53:50 INFO ClarkCleanModel::singleSolve Initial maximum residual: 5.30515
2014-10-30 21:53:50 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-30 21:53:50 INFO MFCleanImageSkyModel::solve Clean used 75 iterations to approach a threshhold of 2.86627
2014-10-30 21:53:50 INFO MFCleanImageSkyModel::solve 20.9903 Jy <- cleaned in this cycle for model 0 (Total flux : 34.3253Jy)
2014-10-30 21:53:50 INFO MFCleanImageSkyModel::solve *** Starting major cycle 2
2014-10-30 21:53:54 INFO MFCleanImageSkyModel::solve The minor-cycle threshold is MAX[ 0.95 x 0 , peak residual x 0.54028 ]
2014-10-30 21:53:54 INFO MFCleanImageSkyModel::solve Maximum residual = 2.95967, cleaning down to 1.59905
2014-10-30 21:53:54 INFO MFCleanImageSkyModel::solve Processing model 0
2014-10-30 21:53:54 INFO ClarkCleanModel::singleSolve Initial maximum residual: 2.95967
2014-10-30 21:53:54 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-30 21:53:54 INFO MFCleanImageSkyModel::solve Clean used 204 iterations to approach a threshhold of 1.59905
2014-10-30 21:53:54 INFO MFCleanImageSkyModel::solve 26.9587 Jy <- cleaned in this cycle for model 0 (Total flux : 61.2839Jy)
2014-10-30 21:53:54 INFO MFCleanImageSkyModel::solve *** Starting major cycle 3
2014-10-30 21:53:58 INFO MFCleanImageSkyModel::solve The minor-cycle threshold is MAX[ 0.95 x 0 , peak residual x 0.54028 ]
2014-10-30 21:53:58 INFO MFCleanImageSkyModel::solve Maximum residual = 1.64344, cleaning down to 0.887915
2014-10-30 21:53:58 INFO MFCleanImageSkyModel::solve Processing model 0
2014-10-30 21:53:58 INFO ClarkCleanModel::singleSolve Initial maximum residual: 1.64344
2014-10-30 21:53:58 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-30 21:53:58 INFO MFCleanImageSkyModel::solve Clean used 567 iterations to approach a threshhold of 0.887915
2014-10-30 21:53:58 INFO MFCleanImageSkyModel::solve 34.0676 Jy <- cleaned in this cycle for model 0 (Total flux : 95.3515Jy)
2014-10-30 21:53:58 INFO MFCleanImageSkyModel::solve *** Starting major cycle 4
2014-10-30 21:54:03 INFO MFCleanImageSkyModel::solve The minor-cycle threshold is MAX[ 0.95 x 0 , peak residual x 0.54028 ]
2014-10-30 21:54:03 INFO MFCleanImageSkyModel::solve Maximum residual = 0.962085, cleaning down to 0.519795
2014-10-30 21:54:03 INFO MFCleanImageSkyModel::solve Processing model 0
2014-10-30 21:54:03 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.962085
2014-10-30 21:54:03 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-30 21:54:03 INFO MFCleanImageSkyModel::solve Clean used 2293 iterations to approach a threshhold of 0.519795
2014-10-30 21:54:03 INFO MFCleanImageSkyModel::solve 31.3419 Jy <- cleaned in this cycle for model 0 (Total flux : 126.693Jy)
2014-10-30 21:54:03 INFO MFCleanImageSkyModel::solve *** Starting major cycle 5
2014-10-30 21:54:07 INFO MFCleanImageSkyModel::solve The minor-cycle threshold is MAX[ 0.95 x 0 , peak residual x 0.54028 ]
2014-10-30 21:54:07 INFO MFCleanImageSkyModel::solve Maximum residual = 0.694001, cleaning down to 0.374955
2014-10-30 21:54:07 INFO MFCleanImageSkyModel::solve Processing model 0
2014-10-30 21:54:07 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.694001
2014-10-30 21:54:07 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-30 21:54:07 INFO MFCleanImageSkyModel::solve Clean used 3310 iterations to approach a threshhold of 0.374955
2014-10-30 21:54:07 INFO MFCleanImageSkyModel::solve 9.48884 Jy <- cleaned in this cycle for model 0 (Total flux : 136.182Jy)
2014-10-30 21:54:07 INFO MFCleanImageSkyModel::solve *** Starting major cycle 6
2014-10-30 21:54:11 INFO MFCleanImageSkyModel::solve The minor-cycle threshold is MAX[ 0.95 x 0 , peak residual x 0.54028 ]
2014-10-30 21:54:11 INFO MFCleanImageSkyModel::solve Maximum residual = 0.536092, cleaning down to 0.28964
2014-10-30 21:54:11 INFO MFCleanImageSkyModel::solve Processing model 0
2014-10-30 21:54:11 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.536092
2014-10-30 21:54:11 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-30 21:54:11 INFO MFCleanImageSkyModel::solve Clean used 5000 iterations to approach a threshhold of 0.28964
2014-10-30 21:54:11 INFO MFCleanImageSkyModel::solve 11.513 Jy <- cleaned in this cycle for model 0 (Total flux : 147.695Jy)
2014-10-30 21:54:16 INFO MFCleanImageSkyModel::solve Final maximum residual = 0.516075
2014-10-30 21:54:16 INFO MFCleanImageSkyModel::solve Model 0: max, min residuals = 0.462101, -0.516075 clean flux 147.695
2014-10-30 21:54:16 INFO imager::clean() Threshhold not reached yet.
2014-10-30 21:54:16 INFO imager::clean() Fitted beam used in restoration: 300.05 by 266.332 (arcsec) at pa -57.3575 (deg)
2014-10-30 21:54:17 INFO imager::iClean() Restoring Image(s) with the clean-beam
2014-10-30 21:54:18 INFO clean::::casa ##### End Task: clean #####
2014-10-30 21:54:18 INFO clean::::casa+ ##########################################
2014-10-30 21:54:18 INFO imstat::::casa
2014-10-30 21:54:18 INFO imstat::::casa+ ##########################################
2014-10-30 21:54:18 INFO imstat::::casa+ ##### Begin Task: imstat #####
2014-10-30 21:54:18 INFO imstat::::casa imstat(imagename="Ctimesteps_flg1_dt0-05-37.5_tp0b_n0_it5000_wp512_facets1.image",axes=-1,region="",box="",
2014-10-30 21:54:18 INFO imstat::::casa+ chans="",stokes="",listit=True,verbose=True,mask="",
2014-10-30 21:54:18 INFO imstat::::casa+ stretch=False,logfile="",append=True)
2014-10-30 21:54:18 INFO imstat::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-30 21:54:18 INFO imstat::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-30 21:54:18 INFO imstat::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-30 21:54:18 INFO imstat::image::statistics Determining stats for image Ctimesteps_flg1_dt0-05-37.5_tp0b_n0_it5000_wp512_facets1.image
2014-10-30 21:54:18 INFO imstat::CasacRegionManager::fromBCS Set region from supplied region record
2014-10-30 21:54:18 INFO imstat::ImageRegion::fromRecord Selected bounding box :
2014-10-30 21:54:18 INFO imstat::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (09:55:27.893, +44.26.35.554, I, 4.04282e+07Hz to 08:40:38.526, +56.02.39.926, I, 4.04282e+07Hz)
2014-10-30 21:54:18 INFO imstat::ImageStatsCalculator::statistics Regions ---
2014-10-30 21:54:18 INFO imstat::ImageStatsCalculator::statistics -- bottom-left corner (pixel) [blc]: [0, 0, 0, 0]
2014-10-30 21:54:18 INFO imstat::ImageStatsCalculator::statistics -- top-right corner (pixel) [trc]: [1023, 1023, 0, 0]
2014-10-30 21:54:18 INFO imstat::ImageStatsCalculator::statistics -- bottom-left corner (world) [blcf]: 09:55:27.893, +44.26.35.554, I, 4.04282e+07Hz
2014-10-30 21:54:18 INFO imstat::ImageStatsCalculator::statistics -- top-right corner (world) [trcf]: 08:40:38.526, +56.02.39.926, I, 4.04282e+07Hz
2014-10-30 21:54:18 INFO imstat:::: Values ---
2014-10-30 21:54:18 INFO imstat:::: -- flux density [flux]: 151.462 Jy
2014-10-30 21:54:18 INFO imstat:::: -- number of points [npts]: 1.04858e+06
2014-10-30 21:54:18 INFO imstat:::: -- maximum value [max]: 10.4876 Jy/beam
2014-10-30 21:54:18 INFO imstat:::: -- minimum value [min]: -0.702897 Jy/beam
2014-10-30 21:54:18 INFO imstat:::: -- position of max value (pixel) [maxpos]: [506, 724, 0, 0]
2014-10-30 21:54:18 INFO imstat:::: -- position of min value (pixel) [minpos]: [408, 779, 0, 0]
2014-10-30 21:54:18 INFO imstat:::: -- position of max value (world) [maxposf]: 09:23:04.893, +53.02.22.971, I, 4.04282e+07Hz
2014-10-30 21:54:18 INFO imstat:::: -- position of min value (world) [minposf]: 09:30:38.121, +53.39.06.878, I, 4.04282e+07Hz
2014-10-30 21:54:18 INFO imstat:::: -- Sum of pixel values [sum]: 8130.41 Jy/beam
2014-10-30 21:54:18 INFO imstat:::: -- Sum of squared pixel values [sumsq]: 35000.9 Jy/beam.Jy/beam
2014-10-30 21:54:18 INFO imstat:::: Statistics ---
2014-10-30 21:54:18 INFO imstat:::: -- Mean of the pixel values [mean]: 0.00775377 Jy/beam
2014-10-30 21:54:18 INFO imstat:::: -- Variance of the pixel values : 0.0333193 Jy/beam0
2014-10-30 21:54:18 INFO imstat:::: -- Standard deviation of the Mean [sigma]: 0.182536 Jy/beam
2014-10-30 21:54:18 INFO imstat:::: -- Root mean square [rms]: 0.1827 Jy/beam
2014-10-30 21:54:18 INFO imstat:::: -- Median of the pixel values [median]: -0.000395048 Jy/beam
2014-10-30 21:54:18 INFO imstat:::: -- Median of the deviations [medabsdevmed]: 0.0883206 Jy/beam
2014-10-30 21:54:18 INFO imstat:::: -- Quartile [quartile]: 0.176716 Jy/beam
2014-10-30 21:54:18 INFO imstat::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-30 21:54:18 INFO imstat::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-30 21:54:18 INFO imstat::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-30 21:54:18 INFO imstat::ImageRegion::fromRecord Selected bounding box :
2014-10-30 21:54:18 INFO imstat::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (09:55:27.893, +44.26.35.554, I, 4.04282e+07Hz to 08:40:38.526, +56.02.39.926, I, 4.04282e+07Hz)
2014-10-30 21:54:18 INFO imstat::ImageStatsCalculator::statistics # Npts Sum Mean Rms Std dev Minimum Maximum
2014-10-30 21:54:18 INFO imstat::ImageStatsCalculator::statistics+ 1.048576e+06 8.130413e+03 7.753766e-03 1.827004e-01 1.825358e-01 -7.028966e-01 1.048759e+01
2014-10-30 21:54:18 INFO imstat::::casa ##### End Task: imstat #####
2014-10-30 21:54:18 INFO imstat::::casa+ ##########################################
2014-10-30 21:54:18 INFO clean::::casa
2014-10-30 21:54:18 INFO clean::::casa+ ##########################################
2014-10-30 21:54:18 INFO clean::::casa+ ##### Begin Task: clean #####
2014-10-30 21:54:18 INFO clean::::casa clean(vis="L85562_all_flagged.MS",imagename="Ctimesteps_flg1_dt0-05-37.5_tp1_n0_it5000_wp512_facets1",outlierfile="",field="0",
2014-10-30 21:54:18 INFO clean::::casa+ spw="15~38",selectdata=True,timerange="2013/01/24/21:37:11.000000+0:05:37.5",uvrange="",antenna="",
2014-10-30 21:54:18 INFO clean::::casa+ scan="",observation="",intent="",mode="mfs",resmooth=False,
2014-10-30 21:54:18 INFO clean::::casa+ gridmode="widefield",wprojplanes=512,facets=1,cfcache="cfcache.dir",rotpainc=5.0,
2014-10-30 21:54:18 INFO clean::::casa+ painc=360.0,aterm=True,psterm=False,mterm=True,wbawp=False,
2014-10-30 21:54:18 INFO clean::::casa+ conjbeams=True,epjtable="",interpolation="linear",niter=5000,gain=0.1,
2014-10-30 21:54:18 INFO clean::::casa+ threshold="0.0mJy",psfmode="clark",imagermode="csclean",ftmachine="mosaic",mosweight=False,
2014-10-30 21:54:18 INFO clean::::casa+ scaletype="SAULT",multiscale=[0],negcomponent=-1,smallscalebias=0.6,interactive=False,
2014-10-30 21:54:18 INFO clean::::casa+ mask=[],nchan=-1,start=0,width=1,outframe="",
2014-10-30 21:54:18 INFO clean::::casa+ veltype="radio",imsize=[1024, 1024],cell="41.0710960679arcsec",phasecenter="",restfreq="",
2014-10-30 21:54:18 INFO clean::::casa+ stokes="I",weighting="briggs",robust=0.5,uvtaper=False,outertaper=[''],
2014-10-30 21:54:18 INFO clean::::casa+ innertaper=['1.0'],modelimage="",restoringbeam=[''],pbcor=False,minpb=0.2,
2014-10-30 21:54:18 INFO clean::::casa+ usescratch=False,noise="1.0Jy",npixels=0,npercycle=100,cyclefactor=1.5,
2014-10-30 21:54:18 INFO clean::::casa+ cyclespeedup=-1,nterms=1,reffreq="",chaniter=False,flatnoise=True,
2014-10-30 21:54:18 INFO clean::::casa+ allowchunk=False)
2014-10-30 21:54:18 INFO clean::::casa nchan=-1 start=0 width=1
2014-10-30 21:54:18 INFO clean::::casa Use default channelization for clean
2014-10-30 21:54:18 INFO clean::::casa clean image: Ctimesteps_flg1_dt0-05-37.5_tp1_n0_it5000_wp512_facets1
2014-10-30 21:54:18 INFO Imager::open() Opening MeasurementSet /home/mknapp/L85562_all_flagged.MS
2014-10-30 21:56:25 INFO clean::::casa FTMachine used is wproject
2014-10-30 21:56:25 INFO imager::data selection Performing selection on MeasurementSet : /home/mknapp/L85562_all_flagged.MS
2014-10-30 21:56:25 INFO imager::data selection Selecting on fields : 0
2014-10-30 21:56:25 INFO imager::data selection Selecting on spectral windows expression : 15~38
2014-10-30 21:56:25 INFO imager::data selection Selecting on time range : 2013/01/24/21:37:11.000000+0:05:37.5
2014-10-30 21:59:22 INFO imager::data selection Selected 573648 out of 181964520 rows.
2014-10-30 21:59:22 INFO imager::data selection Selected: [1 chans in spw 15] [1 chans in spw 16] [1 chans in spw 17] [1 chans in spw 18] [1 chans in spw 19] [1 chans in spw 20] [1 chans in spw 21] [1 chans in spw 22] [1 chans in spw 23] [1 chans in spw 24] [1 chans in spw 25] [1 chans in spw 26] [1 chans in spw 27] [1 chans in spw 28] [1 chans in spw 29] [1 chans in spw 30] [1 chans in spw 31] [1 chans in spw 32] [1 chans in spw 33] [1 chans in spw 34] [1 chans in spw 35] [1 chans in spw 36] [1 chans in spw 37] [1 chans in spw 38]
2014-10-30 21:59:23 INFO imager::defineimage() Defining image properties:nx=1024 ny=1024 cellx='41.0711arcsec' celly='41.0711arcsec' stokes=I' mode=MFS nchan=-1 start=0 step=1 spwids=[15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38] fieldid=0 facets=1 frame=5 distance='0'
2014-10-30 21:59:23 INFO imager::defineimage() phaseCenter='field-0 ' mStart='Radialvelocity: 0' qStep='0 '' mFreqStart='Frequency: 0
2014-10-30 21:59:23 INFO Imager::setvp() Setting voltage pattern parameters
2014-10-30 21:59:23 INFO Imager::setvp() Sky position tolerance is 180 degrees
2014-10-30 21:59:23 INFO Imager::setvp() Using system default voltage patterns for each telescope
2014-10-30 21:59:23 INFO imager::makeimage() Calculating image (without full skyequation)
2014-10-30 21:59:23 WARN imager::makeimage() (file /var/rpmbuild/BUILD/casapy422/casapy422-42.2.30986/code/synthesis/MeasurementEquations/Imager.cc, line 2880) The MS has multiple antenna diameters ..PB could be wrong
2014-10-30 21:59:23 INFO Imager::setvp() Setting voltage pattern parameters
2014-10-30 21:59:23 INFO imager::weight() Weighting MS: Imaging weights will be changed
2014-10-30 21:59:23 INFO imager::weight() Briggs weighting: sidelobes will be suppressed over full image
2014-10-30 21:59:24 INFO VisSetUtil::VisImagingWeight() Normal robustness, robust = 0.5
2014-10-30 21:59:24 INFO clean::::casa Used mask(s) : [''] to create mask image(s) : Ctimesteps_flg1_dt0-05-37.5_tp1_n0_it5000_wp512_facets1.mask
2014-10-30 21:59:24 INFO imager::setoptions() Setting processing options
2014-10-30 21:59:24 INFO clean::::casa No model found. Making empty initial model : Ctimesteps_flg1_dt0-05-37.5_tp1_n0_it5000_wp512_facets1.model
2014-10-30 21:59:24 INFO Imager::imagecoordinates() Center frequency = 0.040428 GHz, synthesized continuum bandwidth = 0.00937496 GHz
2014-10-30 21:59:24 INFO imager::clean() Using multifield Clark clean
2014-10-30 21:59:24 INFO imager::createFTMachine() Multiple fields or facets: transforms will be padded by a factor 1.2
2014-10-30 21:59:24 INFO imager::createFTMachine() Performing w-plane projection
2014-10-30 21:59:24 INFO imager::clean() Clean gain = 0.1, Niter = 5000, Threshold = 0 mJy
2014-10-30 21:59:24 INFO imager::clean() Starting deconvolution
2014-10-30 21:59:24 INFO WPConvFunc::findConvFunction W projection using 512 planes
2014-10-30 21:59:24 INFO WPConvFunc::findConvFunction Estimating maximum possible W = 1255.54 (wavelengths)
2014-10-30 21:59:24 INFO WPConvFunc::findConvFunction Typical wavelength = 8.34241 (m)
2014-10-30 21:59:24 INFO WPConvFunc::findConvFunction Scaling in W (at maximum W) = 0.00480825 wavelengths per pixel
2014-10-30 22:00:13 INFO WPConvFunc::findConvFunction Convolution support = [16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 108, 108, 108, 108, 108, 108, 108, 108, 108, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 116, 116, 116, 116, 116, 116, 116, 116, 116, 120, 120, 120, 120, 120, 120, 120, 120, 120, 124, 124, 124, 124, 124, 124, 124, 124, 128, 128, 128, 128, 128, 128, 128, 128, 128, 132, 132, 132, 132, 132, 132, 132, 132, 132, 136, 136, 136, 136, 136, 136, 136, 136, 140, 140, 140, 140, 140, 140, 140, 140, 144, 144, 144, 144, 144, 144, 144, 144, 148, 148, 148, 148, 148, 148] pixels in Fourier plane
2014-10-30 22:00:13 INFO WPConvFunc::findConvFunction Memory used in gridding function = 93 MB from maximum 122952 MB
2014-10-30 22:00:15 INFO ImageSkyModel::makeApproxPSFs bmaj: 140.411", bmin: 102.231", bpa: 77.2239 deg
2014-10-30 22:00:15 INFO MFCleanImageSkyModel::solve *** Starting major cycle 0
2014-10-30 22:00:18 INFO MFCleanImageSkyModel::solve The minor-cycle threshold is MAX[ 0.95 x 0 , peak residual x 0.71025 ]
2014-10-30 22:00:18 INFO MFCleanImageSkyModel::solve Maximum residual = 7.79635, cleaning down to 5.53736
2014-10-30 22:00:18 INFO MFCleanImageSkyModel::solve Processing model 0
2014-10-30 22:00:18 INFO ClarkCleanModel::singleSolve Initial maximum residual: 7.79635
2014-10-30 22:00:18 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-30 22:00:18 INFO MFCleanImageSkyModel::solve Clean used 8 iterations to approach a threshhold of 5.53736
2014-10-30 22:00:18 INFO MFCleanImageSkyModel::solve 5.09503 Jy <- cleaned in this cycle for model 0 (Total flux : 5.09503Jy)
2014-10-30 22:00:18 INFO MFCleanImageSkyModel::solve *** Starting major cycle 1
2014-10-30 22:00:22 INFO MFCleanImageSkyModel::solve The minor-cycle threshold is MAX[ 0.95 x 0 , peak residual x 0.71025 ]
2014-10-30 22:00:22 INFO MFCleanImageSkyModel::solve Maximum residual = 5.29672, cleaning down to 3.76199
2014-10-30 22:00:22 INFO MFCleanImageSkyModel::solve Processing model 0
2014-10-30 22:00:22 INFO ClarkCleanModel::singleSolve Initial maximum residual: 5.29672
2014-10-30 22:00:22 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-30 22:00:22 INFO MFCleanImageSkyModel::solve Clean used 26 iterations to approach a threshhold of 3.76199
2014-10-30 22:00:22 INFO MFCleanImageSkyModel::solve 8.04468 Jy <- cleaned in this cycle for model 0 (Total flux : 13.1397Jy)
2014-10-30 22:00:22 INFO MFCleanImageSkyModel::solve *** Starting major cycle 2
2014-10-30 22:00:26 INFO MFCleanImageSkyModel::solve The minor-cycle threshold is MAX[ 0.95 x 0 , peak residual x 0.71025 ]
2014-10-30 22:00:26 INFO MFCleanImageSkyModel::solve Maximum residual = 3.79187, cleaning down to 2.69318
2014-10-30 22:00:26 INFO MFCleanImageSkyModel::solve Processing model 0
2014-10-30 22:00:26 INFO ClarkCleanModel::singleSolve Initial maximum residual: 3.79187
2014-10-30 22:00:26 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-30 22:00:26 INFO MFCleanImageSkyModel::solve Clean used 60 iterations to approach a threshhold of 2.69318
2014-10-30 22:00:26 INFO MFCleanImageSkyModel::solve 10.7566 Jy <- cleaned in this cycle for model 0 (Total flux : 23.8963Jy)
2014-10-30 22:00:26 INFO MFCleanImageSkyModel::solve *** Starting major cycle 3
2014-10-30 22:00:30 INFO MFCleanImageSkyModel::solve The minor-cycle threshold is MAX[ 0.95 x 0 , peak residual x 0.71025 ]
2014-10-30 22:00:30 INFO MFCleanImageSkyModel::solve Maximum residual = 2.66063, cleaning down to 1.88971
2014-10-30 22:00:30 INFO MFCleanImageSkyModel::solve Processing model 0
2014-10-30 22:00:30 INFO ClarkCleanModel::singleSolve Initial maximum residual: 2.66063
2014-10-30 22:00:30 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-30 22:00:30 INFO MFCleanImageSkyModel::solve Clean used 115 iterations to approach a threshhold of 1.88971
2014-10-30 22:00:30 INFO MFCleanImageSkyModel::solve 12.265 Jy <- cleaned in this cycle for model 0 (Total flux : 36.1613Jy)
2014-10-30 22:00:30 INFO MFCleanImageSkyModel::solve *** Starting major cycle 4
2014-10-30 22:00:35 INFO MFCleanImageSkyModel::solve The minor-cycle threshold is MAX[ 0.95 x 0 , peak residual x 0.71025 ]
2014-10-30 22:00:35 INFO MFCleanImageSkyModel::solve Maximum residual = 1.9069, cleaning down to 1.35438
2014-10-30 22:00:35 INFO MFCleanImageSkyModel::solve Processing model 0
2014-10-30 22:00:35 INFO ClarkCleanModel::singleSolve Initial maximum residual: 1.9069
2014-10-30 22:00:35 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-30 22:00:35 INFO MFCleanImageSkyModel::solve Clean used 209 iterations to approach a threshhold of 1.35438
2014-10-30 22:00:35 INFO MFCleanImageSkyModel::solve 14.9138 Jy <- cleaned in this cycle for model 0 (Total flux : 51.0751Jy)
2014-10-30 22:00:35 INFO MFCleanImageSkyModel::solve *** Starting major cycle 5
2014-10-30 22:00:39 INFO MFCleanImageSkyModel::solve The minor-cycle threshold is MAX[ 0.95 x 0 , peak residual x 0.71025 ]
2014-10-30 22:00:39 INFO MFCleanImageSkyModel::solve Maximum residual = 1.38233, cleaning down to 0.981797
2014-10-30 22:00:39 INFO MFCleanImageSkyModel::solve Processing model 0
2014-10-30 22:00:39 INFO ClarkCleanModel::singleSolve Initial maximum residual: 1.38233
2014-10-30 22:00:39 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-30 22:00:39 INFO MFCleanImageSkyModel::solve Clean used 352 iterations to approach a threshhold of 0.981797
2014-10-30 22:00:39 INFO MFCleanImageSkyModel::solve 16.2723 Jy <- cleaned in this cycle for model 0 (Total flux : 67.3475Jy)
2014-10-30 22:00:39 INFO MFCleanImageSkyModel::solve *** Starting major cycle 6
2014-10-30 22:00:43 INFO MFCleanImageSkyModel::solve The minor-cycle threshold is MAX[ 0.95 x 0 , peak residual x 0.71025 ]
2014-10-30 22:00:43 INFO MFCleanImageSkyModel::solve Maximum residual = 0.997118, cleaning down to 0.708203
2014-10-30 22:00:43 INFO MFCleanImageSkyModel::solve Processing model 0
2014-10-30 22:00:43 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.997118
2014-10-30 22:00:43 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-30 22:00:43 INFO MFCleanImageSkyModel::solve Clean used 635 iterations to approach a threshhold of 0.708203
2014-10-30 22:00:43 INFO MFCleanImageSkyModel::solve 21.145 Jy <- cleaned in this cycle for model 0 (Total flux : 88.4925Jy)
2014-10-30 22:00:43 INFO MFCleanImageSkyModel::solve *** Starting major cycle 7
2014-10-30 22:00:47 INFO MFCleanImageSkyModel::solve The minor-cycle threshold is MAX[ 0.95 x 0 , peak residual x 0.71025 ]
2014-10-30 22:00:47 INFO MFCleanImageSkyModel::solve Maximum residual = 0.733602, cleaning down to 0.521041
2014-10-30 22:00:47 INFO MFCleanImageSkyModel::solve Processing model 0
2014-10-30 22:00:47 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.733602
2014-10-30 22:00:47 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-30 22:00:47 INFO MFCleanImageSkyModel::solve Clean used 1192 iterations to approach a threshhold of 0.521041
2014-10-30 22:00:47 INFO MFCleanImageSkyModel::solve 26.8728 Jy <- cleaned in this cycle for model 0 (Total flux : 115.365Jy)
2014-10-30 22:00:47 INFO MFCleanImageSkyModel::solve *** Starting major cycle 8
2014-10-30 22:00:52 INFO MFCleanImageSkyModel::solve The minor-cycle threshold is MAX[ 0.95 x 0 , peak residual x 0.71025 ]
2014-10-30 22:00:52 INFO MFCleanImageSkyModel::solve Maximum residual = 0.553707, cleaning down to 0.39327
2014-10-30 22:00:52 INFO MFCleanImageSkyModel::solve Processing model 0
2014-10-30 22:00:52 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.553707
2014-10-30 22:00:52 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-30 22:00:52 INFO MFCleanImageSkyModel::solve Clean used 2526 iterations to approach a threshhold of 0.39327
2014-10-30 22:00:52 INFO MFCleanImageSkyModel::solve 25.671 Jy <- cleaned in this cycle for model 0 (Total flux : 141.036Jy)
2014-10-30 22:00:52 INFO MFCleanImageSkyModel::solve *** Starting major cycle 9
2014-10-30 22:00:56 INFO MFCleanImageSkyModel::solve The minor-cycle threshold is MAX[ 0.95 x 0 , peak residual x 0.71025 ]
2014-10-30 22:00:56 INFO MFCleanImageSkyModel::solve Maximum residual = 0.405731, cleaning down to 0.28817
2014-10-30 22:00:56 INFO MFCleanImageSkyModel::solve Processing model 0
2014-10-30 22:00:56 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.405731
2014-10-30 22:00:56 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-30 22:00:56 INFO MFCleanImageSkyModel::solve Clean used 5000 iterations to approach a threshhold of 0.28817
2014-10-30 22:00:56 INFO MFCleanImageSkyModel::solve 16.9968 Jy <- cleaned in this cycle for model 0 (Total flux : 158.033Jy)
2014-10-30 22:01:00 INFO MFCleanImageSkyModel::solve Final maximum residual = 0.321723
2014-10-30 22:01:00 INFO MFCleanImageSkyModel::solve Model 0: max, min residuals = 0.321723, -0.309182 clean flux 158.033
2014-10-30 22:01:00 INFO imager::clean() Threshhold not reached yet.
2014-10-30 22:01:00 INFO imager::clean() Fitted beam used in restoration: 140.411 by 102.231 (arcsec) at pa 77.2239 (deg)
2014-10-30 22:01:01 INFO imager::iClean() Restoring Image(s) with the clean-beam
2014-10-30 22:01:02 INFO clean::::casa ##### End Task: clean #####
2014-10-30 22:01:02 INFO clean::::casa+ ##########################################
2014-10-30 22:01:02 INFO imstat::::casa
2014-10-30 22:01:02 INFO imstat::::casa+ ##########################################
2014-10-30 22:01:02 INFO imstat::::casa+ ##### Begin Task: imstat #####
2014-10-30 22:01:02 INFO imstat::::casa imstat(imagename="Ctimesteps_flg1_dt0-05-37.5_tp1_n0_it5000_wp512_facets1.image",axes=-1,region="",box="",
2014-10-30 22:01:02 INFO imstat::::casa+ chans="",stokes="",listit=True,verbose=True,mask="",
2014-10-30 22:01:02 INFO imstat::::casa+ stretch=False,logfile="",append=True)
2014-10-30 22:01:02 INFO imstat::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-30 22:01:02 INFO imstat::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-30 22:01:02 INFO imstat::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-30 22:01:02 INFO imstat::image::statistics Determining stats for image Ctimesteps_flg1_dt0-05-37.5_tp1_n0_it5000_wp512_facets1.image
2014-10-30 22:01:02 INFO imstat::CasacRegionManager::fromBCS Set region from supplied region record
2014-10-30 22:01:02 INFO imstat::ImageRegion::fromRecord Selected bounding box :
2014-10-30 22:01:02 INFO imstat::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (09:55:27.893, +44.26.35.554, I, 4.04282e+07Hz to 08:40:38.526, +56.02.39.926, I, 4.04282e+07Hz)
2014-10-30 22:01:02 INFO imstat::ImageStatsCalculator::statistics Regions ---
2014-10-30 22:01:02 INFO imstat::ImageStatsCalculator::statistics -- bottom-left corner (pixel) [blc]: [0, 0, 0, 0]
2014-10-30 22:01:02 INFO imstat::ImageStatsCalculator::statistics -- top-right corner (pixel) [trc]: [1023, 1023, 0, 0]
2014-10-30 22:01:02 INFO imstat::ImageStatsCalculator::statistics -- bottom-left corner (world) [blcf]: 09:55:27.893, +44.26.35.554, I, 4.04282e+07Hz
2014-10-30 22:01:02 INFO imstat::ImageStatsCalculator::statistics -- top-right corner (world) [trcf]: 08:40:38.526, +56.02.39.926, I, 4.04282e+07Hz
2014-10-30 22:01:02 INFO imstat:::: Values ---
2014-10-30 22:01:02 INFO imstat:::: -- flux density [flux]: 155.967 Jy
2014-10-30 22:01:02 INFO imstat:::: -- number of points [npts]: 1.04858e+06
2014-10-30 22:01:02 INFO imstat:::: -- maximum value [max]: 7.3907 Jy/beam
2014-10-30 22:01:02 INFO imstat:::: -- minimum value [min]: -0.710904 Jy/beam
2014-10-30 22:01:02 INFO imstat:::: -- position of max value (pixel) [maxpos]: [506, 724, 0, 0]
2014-10-30 22:01:02 INFO imstat:::: -- position of min value (pixel) [minpos]: [461, 641, 0, 0]
2014-10-30 22:01:02 INFO imstat:::: -- position of max value (world) [maxposf]: 09:23:04.893, +53.02.22.971, I, 4.04282e+07Hz
2014-10-30 22:01:02 INFO imstat:::: -- position of min value (world) [minposf]: 09:26:24.846, +52.05.18.870, I, 4.04282e+07Hz
2014-10-30 22:01:02 INFO imstat:::: -- Sum of pixel values [sum]: 1503.87 Jy/beam
2014-10-30 22:01:02 INFO imstat:::: -- Sum of squared pixel values [sumsq]: 11840.8 Jy/beam.Jy/beam
2014-10-30 22:01:02 INFO imstat:::: Statistics ---
2014-10-30 22:01:02 INFO imstat:::: -- Mean of the pixel values [mean]: 0.00143421 Jy/beam
2014-10-30 22:01:02 INFO imstat:::: -- Variance of the pixel values : 0.0112902 Jy/beam0
2014-10-30 22:01:02 INFO imstat:::: -- Standard deviation of the Mean [sigma]: 0.106255 Jy/beam
2014-10-30 22:01:02 INFO imstat:::: -- Root mean square [rms]: 0.106265 Jy/beam
2014-10-30 22:01:02 INFO imstat:::: -- Median of the pixel values [median]: -0.000834612 Jy/beam
2014-10-30 22:01:02 INFO imstat:::: -- Median of the deviations [medabsdevmed]: 0.0650227 Jy/beam
2014-10-30 22:01:02 INFO imstat:::: -- Quartile [quartile]: 0.130042 Jy/beam
2014-10-30 22:01:02 INFO imstat::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-30 22:01:02 INFO imstat::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-30 22:01:02 INFO imstat::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-30 22:01:02 INFO imstat::ImageRegion::fromRecord Selected bounding box :
2014-10-30 22:01:02 INFO imstat::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (09:55:27.893, +44.26.35.554, I, 4.04282e+07Hz to 08:40:38.526, +56.02.39.926, I, 4.04282e+07Hz)
2014-10-30 22:01:02 INFO imstat::ImageStatsCalculator::statistics # Npts Sum Mean Rms Std dev Minimum Maximum
2014-10-30 22:01:02 INFO imstat::ImageStatsCalculator::statistics+ 1.048576e+06 1.503874e+03 1.434206e-03 1.062650e-01 1.062553e-01 -7.109039e-01 7.390699e+00
2014-10-30 22:01:02 INFO imstat::::casa ##### End Task: imstat #####
2014-10-30 22:01:02 INFO imstat::::casa+ ##########################################
2014-10-30 22:01:02 INFO clean::::casa
2014-10-30 22:01:02 INFO clean::::casa+ ##########################################
2014-10-30 22:01:02 INFO clean::::casa+ ##### Begin Task: clean #####
2014-10-30 22:01:02 INFO clean::::casa clean(vis="L85562_all_flagged.MS",imagename="Ctimesteps_flg1_dt0-05-37.5_tp2b_n0_it5000_wp512_facets1",outlierfile="",field="0",
2014-10-30 22:01:02 INFO clean::::casa+ spw="15~60",selectdata=True,timerange="2013/01/24/21:37:11.000000+0:05:37.5",uvrange="",antenna="",
2014-10-30 22:01:02 INFO clean::::casa+ scan="",observation="",intent="",mode="mfs",resmooth=False,
2014-10-30 22:01:02 INFO clean::::casa+ gridmode="widefield",wprojplanes=512,facets=1,cfcache="cfcache.dir",rotpainc=5.0,
2014-10-30 22:01:02 INFO clean::::casa+ painc=360.0,aterm=True,psterm=False,mterm=True,wbawp=False,
2014-10-30 22:01:02 INFO clean::::casa+ conjbeams=True,epjtable="",interpolation="linear",niter=5000,gain=0.1,
2014-10-30 22:01:02 INFO clean::::casa+ threshold="0.0mJy",psfmode="clark",imagermode="csclean",ftmachine="mosaic",mosweight=False,
2014-10-30 22:01:02 INFO clean::::casa+ scaletype="SAULT",multiscale=[0],negcomponent=-1,smallscalebias=0.6,interactive=False,
2014-10-30 22:01:02 INFO clean::::casa+ mask=[],nchan=-1,start=0,width=1,outframe="",
2014-10-30 22:01:02 INFO clean::::casa+ veltype="radio",imsize=[1024, 1024],cell="41.0710960679arcsec",phasecenter="",restfreq="",
2014-10-30 22:01:02 INFO clean::::casa+ stokes="I",weighting="natural",robust=0.0,uvtaper=False,outertaper=[''],
2014-10-30 22:01:02 INFO clean::::casa+ innertaper=['1.0'],modelimage="",restoringbeam=[''],pbcor=False,minpb=0.2,
2014-10-30 22:01:02 INFO clean::::casa+ usescratch=False,noise="1.0Jy",npixels=0,npercycle=100,cyclefactor=1.5,
2014-10-30 22:01:02 INFO clean::::casa+ cyclespeedup=-1,nterms=1,reffreq="",chaniter=False,flatnoise=True,
2014-10-30 22:01:02 INFO clean::::casa+ allowchunk=False)
2014-10-30 22:01:02 INFO clean::::casa nchan=-1 start=0 width=1
2014-10-30 22:01:02 INFO clean::::casa Use default channelization for clean
2014-10-30 22:01:02 INFO clean::::casa clean image: Ctimesteps_flg1_dt0-05-37.5_tp2b_n0_it5000_wp512_facets1
2014-10-30 22:01:02 INFO Imager::open() Opening MeasurementSet /home/mknapp/L85562_all_flagged.MS
2014-10-30 22:03:07 INFO clean::::casa FTMachine used is wproject
2014-10-30 22:03:07 INFO imager::data selection Performing selection on MeasurementSet : /home/mknapp/L85562_all_flagged.MS
2014-10-30 22:03:07 INFO imager::data selection Selecting on fields : 0
2014-10-30 22:03:07 INFO imager::data selection Selecting on spectral windows expression : 15~60
2014-10-30 22:03:07 INFO imager::data selection Selecting on time range : 2013/01/24/21:37:11.000000+0:05:37.5
2014-10-30 22:08:13 INFO imager::data selection Selected 1099492 out of 181964520 rows.
2014-10-30 22:08:13 INFO imager::data selection Selected: [1 chans in spw 15] [1 chans in spw 16] [1 chans in spw 17] [1 chans in spw 18] [1 chans in spw 19] [1 chans in spw 20] [1 chans in spw 21] [1 chans in spw 22] [1 chans in spw 23] [1 chans in spw 24] [1 chans in spw 25] [1 chans in spw 26] [1 chans in spw 27] [1 chans in spw 28] [1 chans in spw 29] [1 chans in spw 30] [1 chans in spw 31] [1 chans in spw 32] [1 chans in spw 33] [1 chans in spw 34] [1 chans in spw 35] [1 chans in spw 36] [1 chans in spw 37] [1 chans in spw 38] [1 chans in spw 39] [1 chans in spw 40] [1 chans in spw 41] [1 chans in spw 42] [1 chans in spw 43] [1 chans in spw 44] [1 chans in spw 45] [1 chans in spw 46] [1 chans in spw 47] [1 chans in spw 48] [1 chans in spw 49] [1 chans in spw 50] [1 chans in spw 51] [1 chans in spw 52] [1 chans in spw 53] [1 chans in spw 54] [1 chans in spw 55] [1 chans in spw 56] [1 chans in spw 57] [1 chans in spw 58] [1 chans in spw 59] [1 chans in spw 60]
2014-10-30 22:08:14 INFO imager::defineimage() Defining image properties:nx=1024 ny=1024 cellx='41.0711arcsec' celly='41.0711arcsec' stokes=I' mode=MFS nchan=-1 start=0 step=1 spwids=[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] fieldid=0 facets=1 frame=5 distance='0'
2014-10-30 22:08:14 INFO imager::defineimage() phaseCenter='field-0 ' mStart='Radialvelocity: 0' qStep='0 '' mFreqStart='Frequency: 0
2014-10-30 22:08:15 INFO Imager::setvp() Setting voltage pattern parameters
2014-10-30 22:08:15 INFO Imager::setvp() Sky position tolerance is 180 degrees
2014-10-30 22:08:15 INFO Imager::setvp() Using system default voltage patterns for each telescope
2014-10-30 22:08:15 INFO imager::makeimage() Calculating image (without full skyequation)
2014-10-30 22:08:15 WARN imager::makeimage() (file /var/rpmbuild/BUILD/casapy422/casapy422-42.2.30986/code/synthesis/MeasurementEquations/Imager.cc, line 2880) The MS has multiple antenna diameters ..PB could be wrong
2014-10-30 22:08:16 INFO Imager::setvp() Setting voltage pattern parameters
2014-10-30 22:08:16 INFO imager::weight() Weighting MS: Imaging weights will be changed
2014-10-30 22:08:16 INFO imager::weight() Natural weighting
2014-10-30 22:08:16 INFO clean::::casa Used mask(s) : [''] to create mask image(s) : Ctimesteps_flg1_dt0-05-37.5_tp2b_n0_it5000_wp512_facets1.mask
2014-10-30 22:08:16 INFO imager::setoptions() Setting processing options
2014-10-30 22:08:16 INFO clean::::casa No model found. Making empty initial model : Ctimesteps_flg1_dt0-05-37.5_tp2b_n0_it5000_wp512_facets1.model
2014-10-30 22:08:16 INFO Imager::imagecoordinates() Center frequency = 0.0447249 GHz, synthesized continuum bandwidth = 0.0179687 GHz
2014-10-30 22:08:16 INFO imager::clean() Using multifield Clark clean
2014-10-30 22:08:16 INFO imager::createFTMachine() Multiple fields or facets: transforms will be padded by a factor 1.2
2014-10-30 22:08:16 INFO imager::createFTMachine() Performing w-plane projection
2014-10-30 22:08:16 INFO imager::clean() Clean gain = 0.1, Niter = 5000, Threshold = 0 mJy
2014-10-30 22:08:16 INFO imager::clean() Starting deconvolution
2014-10-30 22:08:16 INFO WPConvFunc::findConvFunction W projection using 512 planes
2014-10-30 22:08:16 INFO WPConvFunc::findConvFunction Estimating maximum possible W = 1255.54 (wavelengths)
2014-10-30 22:08:16 INFO WPConvFunc::findConvFunction Typical wavelength = 8.34241 (m)
2014-10-30 22:08:16 INFO WPConvFunc::findConvFunction Scaling in W (at maximum W) = 0.00480825 wavelengths per pixel
2014-10-30 22:09:06 INFO WPConvFunc::findConvFunction Convolution support = [16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 108, 108, 108, 108, 108, 108, 108, 108, 108, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 116, 116, 116, 116, 116, 116, 116, 116, 116, 120, 120, 120, 120, 120, 120, 120, 120, 120, 124, 124, 124, 124, 124, 124, 124, 124, 128, 128, 128, 128, 128, 128, 128, 128, 128, 132, 132, 132, 132, 132, 132, 132, 132, 132, 136, 136, 136, 136, 136, 136, 136, 136, 140, 140, 140, 140, 140, 140, 140, 140, 144, 144, 144, 144, 144, 144, 144, 144, 148, 148, 148, 148, 148, 148] pixels in Fourier plane
2014-10-30 22:09:06 INFO WPConvFunc::findConvFunction Memory used in gridding function = 93 MB from maximum 122952 MB
2014-10-30 22:09:11 INFO ImageSkyModel::makeApproxPSFs bmaj: 323.495", bmin: 266.692", bpa: -53.4206 deg
2014-10-30 22:09:11 INFO MFCleanImageSkyModel::solve *** Starting major cycle 0
2014-10-30 22:09:15 INFO MFCleanImageSkyModel::solve The minor-cycle threshold is MAX[ 0.95 x 0 , peak residual x 0.478262 ]
2014-10-30 22:09:15 INFO MFCleanImageSkyModel::solve Maximum residual = 8.28601, cleaning down to 3.96289
2014-10-30 22:09:15 INFO MFCleanImageSkyModel::solve Processing model 0
2014-10-30 22:09:15 INFO ClarkCleanModel::singleSolve Initial maximum residual: 8.28601
2014-10-30 22:09:15 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-30 22:09:15 INFO MFCleanImageSkyModel::solve Clean used 27 iterations to approach a threshhold of 3.96289
2014-10-30 22:09:15 INFO MFCleanImageSkyModel::solve 14.2355 Jy <- cleaned in this cycle for model 0 (Total flux : 14.2355Jy)
2014-10-30 22:09:15 INFO MFCleanImageSkyModel::solve *** Starting major cycle 1
2014-10-30 22:09:23 INFO MFCleanImageSkyModel::solve The minor-cycle threshold is MAX[ 0.95 x 0 , peak residual x 0.478262 ]
2014-10-30 22:09:23 INFO MFCleanImageSkyModel::solve Maximum residual = 3.85969, cleaning down to 1.84594
2014-10-30 22:09:23 INFO MFCleanImageSkyModel::solve Processing model 0
2014-10-30 22:09:23 INFO ClarkCleanModel::singleSolve Initial maximum residual: 3.85969
2014-10-30 22:09:23 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-30 22:09:23 INFO MFCleanImageSkyModel::solve Clean used 118 iterations to approach a threshhold of 1.84594
2014-10-30 22:09:23 INFO MFCleanImageSkyModel::solve 23.2122 Jy <- cleaned in this cycle for model 0 (Total flux : 37.4478Jy)
2014-10-30 22:09:23 INFO MFCleanImageSkyModel::solve *** Starting major cycle 2
2014-10-30 22:09:30 INFO MFCleanImageSkyModel::solve The minor-cycle threshold is MAX[ 0.95 x 0 , peak residual x 0.478262 ]
2014-10-30 22:09:30 INFO MFCleanImageSkyModel::solve Maximum residual = 1.93037, cleaning down to 0.923225
2014-10-30 22:09:30 INFO MFCleanImageSkyModel::solve Processing model 0
2014-10-30 22:09:30 INFO ClarkCleanModel::singleSolve Initial maximum residual: 1.93037
2014-10-30 22:09:30 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-30 22:09:30 INFO MFCleanImageSkyModel::solve Clean used 354 iterations to approach a threshhold of 0.923225
2014-10-30 22:09:31 INFO MFCleanImageSkyModel::solve 29.2816 Jy <- cleaned in this cycle for model 0 (Total flux : 66.7294Jy)
2014-10-30 22:09:31 INFO MFCleanImageSkyModel::solve *** Starting major cycle 3
2014-10-30 22:09:38 INFO MFCleanImageSkyModel::solve The minor-cycle threshold is MAX[ 0.95 x 0 , peak residual x 0.478262 ]
2014-10-30 22:09:38 INFO MFCleanImageSkyModel::solve Maximum residual = 1.02015, cleaning down to 0.487898
2014-10-30 22:09:38 INFO MFCleanImageSkyModel::solve Processing model 0
2014-10-30 22:09:38 INFO ClarkCleanModel::singleSolve Initial maximum residual: 1.02015
2014-10-30 22:09:38 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-30 22:09:38 INFO MFCleanImageSkyModel::solve Clean used 1160 iterations to approach a threshhold of 0.487898
2014-10-30 22:09:38 INFO MFCleanImageSkyModel::solve 30.9377 Jy <- cleaned in this cycle for model 0 (Total flux : 97.6671Jy)
2014-10-30 22:09:38 INFO MFCleanImageSkyModel::solve *** Starting major cycle 4
2014-10-30 22:09:46 INFO MFCleanImageSkyModel::solve The minor-cycle threshold is MAX[ 0.95 x 0 , peak residual x 0.478262 ]
2014-10-30 22:09:46 INFO MFCleanImageSkyModel::solve Maximum residual = 0.614904, cleaning down to 0.294085
2014-10-30 22:09:46 INFO MFCleanImageSkyModel::solve Processing model 0
2014-10-30 22:09:46 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.614904
2014-10-30 22:09:46 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-30 22:09:46 INFO MFCleanImageSkyModel::solve Clean used 3809 iterations to approach a threshhold of 0.294085
2014-10-30 22:09:46 INFO MFCleanImageSkyModel::solve 22.4576 Jy <- cleaned in this cycle for model 0 (Total flux : 120.125Jy)
2014-10-30 22:09:46 INFO MFCleanImageSkyModel::solve *** Starting major cycle 5
2014-10-30 22:09:54 INFO MFCleanImageSkyModel::solve The minor-cycle threshold is MAX[ 0.95 x 0 , peak residual x 0.478262 ]
2014-10-30 22:09:54 INFO MFCleanImageSkyModel::solve Maximum residual = 0.441153, cleaning down to 0.210987
2014-10-30 22:09:54 INFO MFCleanImageSkyModel::solve Processing model 0
2014-10-30 22:09:54 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.441153
2014-10-30 22:09:54 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-30 22:09:54 INFO MFCleanImageSkyModel::solve Clean used 5000 iterations to approach a threshhold of 0.210987
2014-10-30 22:09:54 INFO MFCleanImageSkyModel::solve 7.50899 Jy <- cleaned in this cycle for model 0 (Total flux : 127.634Jy)
2014-10-30 22:10:02 INFO MFCleanImageSkyModel::solve Final maximum residual = 0.314714
2014-10-30 22:10:02 INFO MFCleanImageSkyModel::solve Model 0: max, min residuals = 0.314714, -0.289135 clean flux 127.634
2014-10-30 22:10:02 INFO imager::clean() Threshhold not reached yet.
2014-10-30 22:10:02 INFO imager::clean() Fitted beam used in restoration: 323.495 by 266.692 (arcsec) at pa -53.4206 (deg)
2014-10-30 22:10:02 INFO imager::iClean() Restoring Image(s) with the clean-beam
2014-10-30 22:10:03 INFO clean::::casa ##### End Task: clean #####
2014-10-30 22:10:03 INFO clean::::casa+ ##########################################
2014-10-30 22:10:03 INFO imstat::::casa
2014-10-30 22:10:03 INFO imstat::::casa+ ##########################################
2014-10-30 22:10:03 INFO imstat::::casa+ ##### Begin Task: imstat #####
2014-10-30 22:10:03 INFO imstat::::casa imstat(imagename="Ctimesteps_flg1_dt0-05-37.5_tp2b_n0_it5000_wp512_facets1.image",axes=-1,region="",box="",
2014-10-30 22:10:03 INFO imstat::::casa+ chans="",stokes="",listit=True,verbose=True,mask="",
2014-10-30 22:10:03 INFO imstat::::casa+ stretch=False,logfile="",append=True)
2014-10-30 22:10:03 INFO imstat::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-30 22:10:03 INFO imstat::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-30 22:10:03 INFO imstat::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-30 22:10:03 INFO imstat::image::statistics Determining stats for image Ctimesteps_flg1_dt0-05-37.5_tp2b_n0_it5000_wp512_facets1.image
2014-10-30 22:10:03 INFO imstat::CasacRegionManager::fromBCS Set region from supplied region record
2014-10-30 22:10:03 INFO imstat::ImageRegion::fromRecord Selected bounding box :
2014-10-30 22:10:03 INFO imstat::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (09:55:27.893, +44.26.35.554, I, 44725036.77Hz to 08:40:38.526, +56.02.39.926, I, 44725036.77Hz)
2014-10-30 22:10:03 INFO imstat::ImageStatsCalculator::statistics Regions ---
2014-10-30 22:10:03 INFO imstat::ImageStatsCalculator::statistics -- bottom-left corner (pixel) [blc]: [0, 0, 0, 0]
2014-10-30 22:10:03 INFO imstat::ImageStatsCalculator::statistics -- top-right corner (pixel) [trc]: [1023, 1023, 0, 0]
2014-10-30 22:10:03 INFO imstat::ImageStatsCalculator::statistics -- bottom-left corner (world) [blcf]: 09:55:27.893, +44.26.35.554, I, 44725036.77Hz
2014-10-30 22:10:03 INFO imstat::ImageStatsCalculator::statistics -- top-right corner (world) [trcf]: 08:40:38.526, +56.02.39.926, I, 44725036.77Hz
2014-10-30 22:10:03 INFO imstat:::: Values ---
2014-10-30 22:10:03 INFO imstat:::: -- flux density [flux]: 128.529 Jy
2014-10-30 22:10:03 INFO imstat:::: -- number of points [npts]: 1.04858e+06
2014-10-30 22:10:03 INFO imstat:::: -- maximum value [max]: 9.12378 Jy/beam
2014-10-30 22:10:03 INFO imstat:::: -- minimum value [min]: -0.535754 Jy/beam
2014-10-30 22:10:03 INFO imstat:::: -- position of max value (pixel) [maxpos]: [507, 724, 0, 0]
2014-10-30 22:10:03 INFO imstat:::: -- position of min value (pixel) [minpos]: [720, 633, 0, 0]
2014-10-30 22:10:03 INFO imstat:::: -- position of max value (world) [maxposf]: 09:23:00.339, +53.02.23.029, I, 44725036.77Hz
2014-10-30 22:10:03 INFO imstat:::: -- position of min value (world) [minposf]: 09:07:13.073, +51.56.21.466, I, 44725036.77Hz
2014-10-30 22:10:03 INFO imstat:::: -- Sum of pixel values [sum]: 7448.54 Jy/beam
2014-10-30 22:10:03 INFO imstat:::: -- Sum of squared pixel values [sumsq]: 24909 Jy/beam.Jy/beam
2014-10-30 22:10:03 INFO imstat:::: Statistics ---
2014-10-30 22:10:03 INFO imstat:::: -- Mean of the pixel values [mean]: 0.00710348 Jy/beam
2014-10-30 22:10:03 INFO imstat:::: -- Variance of the pixel values : 0.0237047 Jy/beam0
2014-10-30 22:10:03 INFO imstat:::: -- Standard deviation of the Mean [sigma]: 0.153963 Jy/beam
2014-10-30 22:10:03 INFO imstat:::: -- Root mean square [rms]: 0.154127 Jy/beam
2014-10-30 22:10:03 INFO imstat:::: -- Median of the pixel values [median]: -0.000414917 Jy/beam
2014-10-30 22:10:03 INFO imstat:::: -- Median of the deviations [medabsdevmed]: 0.0696064 Jy/beam
2014-10-30 22:10:03 INFO imstat:::: -- Quartile [quartile]: 0.139236 Jy/beam
2014-10-30 22:10:03 INFO imstat::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-30 22:10:03 INFO imstat::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-30 22:10:03 INFO imstat::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-30 22:10:03 INFO imstat::ImageRegion::fromRecord Selected bounding box :
2014-10-30 22:10:03 INFO imstat::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (09:55:27.893, +44.26.35.554, I, 44725036.77Hz to 08:40:38.526, +56.02.39.926, I, 44725036.77Hz)
2014-10-30 22:10:03 INFO imstat::ImageStatsCalculator::statistics # Npts Sum Mean Rms Std dev Minimum Maximum
2014-10-30 22:10:03 INFO imstat::ImageStatsCalculator::statistics+ 1.048576e+06 7.448539e+03 7.103480e-03 1.541270e-01 1.539632e-01 -5.357538e-01 9.123781e+00
2014-10-30 22:10:03 INFO imstat::::casa ##### End Task: imstat #####
2014-10-30 22:10:03 INFO imstat::::casa+ ##########################################
2014-10-30 22:10:03 INFO clean::::casa
2014-10-30 22:10:03 INFO clean::::casa+ ##########################################
2014-10-30 22:10:03 INFO clean::::casa+ ##### Begin Task: clean #####
2014-10-30 22:10:03 INFO clean::::casa clean(vis="L85562_all_flagged.MS",imagename="Ctimesteps_flg1_dt0-05-37.5_tp3_n0_it5000_wp512_facets1",outlierfile="",field="0",
2014-10-30 22:10:03 INFO clean::::casa+ spw="15~60",selectdata=True,timerange="2013/01/24/21:37:11.000000+0:05:37.5",uvrange="",antenna="",
2014-10-30 22:10:03 INFO clean::::casa+ scan="",observation="",intent="",mode="mfs",resmooth=False,
2014-10-30 22:10:03 INFO clean::::casa+ gridmode="widefield",wprojplanes=512,facets=1,cfcache="cfcache.dir",rotpainc=5.0,
2014-10-30 22:10:03 INFO clean::::casa+ painc=360.0,aterm=True,psterm=False,mterm=True,wbawp=False,
2014-10-30 22:10:03 INFO clean::::casa+ conjbeams=True,epjtable="",interpolation="linear",niter=5000,gain=0.1,
2014-10-30 22:10:03 INFO clean::::casa+ threshold="0.0mJy",psfmode="clark",imagermode="csclean",ftmachine="mosaic",mosweight=False,
2014-10-30 22:10:03 INFO clean::::casa+ scaletype="SAULT",multiscale=[0],negcomponent=-1,smallscalebias=0.6,interactive=False,
2014-10-30 22:10:03 INFO clean::::casa+ mask=[],nchan=-1,start=0,width=1,outframe="",
2014-10-30 22:10:03 INFO clean::::casa+ veltype="radio",imsize=[1024, 1024],cell="41.0710960679arcsec",phasecenter="",restfreq="",
2014-10-30 22:10:03 INFO clean::::casa+ stokes="I",weighting="briggs",robust=0.5,uvtaper=False,outertaper=[''],
2014-10-30 22:10:03 INFO clean::::casa+ innertaper=['1.0'],modelimage="",restoringbeam=[''],pbcor=False,minpb=0.2,
2014-10-30 22:10:03 INFO clean::::casa+ usescratch=False,noise="1.0Jy",npixels=0,npercycle=100,cyclefactor=1.5,
2014-10-30 22:10:03 INFO clean::::casa+ cyclespeedup=-1,nterms=1,reffreq="",chaniter=False,flatnoise=True,
2014-10-30 22:10:03 INFO clean::::casa+ allowchunk=False)
2014-10-30 22:10:03 INFO clean::::casa nchan=-1 start=0 width=1
2014-10-30 22:10:03 INFO clean::::casa Use default channelization for clean
2014-10-30 22:10:03 INFO clean::::casa clean image: Ctimesteps_flg1_dt0-05-37.5_tp3_n0_it5000_wp512_facets1
2014-10-30 22:10:03 INFO Imager::open() Opening MeasurementSet /home/mknapp/L85562_all_flagged.MS
2014-10-30 22:12:09 INFO clean::::casa FTMachine used is wproject
2014-10-30 22:12:10 INFO imager::data selection Performing selection on MeasurementSet : /home/mknapp/L85562_all_flagged.MS
2014-10-30 22:12:10 INFO imager::data selection Selecting on fields : 0
2014-10-30 22:12:10 INFO imager::data selection Selecting on spectral windows expression : 15~60
2014-10-30 22:12:10 INFO imager::data selection Selecting on time range : 2013/01/24/21:37:11.000000+0:05:37.5
2014-10-30 22:17:14 INFO imager::data selection Selected 1099492 out of 181964520 rows.
2014-10-30 22:17:14 INFO imager::data selection Selected: [1 chans in spw 15] [1 chans in spw 16] [1 chans in spw 17] [1 chans in spw 18] [1 chans in spw 19] [1 chans in spw 20] [1 chans in spw 21] [1 chans in spw 22] [1 chans in spw 23] [1 chans in spw 24] [1 chans in spw 25] [1 chans in spw 26] [1 chans in spw 27] [1 chans in spw 28] [1 chans in spw 29] [1 chans in spw 30] [1 chans in spw 31] [1 chans in spw 32] [1 chans in spw 33] [1 chans in spw 34] [1 chans in spw 35] [1 chans in spw 36] [1 chans in spw 37] [1 chans in spw 38] [1 chans in spw 39] [1 chans in spw 40] [1 chans in spw 41] [1 chans in spw 42] [1 chans in spw 43] [1 chans in spw 44] [1 chans in spw 45] [1 chans in spw 46] [1 chans in spw 47] [1 chans in spw 48] [1 chans in spw 49] [1 chans in spw 50] [1 chans in spw 51] [1 chans in spw 52] [1 chans in spw 53] [1 chans in spw 54] [1 chans in spw 55] [1 chans in spw 56] [1 chans in spw 57] [1 chans in spw 58] [1 chans in spw 59] [1 chans in spw 60]
2014-10-30 22:17:15 INFO imager::defineimage() Defining image properties:nx=1024 ny=1024 cellx='41.0711arcsec' celly='41.0711arcsec' stokes=I' mode=MFS nchan=-1 start=0 step=1 spwids=[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] fieldid=0 facets=1 frame=5 distance='0'
2014-10-30 22:17:15 INFO imager::defineimage() phaseCenter='field-0 ' mStart='Radialvelocity: 0' qStep='0 '' mFreqStart='Frequency: 0
2014-10-30 22:17:15 INFO Imager::setvp() Setting voltage pattern parameters
2014-10-30 22:17:15 INFO Imager::setvp() Sky position tolerance is 180 degrees
2014-10-30 22:17:15 INFO Imager::setvp() Using system default voltage patterns for each telescope
2014-10-30 22:17:15 INFO imager::makeimage() Calculating image (without full skyequation)
2014-10-30 22:17:15 WARN imager::makeimage() (file /var/rpmbuild/BUILD/casapy422/casapy422-42.2.30986/code/synthesis/MeasurementEquations/Imager.cc, line 2880) The MS has multiple antenna diameters ..PB could be wrong
2014-10-30 22:17:16 INFO Imager::setvp() Setting voltage pattern parameters
2014-10-30 22:17:16 INFO imager::weight() Weighting MS: Imaging weights will be changed
2014-10-30 22:17:16 INFO imager::weight() Briggs weighting: sidelobes will be suppressed over full image
2014-10-30 22:17:17 INFO VisSetUtil::VisImagingWeight() Normal robustness, robust = 0.5
2014-10-30 22:17:17 INFO clean::::casa Used mask(s) : [''] to create mask image(s) : Ctimesteps_flg1_dt0-05-37.5_tp3_n0_it5000_wp512_facets1.mask
2014-10-30 22:17:17 INFO imager::setoptions() Setting processing options
2014-10-30 22:17:17 INFO clean::::casa No model found. Making empty initial model : Ctimesteps_flg1_dt0-05-37.5_tp3_n0_it5000_wp512_facets1.model
2014-10-30 22:17:18 INFO Imager::imagecoordinates() Center frequency = 0.0447249 GHz, synthesized continuum bandwidth = 0.0179687 GHz
2014-10-30 22:17:18 INFO imager::clean() Using multifield Clark clean
2014-10-30 22:17:18 INFO imager::createFTMachine() Multiple fields or facets: transforms will be padded by a factor 1.2
2014-10-30 22:17:18 INFO imager::createFTMachine() Performing w-plane projection
2014-10-30 22:17:18 INFO imager::clean() Clean gain = 0.1, Niter = 5000, Threshold = 0 mJy
2014-10-30 22:17:18 INFO imager::clean() Starting deconvolution
2014-10-30 22:17:18 INFO WPConvFunc::findConvFunction W projection using 512 planes
2014-10-30 22:17:18 INFO WPConvFunc::findConvFunction Estimating maximum possible W = 1255.54 (wavelengths)
2014-10-30 22:17:18 INFO WPConvFunc::findConvFunction Typical wavelength = 8.34241 (m)
2014-10-30 22:17:18 INFO WPConvFunc::findConvFunction Scaling in W (at maximum W) = 0.00480825 wavelengths per pixel
2014-10-30 22:18:08 INFO WPConvFunc::findConvFunction Convolution support = [16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 108, 108, 108, 108, 108, 108, 108, 108, 108, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 116, 116, 116, 116, 116, 116, 116, 116, 116, 120, 120, 120, 120, 120, 120, 120, 120, 120, 124, 124, 124, 124, 124, 124, 124, 124, 128, 128, 128, 128, 128, 128, 128, 128, 128, 132, 132, 132, 132, 132, 132, 132, 132, 132, 136, 136, 136, 136, 136, 136, 136, 136, 140, 140, 140, 140, 140, 140, 140, 140, 144, 144, 144, 144, 144, 144, 144, 144, 148, 148, 148, 148, 148, 148] pixels in Fourier plane
2014-10-30 22:18:08 INFO WPConvFunc::findConvFunction Memory used in gridding function = 93 MB from maximum 122952 MB
2014-10-30 22:18:12 INFO ImageSkyModel::makeApproxPSFs bmaj: 324.51", bmin: 99.4991", bpa: -51.6216 deg
2014-10-30 22:18:12 INFO MFCleanImageSkyModel::solve *** Starting major cycle 0
2014-10-30 22:18:17 INFO MFCleanImageSkyModel::solve The minor-cycle threshold is MAX[ 0.95 x 0 , peak residual x 0.34192 ]
2014-10-30 22:18:17 INFO MFCleanImageSkyModel::solve Maximum residual = 6.20362, cleaning down to 2.12114
2014-10-30 22:18:17 INFO MFCleanImageSkyModel::solve Processing model 0
2014-10-30 22:18:17 INFO ClarkCleanModel::singleSolve Initial maximum residual: 6.20362
2014-10-30 22:18:17 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-30 22:18:17 INFO MFCleanImageSkyModel::solve Clean used 67 iterations to approach a threshhold of 2.12114
2014-10-30 22:18:17 INFO MFCleanImageSkyModel::solve 21.2251 Jy <- cleaned in this cycle for model 0 (Total flux : 21.2251Jy)
2014-10-30 22:18:17 INFO MFCleanImageSkyModel::solve *** Starting major cycle 1
2014-10-30 22:18:25 INFO MFCleanImageSkyModel::solve The minor-cycle threshold is MAX[ 0.95 x 0 , peak residual x 0.34192 ]
2014-10-30 22:18:25 INFO MFCleanImageSkyModel::solve Maximum residual = 2.13541, cleaning down to 0.73014
2014-10-30 22:18:25 INFO MFCleanImageSkyModel::solve Processing model 0
2014-10-30 22:18:25 INFO ClarkCleanModel::singleSolve Initial maximum residual: 2.13541
2014-10-30 22:18:25 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-30 22:18:25 INFO MFCleanImageSkyModel::solve Clean used 414 iterations to approach a threshhold of 0.73014
2014-10-30 22:18:25 INFO MFCleanImageSkyModel::solve 39.2064 Jy <- cleaned in this cycle for model 0 (Total flux : 60.4315Jy)
2014-10-30 22:18:25 INFO MFCleanImageSkyModel::solve *** Starting major cycle 2
2014-10-30 22:18:33 INFO MFCleanImageSkyModel::solve The minor-cycle threshold is MAX[ 0.95 x 0 , peak residual x 0.34192 ]
2014-10-30 22:18:33 INFO MFCleanImageSkyModel::solve Maximum residual = 0.832165, cleaning down to 0.284534
2014-10-30 22:18:33 INFO MFCleanImageSkyModel::solve Processing model 0
2014-10-30 22:18:33 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.832165
2014-10-30 22:18:33 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-30 22:18:33 INFO MFCleanImageSkyModel::solve Clean used 3028 iterations to approach a threshhold of 0.284534
2014-10-30 22:18:33 INFO MFCleanImageSkyModel::solve 58.8834 Jy <- cleaned in this cycle for model 0 (Total flux : 119.315Jy)
2014-10-30 22:18:33 INFO MFCleanImageSkyModel::solve *** Starting major cycle 3
2014-10-30 22:18:40 INFO MFCleanImageSkyModel::solve The minor-cycle threshold is MAX[ 0.95 x 0 , peak residual x 0.34192 ]
2014-10-30 22:18:40 INFO MFCleanImageSkyModel::solve Maximum residual = 0.379239, cleaning down to 0.12967
2014-10-30 22:18:40 INFO MFCleanImageSkyModel::solve Processing model 0
2014-10-30 22:18:40 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.379239
2014-10-30 22:18:41 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-30 22:18:41 INFO MFCleanImageSkyModel::solve Clean used 5000 iterations to approach a threshhold of 0.12967
2014-10-30 22:18:41 INFO MFCleanImageSkyModel::solve 17.7484 Jy <- cleaned in this cycle for model 0 (Total flux : 137.063Jy)
2014-10-30 22:18:49 INFO MFCleanImageSkyModel::solve Final maximum residual = 0.239577
2014-10-30 22:18:49 INFO MFCleanImageSkyModel::solve Model 0: max, min residuals = 0.239577, -0.22681 clean flux 137.063
2014-10-30 22:18:49 INFO imager::clean() Threshhold not reached yet.
2014-10-30 22:18:49 INFO imager::clean() Fitted beam used in restoration: 324.51 by 99.4991 (arcsec) at pa -51.6216 (deg)
2014-10-30 22:18:50 INFO imager::iClean() Restoring Image(s) with the clean-beam
2014-10-30 22:18:50 INFO clean::::casa ##### End Task: clean #####
2014-10-30 22:18:50 INFO clean::::casa+ ##########################################
2014-10-30 22:18:50 INFO imstat::::casa
2014-10-30 22:18:50 INFO imstat::::casa+ ##########################################
2014-10-30 22:18:50 INFO imstat::::casa+ ##### Begin Task: imstat #####
2014-10-30 22:18:50 INFO imstat::::casa imstat(imagename="Ctimesteps_flg1_dt0-05-37.5_tp3_n0_it5000_wp512_facets1.image",axes=-1,region="",box="",
2014-10-30 22:18:50 INFO imstat::::casa+ chans="",stokes="",listit=True,verbose=True,mask="",
2014-10-30 22:18:50 INFO imstat::::casa+ stretch=False,logfile="",append=True)
2014-10-30 22:18:50 INFO imstat::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-30 22:18:50 INFO imstat::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-30 22:18:50 INFO imstat::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-30 22:18:50 INFO imstat::image::statistics Determining stats for image Ctimesteps_flg1_dt0-05-37.5_tp3_n0_it5000_wp512_facets1.image
2014-10-30 22:18:50 INFO imstat::CasacRegionManager::fromBCS Set region from supplied region record
2014-10-30 22:18:50 INFO imstat::ImageRegion::fromRecord Selected bounding box :
2014-10-30 22:18:50 INFO imstat::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (09:55:27.893, +44.26.35.554, I, 44725036.77Hz to 08:40:38.526, +56.02.39.926, I, 44725036.77Hz)
2014-10-30 22:18:50 INFO imstat::ImageStatsCalculator::statistics Regions ---
2014-10-30 22:18:50 INFO imstat::ImageStatsCalculator::statistics -- bottom-left corner (pixel) [blc]: [0, 0, 0, 0]
2014-10-30 22:18:50 INFO imstat::ImageStatsCalculator::statistics -- top-right corner (pixel) [trc]: [1023, 1023, 0, 0]
2014-10-30 22:18:50 INFO imstat::ImageStatsCalculator::statistics -- bottom-left corner (world) [blcf]: 09:55:27.893, +44.26.35.554, I, 44725036.77Hz
2014-10-30 22:18:50 INFO imstat::ImageStatsCalculator::statistics -- top-right corner (world) [trcf]: 08:40:38.526, +56.02.39.926, I, 44725036.77Hz
2014-10-30 22:18:50 INFO imstat:::: Values ---
2014-10-30 22:18:50 INFO imstat:::: -- flux density [flux]: 139.002 Jy
2014-10-30 22:18:50 INFO imstat:::: -- number of points [npts]: 1.04858e+06
2014-10-30 22:18:50 INFO imstat:::: -- maximum value [max]: 7.05701 Jy/beam
2014-10-30 22:18:50 INFO imstat:::: -- minimum value [min]: -0.906667 Jy/beam
2014-10-30 22:18:50 INFO imstat:::: -- position of max value (pixel) [maxpos]: [507, 724, 0, 0]
2014-10-30 22:18:50 INFO imstat:::: -- position of min value (pixel) [minpos]: [517, 726, 0, 0]
2014-10-30 22:18:50 INFO imstat:::: -- position of max value (world) [maxposf]: 09:23:00.339, +53.02.23.029, I, 44725036.77Hz
2014-10-30 22:18:50 INFO imstat:::: -- position of min value (world) [minposf]: 09:22:14.789, +53.03.45.245, I, 44725036.77Hz
2014-10-30 22:18:50 INFO imstat:::: -- Sum of pixel values [sum]: 3014.8 Jy/beam
2014-10-30 22:18:50 INFO imstat:::: -- Sum of squared pixel values [sumsq]: 9229.81 Jy/beam.Jy/beam
2014-10-30 22:18:50 INFO imstat:::: Statistics ---
2014-10-30 22:18:50 INFO imstat:::: -- Mean of the pixel values [mean]: 0.00287514 Jy/beam
2014-10-30 22:18:50 INFO imstat:::: -- Variance of the pixel values : 0.00879398 Jy/beam0
2014-10-30 22:18:50 INFO imstat:::: -- Standard deviation of the Mean [sigma]: 0.0937762 Jy/beam
2014-10-30 22:18:50 INFO imstat:::: -- Root mean square [rms]: 0.0938202 Jy/beam
2014-10-30 22:18:50 INFO imstat:::: -- Median of the pixel values [median]: -0.000666492 Jy/beam
2014-10-30 22:18:50 INFO imstat:::: -- Median of the deviations [medabsdevmed]: 0.0473749 Jy/beam
2014-10-30 22:18:50 INFO imstat:::: -- Quartile [quartile]: 0.0947864 Jy/beam
2014-10-30 22:18:50 INFO imstat::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-30 22:18:50 INFO imstat::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-30 22:18:50 INFO imstat::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-30 22:18:50 INFO imstat::ImageRegion::fromRecord Selected bounding box :
2014-10-30 22:18:50 INFO imstat::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (09:55:27.893, +44.26.35.554, I, 44725036.77Hz to 08:40:38.526, +56.02.39.926, I, 44725036.77Hz)
2014-10-30 22:18:50 INFO imstat::ImageStatsCalculator::statistics # Npts Sum Mean Rms Std dev Minimum Maximum
2014-10-30 22:18:50 INFO imstat::ImageStatsCalculator::statistics+ 1.048576e+06 3.014805e+03 2.875142e-03 9.382023e-02 9.377621e-02 -9.066673e-01 7.057007e+00
2014-10-30 22:18:50 INFO imstat::::casa ##### End Task: imstat #####
2014-10-30 22:18:50 INFO imstat::::casa+ ##########################################
2014-10-30 22:18:50 INFO clean::::casa
2014-10-30 22:18:50 INFO clean::::casa+ ##########################################
2014-10-30 22:18:50 INFO clean::::casa+ ##### Begin Task: clean #####
2014-10-30 22:18:50 INFO clean::::casa clean(vis="L85562_all_flagged.MS",imagename="Ctimesteps_flg1_dt0-05-37.5_tp4b_n0_it5000_wp512_facets1",outlierfile="",field="0",
2014-10-30 22:18:50 INFO clean::::casa+ spw="15~105",selectdata=True,timerange="2013/01/24/21:37:11.000000+0:05:37.5",uvrange="",antenna="",
2014-10-30 22:18:50 INFO clean::::casa+ scan="",observation="",intent="",mode="mfs",resmooth=False,
2014-10-30 22:18:50 INFO clean::::casa+ gridmode="widefield",wprojplanes=512,facets=1,cfcache="cfcache.dir",rotpainc=5.0,
2014-10-30 22:18:50 INFO clean::::casa+ painc=360.0,aterm=True,psterm=False,mterm=True,wbawp=False,
2014-10-30 22:18:50 INFO clean::::casa+ conjbeams=True,epjtable="",interpolation="linear",niter=5000,gain=0.1,
2014-10-30 22:18:50 INFO clean::::casa+ threshold="0.0mJy",psfmode="clark",imagermode="csclean",ftmachine="mosaic",mosweight=False,
2014-10-30 22:18:50 INFO clean::::casa+ scaletype="SAULT",multiscale=[0],negcomponent=-1,smallscalebias=0.6,interactive=False,
2014-10-30 22:18:50 INFO clean::::casa+ mask=[],nchan=-1,start=0,width=1,outframe="",
2014-10-30 22:18:50 INFO clean::::casa+ veltype="radio",imsize=[1024, 1024],cell="41.0710960679arcsec",phasecenter="",restfreq="",
2014-10-30 22:18:50 INFO clean::::casa+ stokes="I",weighting="natural",robust=0.0,uvtaper=False,outertaper=[''],
2014-10-30 22:18:50 INFO clean::::casa+ innertaper=['1.0'],modelimage="",restoringbeam=[''],pbcor=False,minpb=0.2,
2014-10-30 22:18:50 INFO clean::::casa+ usescratch=False,noise="1.0Jy",npixels=0,npercycle=100,cyclefactor=1.5,
2014-10-30 22:18:50 INFO clean::::casa+ cyclespeedup=-1,nterms=1,reffreq="",chaniter=False,flatnoise=True,
2014-10-30 22:18:50 INFO clean::::casa+ allowchunk=False)
2014-10-30 22:18:50 INFO clean::::casa nchan=-1 start=0 width=1
2014-10-30 22:18:50 INFO clean::::casa Use default channelization for clean
2014-10-30 22:18:50 INFO clean::::casa clean image: Ctimesteps_flg1_dt0-05-37.5_tp4b_n0_it5000_wp512_facets1
2014-10-30 22:18:50 INFO Imager::open() Opening MeasurementSet /home/mknapp/L85562_all_flagged.MS
2014-10-30 22:20:54 INFO clean::::casa FTMachine used is wproject
2014-10-30 22:20:55 INFO imager::data selection Performing selection on MeasurementSet : /home/mknapp/L85562_all_flagged.MS
2014-10-30 22:20:55 INFO imager::data selection Selecting on fields : 0
2014-10-30 22:20:55 INFO imager::data selection Selecting on spectral windows expression : 15~105
2014-10-30 22:20:55 INFO imager::data selection Selecting on time range : 2013/01/24/21:37:11.000000+0:05:37.5
2014-10-30 22:29:33 INFO imager::data selection Selected 2175082 out of 181964520 rows.
2014-10-30 22:29:33 INFO imager::data selection Selected: [1 chans in spw 15] [1 chans in spw 16] [1 chans in spw 17] [1 chans in spw 18] [1 chans in spw 19] [1 chans in spw 20] [1 chans in spw 21] [1 chans in spw 22] [1 chans in spw 23] [1 chans in spw 24] [1 chans in spw 25] [1 chans in spw 26] [1 chans in spw 27] [1 chans in spw 28] [1 chans in spw 29] [1 chans in spw 30] [1 chans in spw 31] [1 chans in spw 32] [1 chans in spw 33] [1 chans in spw 34] [1 chans in spw 35] [1 chans in spw 36] [1 chans in spw 37] [1 chans in spw 38] [1 chans in spw 39] [1 chans in spw 40] [1 chans in spw 41] [1 chans in spw 42] [1 chans in spw 43] [1 chans in spw 44] [1 chans in spw 45] [1 chans in spw 46] [1 chans in spw 47] [1 chans in spw 48] [1 chans in spw 49] [1 chans in spw 50] [1 chans in spw 51] [1 chans in spw 52] [1 chans in spw 53] [1 chans in spw 54] [1 chans in spw 55] [1 chans in spw 56] [1 chans in spw 57] [1 chans in spw 58] [1 chans in spw 59] [1 chans in spw 60] [1 chans in spw 61] [1 chans in spw 62] [1 chans in spw 63] [1 chans in spw 64] [1 chans in spw 65] [1 chans in spw 66] [1 chans in spw 67] [1 chans in spw 68] [1 chans in spw 69] [1 chans in spw 70] [1 chans in spw 71] [1 chans in spw 72] [1 chans in spw 73] [1 chans in spw 74] [1 chans in spw 75] [1 chans in spw 76] [1 chans in spw 77] [1 chans in spw 78] [1 chans in spw 79] [1 chans in spw 80] [1 chans in spw 81] [1 chans in spw 82] [1 chans in spw 83] [1 chans in spw 84] [1 chans in spw 85] [1 chans in spw 86] [1 chans in spw 87] [1 chans in spw 88] [1 chans in spw 89] [1 chans in spw 90] [1 chans in spw 91] [1 chans in spw 92] [1 chans in spw 93] [1 chans in spw 94] [1 chans in spw 95] [1 chans in spw 96] [1 chans in spw 97] [1 chans in spw 98] [1 chans in spw 99] [1 chans in spw 100] [1 chans in spw 101] [1 chans in spw 102] [1 chans in spw 103] [1 chans in spw 104] [1 chans in spw 105]
2014-10-30 22:29:33 INFO imager::defineimage() Defining image properties:nx=1024 ny=1024 cellx='41.0711arcsec' celly='41.0711arcsec' stokes=I' mode=MFS nchan=-1 start=0 step=1 spwids=[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] fieldid=0 facets=1 frame=5 distance='0'
2014-10-30 22:29:33 INFO imager::defineimage() phaseCenter='field-0 ' mStart='Radialvelocity: 0' qStep='0 '' mFreqStart='Frequency: 0
2014-10-30 22:29:34 INFO Imager::setvp() Setting voltage pattern parameters
2014-10-30 22:29:34 INFO Imager::setvp() Sky position tolerance is 180 degrees
2014-10-30 22:29:34 INFO Imager::setvp() Using system default voltage patterns for each telescope
2014-10-30 22:29:34 INFO imager::makeimage() Calculating image (without full skyequation)
2014-10-30 22:29:35 WARN imager::makeimage() (file /var/rpmbuild/BUILD/casapy422/casapy422-42.2.30986/code/synthesis/MeasurementEquations/Imager.cc, line 2880) The MS has multiple antenna diameters ..PB could be wrong
2014-10-30 22:29:36 INFO Imager::setvp() Setting voltage pattern parameters
2014-10-30 22:29:36 INFO imager::weight() Weighting MS: Imaging weights will be changed
2014-10-30 22:29:36 INFO imager::weight() Natural weighting
2014-10-30 22:29:36 INFO clean::::casa Used mask(s) : [''] to create mask image(s) : Ctimesteps_flg1_dt0-05-37.5_tp4b_n0_it5000_wp512_facets1.mask
2014-10-30 22:29:36 INFO imager::setoptions() Setting processing options
2014-10-30 22:29:36 INFO clean::::casa No model found. Making empty initial model : Ctimesteps_flg1_dt0-05-37.5_tp4b_n0_it5000_wp512_facets1.model
2014-10-30 22:29:36 INFO Imager::imagecoordinates() Center frequency = 0.0535139 GHz, synthesized continuum bandwidth = 0.0355467 GHz
2014-10-30 22:29:36 INFO imager::clean() Using multifield Clark clean
2014-10-30 22:29:36 INFO imager::createFTMachine() Multiple fields or facets: transforms will be padded by a factor 1.2
2014-10-30 22:29:36 INFO imager::createFTMachine() Performing w-plane projection
2014-10-30 22:29:36 INFO imager::clean() Clean gain = 0.1, Niter = 5000, Threshold = 0 mJy
2014-10-30 22:29:36 INFO imager::clean() Starting deconvolution
2014-10-30 22:29:36 INFO WPConvFunc::findConvFunction W projection using 512 planes
2014-10-30 22:29:36 INFO WPConvFunc::findConvFunction Estimating maximum possible W = 1255.54 (wavelengths)
2014-10-30 22:29:36 INFO WPConvFunc::findConvFunction Typical wavelength = 8.34241 (m)
2014-10-30 22:29:36 INFO WPConvFunc::findConvFunction Scaling in W (at maximum W) = 0.00480825 wavelengths per pixel
2014-10-30 22:30:27 INFO WPConvFunc::findConvFunction Convolution support = [16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 108, 108, 108, 108, 108, 108, 108, 108, 108, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 116, 116, 116, 116, 116, 116, 116, 116, 116, 120, 120, 120, 120, 120, 120, 120, 120, 120, 124, 124, 124, 124, 124, 124, 124, 124, 128, 128, 128, 128, 128, 128, 128, 128, 128, 132, 132, 132, 132, 132, 132, 132, 132, 132, 136, 136, 136, 136, 136, 136, 136, 136, 140, 140, 140, 140, 140, 140, 140, 140, 144, 144, 144, 144, 144, 144, 144, 144, 148, 148, 148, 148, 148, 148] pixels in Fourier plane
2014-10-30 22:30:27 INFO WPConvFunc::findConvFunction Memory used in gridding function = 93 MB from maximum 122952 MB
2014-10-30 22:30:35 INFO ImageSkyModel::makeApproxPSFs bmaj: 308.339", bmin: 266.178", bpa: -55.5846 deg
2014-10-30 22:30:36 INFO MFCleanImageSkyModel::solve *** Starting major cycle 0
2014-10-30 22:30:45 INFO MFCleanImageSkyModel::solve The minor-cycle threshold is MAX[ 0.95 x 0 , peak residual x 0.324215 ]
2014-10-30 22:30:45 INFO MFCleanImageSkyModel::solve Maximum residual = 5.88818, cleaning down to 1.90904
2014-10-30 22:30:45 INFO MFCleanImageSkyModel::solve Processing model 0
2014-10-30 22:30:45 INFO ClarkCleanModel::singleSolve Initial maximum residual: 5.88818
2014-10-30 22:30:45 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-30 22:30:45 INFO MFCleanImageSkyModel::solve Clean used 67 iterations to approach a threshhold of 1.90904
2014-10-30 22:30:45 INFO MFCleanImageSkyModel::solve 19.9106 Jy <- cleaned in this cycle for model 0 (Total flux : 19.9106Jy)
2014-10-30 22:30:45 INFO MFCleanImageSkyModel::solve *** Starting major cycle 1
2014-10-30 22:31:00 INFO MFCleanImageSkyModel::solve The minor-cycle threshold is MAX[ 0.95 x 0 , peak residual x 0.324215 ]
2014-10-30 22:31:00 INFO MFCleanImageSkyModel::solve Maximum residual = 1.99331, cleaning down to 0.64626
2014-10-30 22:31:00 INFO MFCleanImageSkyModel::solve Processing model 0
2014-10-30 22:31:00 INFO ClarkCleanModel::singleSolve Initial maximum residual: 1.99331
2014-10-30 22:31:00 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-30 22:31:00 INFO MFCleanImageSkyModel::solve Clean used 410 iterations to approach a threshhold of 0.64626
2014-10-30 22:31:00 INFO MFCleanImageSkyModel::solve 34.9472 Jy <- cleaned in this cycle for model 0 (Total flux : 54.8579Jy)
2014-10-30 22:31:00 INFO MFCleanImageSkyModel::solve *** Starting major cycle 2
2014-10-30 22:31:15 INFO MFCleanImageSkyModel::solve The minor-cycle threshold is MAX[ 0.95 x 0 , peak residual x 0.324215 ]
2014-10-30 22:31:15 INFO MFCleanImageSkyModel::solve Maximum residual = 0.778025, cleaning down to 0.252247
2014-10-30 22:31:15 INFO MFCleanImageSkyModel::solve Processing model 0
2014-10-30 22:31:15 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.778025
2014-10-30 22:31:15 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-30 22:31:15 INFO MFCleanImageSkyModel::solve Clean used 3418 iterations to approach a threshhold of 0.252247
2014-10-30 22:31:15 INFO MFCleanImageSkyModel::solve 31.5714 Jy <- cleaned in this cycle for model 0 (Total flux : 86.4292Jy)
2014-10-30 22:31:15 INFO MFCleanImageSkyModel::solve *** Starting major cycle 3
2014-10-30 22:31:31 INFO MFCleanImageSkyModel::solve The minor-cycle threshold is MAX[ 0.95 x 0 , peak residual x 0.324215 ]
2014-10-30 22:31:31 INFO MFCleanImageSkyModel::solve Maximum residual = 0.480787, cleaning down to 0.155878
2014-10-30 22:31:31 INFO MFCleanImageSkyModel::solve Processing model 0
2014-10-30 22:31:31 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.480787
2014-10-30 22:31:31 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-30 22:31:31 INFO MFCleanImageSkyModel::solve Clean used 5000 iterations to approach a threshhold of 0.155878
2014-10-30 22:31:31 INFO MFCleanImageSkyModel::solve 8.40738 Jy <- cleaned in this cycle for model 0 (Total flux : 94.8366Jy)
2014-10-30 22:31:46 INFO MFCleanImageSkyModel::solve Final maximum residual = 0.335435
2014-10-30 22:31:46 INFO MFCleanImageSkyModel::solve Model 0: max, min residuals = 0.335435, -0.253349 clean flux 94.8366
2014-10-30 22:31:46 INFO imager::clean() Threshhold not reached yet.
2014-10-30 22:31:46 INFO imager::clean() Fitted beam used in restoration: 308.339 by 266.178 (arcsec) at pa -55.5846 (deg)
2014-10-30 22:31:47 INFO imager::iClean() Restoring Image(s) with the clean-beam
2014-10-30 22:31:48 INFO clean::::casa ##### End Task: clean #####
2014-10-30 22:31:48 INFO clean::::casa+ ##########################################
2014-10-30 22:31:48 INFO imstat::::casa
2014-10-30 22:31:48 INFO imstat::::casa+ ##########################################
2014-10-30 22:31:48 INFO imstat::::casa+ ##### Begin Task: imstat #####
2014-10-30 22:31:48 INFO imstat::::casa imstat(imagename="Ctimesteps_flg1_dt0-05-37.5_tp4b_n0_it5000_wp512_facets1.image",axes=-1,region="",box="",
2014-10-30 22:31:48 INFO imstat::::casa+ chans="",stokes="",listit=True,verbose=True,mask="",
2014-10-30 22:31:48 INFO imstat::::casa+ stretch=False,logfile="",append=True)
2014-10-30 22:31:48 INFO imstat::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-30 22:31:48 INFO imstat::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-30 22:31:48 INFO imstat::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-30 22:31:48 INFO imstat::image::statistics Determining stats for image Ctimesteps_flg1_dt0-05-37.5_tp4b_n0_it5000_wp512_facets1.image
2014-10-30 22:31:48 INFO imstat::CasacRegionManager::fromBCS Set region from supplied region record
2014-10-30 22:31:48 INFO imstat::ImageRegion::fromRecord Selected bounding box :
2014-10-30 22:31:48 INFO imstat::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (09:55:27.893, +44.26.35.554, I, 53514099.32Hz to 08:40:38.526, +56.02.39.926, I, 53514099.32Hz)
2014-10-30 22:31:48 INFO imstat::ImageStatsCalculator::statistics Regions ---
2014-10-30 22:31:48 INFO imstat::ImageStatsCalculator::statistics -- bottom-left corner (pixel) [blc]: [0, 0, 0, 0]
2014-10-30 22:31:48 INFO imstat::ImageStatsCalculator::statistics -- top-right corner (pixel) [trc]: [1023, 1023, 0, 0]
2014-10-30 22:31:48 INFO imstat::ImageStatsCalculator::statistics -- bottom-left corner (world) [blcf]: 09:55:27.893, +44.26.35.554, I, 53514099.32Hz
2014-10-30 22:31:48 INFO imstat::ImageStatsCalculator::statistics -- top-right corner (world) [trcf]: 08:40:38.526, +56.02.39.926, I, 53514099.32Hz
2014-10-30 22:31:48 INFO imstat:::: Values ---
2014-10-30 22:31:48 INFO imstat:::: -- flux density [flux]: 86.7153 Jy
2014-10-30 22:31:48 INFO imstat:::: -- number of points [npts]: 1.04858e+06
2014-10-30 22:31:48 INFO imstat:::: -- maximum value [max]: 6.50447 Jy/beam
2014-10-30 22:31:48 INFO imstat:::: -- minimum value [min]: -0.430809 Jy/beam
2014-10-30 22:31:48 INFO imstat:::: -- position of max value (pixel) [maxpos]: [507, 724, 0, 0]
2014-10-30 22:31:48 INFO imstat:::: -- position of min value (pixel) [minpos]: [400, 515, 0, 0]
2014-10-30 22:31:48 INFO imstat:::: -- position of max value (world) [maxposf]: 09:23:00.339, +53.02.23.029, I, 53514099.32Hz
2014-10-30 22:31:48 INFO imstat:::: -- position of min value (world) [minposf]: 09:30:41.193, +50.38.14.182, I, 53514099.32Hz
2014-10-30 22:31:48 INFO imstat:::: -- Sum of pixel values [sum]: 4780.66 Jy/beam
2014-10-30 22:31:48 INFO imstat:::: -- Sum of squared pixel values [sumsq]: 15080.4 Jy/beam.Jy/beam
2014-10-30 22:31:48 INFO imstat:::: Statistics ---
2014-10-30 22:31:48 INFO imstat:::: -- Mean of the pixel values [mean]: 0.0045592 Jy/beam
2014-10-30 22:31:48 INFO imstat:::: -- Variance of the pixel values : 0.014361 Jy/beam0
2014-10-30 22:31:48 INFO imstat:::: -- Standard deviation of the Mean [sigma]: 0.119838 Jy/beam
2014-10-30 22:31:48 INFO imstat:::: -- Root mean square [rms]: 0.119924 Jy/beam
2014-10-30 22:31:48 INFO imstat:::: -- Median of the pixel values [median]: -0.00140038 Jy/beam
2014-10-30 22:31:48 INFO imstat:::: -- Median of the deviations [medabsdevmed]: 0.0557097 Jy/beam
2014-10-30 22:31:48 INFO imstat:::: -- Quartile [quartile]: 0.111449 Jy/beam
2014-10-30 22:31:48 INFO imstat::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-30 22:31:48 INFO imstat::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-30 22:31:48 INFO imstat::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-30 22:31:48 INFO imstat::ImageRegion::fromRecord Selected bounding box :
2014-10-30 22:31:48 INFO imstat::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (09:55:27.893, +44.26.35.554, I, 53514099.32Hz to 08:40:38.526, +56.02.39.926, I, 53514099.32Hz)
2014-10-30 22:31:48 INFO imstat::ImageStatsCalculator::statistics # Npts Sum Mean Rms Std dev Minimum Maximum
2014-10-30 22:31:48 INFO imstat::ImageStatsCalculator::statistics+ 1.048576e+06 4.780665e+03 4.559197e-03 1.199242e-01 1.198375e-01 -4.308087e-01 6.504465e+00
2014-10-30 22:31:48 INFO imstat::::casa ##### End Task: imstat #####
2014-10-30 22:31:48 INFO imstat::::casa+ ##########################################
2014-10-30 22:31:48 INFO clean::::casa
2014-10-30 22:31:48 INFO clean::::casa+ ##########################################
2014-10-30 22:31:48 INFO clean::::casa+ ##### Begin Task: clean #####
2014-10-30 22:31:48 INFO clean::::casa clean(vis="L85562_all_flagged.MS",imagename="Ctimesteps_flg1_dt0-05-37.5_tp5_n0_it5000_wp512_facets1",outlierfile="",field="0",
2014-10-30 22:31:48 INFO clean::::casa+ spw="15~105",selectdata=True,timerange="2013/01/24/21:37:11.000000+0:05:37.5",uvrange="",antenna="",
2014-10-30 22:31:48 INFO clean::::casa+ scan="",observation="",intent="",mode="mfs",resmooth=False,
2014-10-30 22:31:48 INFO clean::::casa+ gridmode="widefield",wprojplanes=512,facets=1,cfcache="cfcache.dir",rotpainc=5.0,
2014-10-30 22:31:48 INFO clean::::casa+ painc=360.0,aterm=True,psterm=False,mterm=True,wbawp=False,
2014-10-30 22:31:48 INFO clean::::casa+ conjbeams=True,epjtable="",interpolation="linear",niter=5000,gain=0.1,
2014-10-30 22:31:48 INFO clean::::casa+ threshold="0.0mJy",psfmode="clark",imagermode="csclean",ftmachine="mosaic",mosweight=False,
2014-10-30 22:31:48 INFO clean::::casa+ scaletype="SAULT",multiscale=[0],negcomponent=-1,smallscalebias=0.6,interactive=False,
2014-10-30 22:31:48 INFO clean::::casa+ mask=[],nchan=-1,start=0,width=1,outframe="",
2014-10-30 22:31:48 INFO clean::::casa+ veltype="radio",imsize=[1024, 1024],cell="41.0710960679arcsec",phasecenter="",restfreq="",
2014-10-30 22:31:48 INFO clean::::casa+ stokes="I",weighting="briggs",robust=0.5,uvtaper=False,outertaper=[''],
2014-10-30 22:31:48 INFO clean::::casa+ innertaper=['1.0'],modelimage="",restoringbeam=[''],pbcor=False,minpb=0.2,
2014-10-30 22:31:48 INFO clean::::casa+ usescratch=False,noise="1.0Jy",npixels=0,npercycle=100,cyclefactor=1.5,
2014-10-30 22:31:48 INFO clean::::casa+ cyclespeedup=-1,nterms=1,reffreq="",chaniter=False,flatnoise=True,
2014-10-30 22:31:48 INFO clean::::casa+ allowchunk=False)
2014-10-30 22:31:48 INFO clean::::casa nchan=-1 start=0 width=1
2014-10-30 22:31:48 INFO clean::::casa Use default channelization for clean
2014-10-30 22:31:48 INFO clean::::casa clean image: Ctimesteps_flg1_dt0-05-37.5_tp5_n0_it5000_wp512_facets1
2014-10-30 22:31:48 INFO Imager::open() Opening MeasurementSet /home/mknapp/L85562_all_flagged.MS
2014-10-30 22:33:53 INFO clean::::casa FTMachine used is wproject
2014-10-30 22:33:53 INFO imager::data selection Performing selection on MeasurementSet : /home/mknapp/L85562_all_flagged.MS
2014-10-30 22:33:53 INFO imager::data selection Selecting on fields : 0
2014-10-30 22:33:53 INFO imager::data selection Selecting on spectral windows expression : 15~105
2014-10-30 22:33:53 INFO imager::data selection Selecting on time range : 2013/01/24/21:37:11.000000+0:05:37.5
2014-10-30 22:42:34 INFO imager::data selection Selected 2175082 out of 181964520 rows.
2014-10-30 22:42:34 INFO imager::data selection Selected: [1 chans in spw 15] [1 chans in spw 16] [1 chans in spw 17] [1 chans in spw 18] [1 chans in spw 19] [1 chans in spw 20] [1 chans in spw 21] [1 chans in spw 22] [1 chans in spw 23] [1 chans in spw 24] [1 chans in spw 25] [1 chans in spw 26] [1 chans in spw 27] [1 chans in spw 28] [1 chans in spw 29] [1 chans in spw 30] [1 chans in spw 31] [1 chans in spw 32] [1 chans in spw 33] [1 chans in spw 34] [1 chans in spw 35] [1 chans in spw 36] [1 chans in spw 37] [1 chans in spw 38] [1 chans in spw 39] [1 chans in spw 40] [1 chans in spw 41] [1 chans in spw 42] [1 chans in spw 43] [1 chans in spw 44] [1 chans in spw 45] [1 chans in spw 46] [1 chans in spw 47] [1 chans in spw 48] [1 chans in spw 49] [1 chans in spw 50] [1 chans in spw 51] [1 chans in spw 52] [1 chans in spw 53] [1 chans in spw 54] [1 chans in spw 55] [1 chans in spw 56] [1 chans in spw 57] [1 chans in spw 58] [1 chans in spw 59] [1 chans in spw 60] [1 chans in spw 61] [1 chans in spw 62] [1 chans in spw 63] [1 chans in spw 64] [1 chans in spw 65] [1 chans in spw 66] [1 chans in spw 67] [1 chans in spw 68] [1 chans in spw 69] [1 chans in spw 70] [1 chans in spw 71] [1 chans in spw 72] [1 chans in spw 73] [1 chans in spw 74] [1 chans in spw 75] [1 chans in spw 76] [1 chans in spw 77] [1 chans in spw 78] [1 chans in spw 79] [1 chans in spw 80] [1 chans in spw 81] [1 chans in spw 82] [1 chans in spw 83] [1 chans in spw 84] [1 chans in spw 85] [1 chans in spw 86] [1 chans in spw 87] [1 chans in spw 88] [1 chans in spw 89] [1 chans in spw 90] [1 chans in spw 91] [1 chans in spw 92] [1 chans in spw 93] [1 chans in spw 94] [1 chans in spw 95] [1 chans in spw 96] [1 chans in spw 97] [1 chans in spw 98] [1 chans in spw 99] [1 chans in spw 100] [1 chans in spw 101] [1 chans in spw 102] [1 chans in spw 103] [1 chans in spw 104] [1 chans in spw 105]
2014-10-30 22:42:35 INFO imager::defineimage() Defining image properties:nx=1024 ny=1024 cellx='41.0711arcsec' celly='41.0711arcsec' stokes=I' mode=MFS nchan=-1 start=0 step=1 spwids=[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] fieldid=0 facets=1 frame=5 distance='0'
2014-10-30 22:42:35 INFO imager::defineimage() phaseCenter='field-0 ' mStart='Radialvelocity: 0' qStep='0 '' mFreqStart='Frequency: 0
2014-10-30 22:42:35 INFO Imager::setvp() Setting voltage pattern parameters
2014-10-30 22:42:35 INFO Imager::setvp() Sky position tolerance is 180 degrees
2014-10-30 22:42:35 INFO Imager::setvp() Using system default voltage patterns for each telescope
2014-10-30 22:42:35 INFO imager::makeimage() Calculating image (without full skyequation)
2014-10-30 22:42:36 WARN imager::makeimage() (file /var/rpmbuild/BUILD/casapy422/casapy422-42.2.30986/code/synthesis/MeasurementEquations/Imager.cc, line 2880) The MS has multiple antenna diameters ..PB could be wrong
2014-10-30 22:42:37 INFO Imager::setvp() Setting voltage pattern parameters
2014-10-30 22:42:37 INFO imager::weight() Weighting MS: Imaging weights will be changed
2014-10-30 22:42:37 INFO imager::weight() Briggs weighting: sidelobes will be suppressed over full image
2014-10-30 22:42:40 INFO VisSetUtil::VisImagingWeight() Normal robustness, robust = 0.5
2014-10-30 22:42:40 INFO clean::::casa Used mask(s) : [''] to create mask image(s) : Ctimesteps_flg1_dt0-05-37.5_tp5_n0_it5000_wp512_facets1.mask
2014-10-30 22:42:40 INFO imager::setoptions() Setting processing options
2014-10-30 22:42:40 INFO clean::::casa No model found. Making empty initial model : Ctimesteps_flg1_dt0-05-37.5_tp5_n0_it5000_wp512_facets1.model
2014-10-30 22:42:40 INFO Imager::imagecoordinates() Center frequency = 0.0535139 GHz, synthesized continuum bandwidth = 0.0355467 GHz
2014-10-30 22:42:40 INFO imager::clean() Using multifield Clark clean
2014-10-30 22:42:40 INFO imager::createFTMachine() Multiple fields or facets: transforms will be padded by a factor 1.2
2014-10-30 22:42:40 INFO imager::createFTMachine() Performing w-plane projection
2014-10-30 22:42:40 INFO imager::clean() Clean gain = 0.1, Niter = 5000, Threshold = 0 mJy
2014-10-30 22:42:40 INFO imager::clean() Starting deconvolution
2014-10-30 22:42:40 INFO WPConvFunc::findConvFunction W projection using 512 planes
2014-10-30 22:42:40 INFO WPConvFunc::findConvFunction Estimating maximum possible W = 1255.54 (wavelengths)
2014-10-30 22:42:40 INFO WPConvFunc::findConvFunction Typical wavelength = 8.34241 (m)
2014-10-30 22:42:40 INFO WPConvFunc::findConvFunction Scaling in W (at maximum W) = 0.00480825 wavelengths per pixel
2014-10-30 22:43:29 INFO WPConvFunc::findConvFunction Convolution support = [16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 108, 108, 108, 108, 108, 108, 108, 108, 108, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 116, 116, 116, 116, 116, 116, 116, 116, 116, 120, 120, 120, 120, 120, 120, 120, 120, 120, 124, 124, 124, 124, 124, 124, 124, 124, 128, 128, 128, 128, 128, 128, 128, 128, 128, 132, 132, 132, 132, 132, 132, 132, 132, 132, 136, 136, 136, 136, 136, 136, 136, 136, 140, 140, 140, 140, 140, 140, 140, 140, 144, 144, 144, 144, 144, 144, 144, 144, 148, 148, 148, 148, 148, 148] pixels in Fourier plane
2014-10-30 22:43:29 INFO WPConvFunc::findConvFunction Memory used in gridding function = 93 MB from maximum 122952 MB
2014-10-30 22:43:38 INFO ImageSkyModel::makeApproxPSFs bmaj: 213.31", bmin: 99.3263", bpa: 23.4091 deg
2014-10-30 22:43:38 INFO MFCleanImageSkyModel::solve *** Starting major cycle 0
2014-10-30 22:43:48 INFO MFCleanImageSkyModel::solve The minor-cycle threshold is MAX[ 0.95 x 0 , peak residual x 0.268685 ]
2014-10-30 22:43:48 INFO MFCleanImageSkyModel::solve Maximum residual = 4.30681, cleaning down to 1.15718
2014-10-30 22:43:48 INFO MFCleanImageSkyModel::solve Processing model 0
2014-10-30 22:43:48 INFO ClarkCleanModel::singleSolve Initial maximum residual: 4.30681
2014-10-30 22:43:48 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-30 22:43:48 INFO MFCleanImageSkyModel::solve Clean used 124 iterations to approach a threshhold of 1.15718
2014-10-30 22:43:48 INFO MFCleanImageSkyModel::solve 23.6527 Jy <- cleaned in this cycle for model 0 (Total flux : 23.6527Jy)
2014-10-30 22:43:48 INFO MFCleanImageSkyModel::solve *** Starting major cycle 1
2014-10-30 22:44:03 INFO MFCleanImageSkyModel::solve The minor-cycle threshold is MAX[ 0.95 x 0 , peak residual x 0.268685 ]
2014-10-30 22:44:03 INFO MFCleanImageSkyModel::solve Maximum residual = 1.23853, cleaning down to 0.332774
2014-10-30 22:44:03 INFO MFCleanImageSkyModel::solve Processing model 0
2014-10-30 22:44:03 INFO ClarkCleanModel::singleSolve Initial maximum residual: 1.23853
2014-10-30 22:44:03 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-30 22:44:03 INFO MFCleanImageSkyModel::solve Clean used 1026 iterations to approach a threshhold of 0.332774
2014-10-30 22:44:03 INFO MFCleanImageSkyModel::solve 46.3464 Jy <- cleaned in this cycle for model 0 (Total flux : 69.9991Jy)
2014-10-30 22:44:03 INFO MFCleanImageSkyModel::solve *** Starting major cycle 2
2014-10-30 22:44:19 INFO MFCleanImageSkyModel::solve The minor-cycle threshold is MAX[ 0.95 x 0 , peak residual x 0.268685 ]
2014-10-30 22:44:19 INFO MFCleanImageSkyModel::solve Maximum residual = 0.490826, cleaning down to 0.131878
2014-10-30 22:44:19 INFO MFCleanImageSkyModel::solve Processing model 0
2014-10-30 22:44:19 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.490826
2014-10-30 22:44:19 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-30 22:44:19 INFO MFCleanImageSkyModel::solve Clean used 5000 iterations to approach a threshhold of 0.131878
2014-10-30 22:44:19 INFO MFCleanImageSkyModel::solve 35.692 Jy <- cleaned in this cycle for model 0 (Total flux : 105.691Jy)
2014-10-30 22:44:35 INFO MFCleanImageSkyModel::solve Final maximum residual = 0.215828
2014-10-30 22:44:35 INFO MFCleanImageSkyModel::solve Model 0: max, min residuals = 0.201048, -0.215828 clean flux 105.691
2014-10-30 22:44:35 INFO imager::clean() Threshhold not reached yet.
2014-10-30 22:44:35 INFO imager::clean() Fitted beam used in restoration: 213.31 by 99.3263 (arcsec) at pa 23.4091 (deg)
2014-10-30 22:44:35 INFO imager::iClean() Restoring Image(s) with the clean-beam
2014-10-30 22:44:36 INFO clean::::casa ##### End Task: clean #####
2014-10-30 22:44:36 INFO clean::::casa+ ##########################################
2014-10-30 22:44:36 INFO imstat::::casa
2014-10-30 22:44:36 INFO imstat::::casa+ ##########################################
2014-10-30 22:44:36 INFO imstat::::casa+ ##### Begin Task: imstat #####
2014-10-30 22:44:36 INFO imstat::::casa imstat(imagename="Ctimesteps_flg1_dt0-05-37.5_tp5_n0_it5000_wp512_facets1.image",axes=-1,region="",box="",
2014-10-30 22:44:36 INFO imstat::::casa+ chans="",stokes="",listit=True,verbose=True,mask="",
2014-10-30 22:44:36 INFO imstat::::casa+ stretch=False,logfile="",append=True)
2014-10-30 22:44:36 INFO imstat::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-30 22:44:36 INFO imstat::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-30 22:44:36 INFO imstat::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-30 22:44:36 INFO imstat::image::statistics Determining stats for image Ctimesteps_flg1_dt0-05-37.5_tp5_n0_it5000_wp512_facets1.image
2014-10-30 22:44:36 INFO imstat::CasacRegionManager::fromBCS Set region from supplied region record
2014-10-30 22:44:36 INFO imstat::ImageRegion::fromRecord Selected bounding box :
2014-10-30 22:44:36 INFO imstat::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (09:55:27.893, +44.26.35.554, I, 53514099.32Hz to 08:40:38.526, +56.02.39.926, I, 53514099.32Hz)
2014-10-30 22:44:36 INFO imstat::ImageStatsCalculator::statistics Regions ---
2014-10-30 22:44:36 INFO imstat::ImageStatsCalculator::statistics -- bottom-left corner (pixel) [blc]: [0, 0, 0, 0]
2014-10-30 22:44:36 INFO imstat::ImageStatsCalculator::statistics -- top-right corner (pixel) [trc]: [1023, 1023, 0, 0]
2014-10-30 22:44:36 INFO imstat::ImageStatsCalculator::statistics -- bottom-left corner (world) [blcf]: 09:55:27.893, +44.26.35.554, I, 53514099.32Hz
2014-10-30 22:44:36 INFO imstat::ImageStatsCalculator::statistics -- top-right corner (world) [trcf]: 08:40:38.526, +56.02.39.926, I, 53514099.32Hz
2014-10-30 22:44:36 INFO imstat:::: Values ---
2014-10-30 22:44:36 INFO imstat:::: -- flux density [flux]: 98.4973 Jy
2014-10-30 22:44:36 INFO imstat:::: -- number of points [npts]: 1.04858e+06
2014-10-30 22:44:36 INFO imstat:::: -- maximum value [max]: 4.36552 Jy/beam
2014-10-30 22:44:36 INFO imstat:::: -- minimum value [min]: -0.476528 Jy/beam
2014-10-30 22:44:36 INFO imstat:::: -- position of max value (pixel) [maxpos]: [507, 724, 0, 0]
2014-10-30 22:44:36 INFO imstat:::: -- position of min value (pixel) [minpos]: [529, 74, 0, 0]
2014-10-30 22:44:36 INFO imstat:::: -- position of max value (world) [maxposf]: 09:23:00.339, +53.02.23.029, I, 53514099.32Hz
2014-10-30 22:44:36 INFO imstat:::: -- position of min value (world) [minposf]: 09:21:31.022, +45.37.00.166, I, 53514099.32Hz
2014-10-30 22:44:36 INFO imstat:::: -- Sum of pixel values [sum]: 1401.82 Jy/beam
2014-10-30 22:44:36 INFO imstat:::: -- Sum of squared pixel values [sumsq]: 4125.06 Jy/beam.Jy/beam
2014-10-30 22:44:36 INFO imstat:::: Statistics ---
2014-10-30 22:44:36 INFO imstat:::: -- Mean of the pixel values [mean]: 0.00133688 Jy/beam
2014-10-30 22:44:36 INFO imstat:::: -- Variance of the pixel values : 0.00393218 Jy/beam0
2014-10-30 22:44:36 INFO imstat:::: -- Standard deviation of the Mean [sigma]: 0.0627071 Jy/beam
2014-10-30 22:44:36 INFO imstat:::: -- Root mean square [rms]: 0.0627213 Jy/beam
2014-10-30 22:44:36 INFO imstat:::: -- Median of the pixel values [median]: -0.000755422 Jy/beam
2014-10-30 22:44:36 INFO imstat:::: -- Median of the deviations [medabsdevmed]: 0.0336394 Jy/beam
2014-10-30 22:44:36 INFO imstat:::: -- Quartile [quartile]: 0.0672845 Jy/beam
2014-10-30 22:44:36 INFO imstat::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-30 22:44:36 INFO imstat::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-30 22:44:36 INFO imstat::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-30 22:44:36 INFO imstat::ImageRegion::fromRecord Selected bounding box :
2014-10-30 22:44:36 INFO imstat::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (09:55:27.893, +44.26.35.554, I, 53514099.32Hz to 08:40:38.526, +56.02.39.926, I, 53514099.32Hz)
2014-10-30 22:44:36 INFO imstat::ImageStatsCalculator::statistics # Npts Sum Mean Rms Std dev Minimum Maximum
2014-10-30 22:44:36 INFO imstat::ImageStatsCalculator::statistics+ 1.048576e+06 1.401820e+03 1.336880e-03 6.272131e-02 6.270709e-02 -4.765278e-01 4.365523e+00
2014-10-30 22:44:36 INFO imstat::::casa ##### End Task: imstat #####
2014-10-30 22:44:36 INFO imstat::::casa+ ##########################################
2014-10-30 22:44:36 INFO clean::::casa
2014-10-30 22:44:36 INFO clean::::casa+ ##########################################
2014-10-30 22:44:36 INFO clean::::casa+ ##### Begin Task: clean #####
2014-10-30 22:44:36 INFO clean::::casa clean(vis="L85562_all_flagged.MS",imagename="Ctimesteps_flg1_dt0-05-37.5_tp6b_n0_it5000_wp512_facets1",outlierfile="",field="0",
2014-10-30 22:44:36 INFO clean::::casa+ spw="15~105",selectdata=True,timerange="2013/01/24/21:37:11.000000+0:05:37.5",uvrange="",antenna="",
2014-10-30 22:44:36 INFO clean::::casa+ scan="",observation="",intent="",mode="mfs",resmooth=False,
2014-10-30 22:44:36 INFO clean::::casa+ gridmode="widefield",wprojplanes=512,facets=1,cfcache="cfcache.dir",rotpainc=5.0,
2014-10-30 22:44:36 INFO clean::::casa+ painc=360.0,aterm=True,psterm=False,mterm=True,wbawp=False,
2014-10-30 22:44:36 INFO clean::::casa+ conjbeams=True,epjtable="",interpolation="linear",niter=5000,gain=0.1,
2014-10-30 22:44:36 INFO clean::::casa+ threshold="0.0mJy",psfmode="clark",imagermode="csclean",ftmachine="mosaic",mosweight=False,
2014-10-30 22:44:36 INFO clean::::casa+ scaletype="SAULT",multiscale=[0],negcomponent=-1,smallscalebias=0.6,interactive=False,
2014-10-30 22:44:36 INFO clean::::casa+ mask=[],nchan=-1,start=0,width=1,outframe="",
2014-10-30 22:44:36 INFO clean::::casa+ veltype="radio",imsize=[1024, 1024],cell="41.0710960679arcsec",phasecenter="",restfreq="",
2014-10-30 22:44:36 INFO clean::::casa+ stokes="I",weighting="natural",robust=0.0,uvtaper=False,outertaper=[''],
2014-10-30 22:44:36 INFO clean::::casa+ innertaper=['1.0'],modelimage="",restoringbeam=[''],pbcor=False,minpb=0.2,
2014-10-30 22:44:36 INFO clean::::casa+ usescratch=False,noise="1.0Jy",npixels=0,npercycle=100,cyclefactor=1.5,
2014-10-30 22:44:36 INFO clean::::casa+ cyclespeedup=-1,nterms=1,reffreq="",chaniter=False,flatnoise=True,
2014-10-30 22:44:36 INFO clean::::casa+ allowchunk=False)
2014-10-30 22:44:36 INFO clean::::casa nchan=-1 start=0 width=1
2014-10-30 22:44:36 INFO clean::::casa Use default channelization for clean
2014-10-30 22:44:36 INFO clean::::casa clean image: Ctimesteps_flg1_dt0-05-37.5_tp6b_n0_it5000_wp512_facets1
2014-10-30 22:44:36 INFO Imager::open() Opening MeasurementSet /home/mknapp/L85562_all_flagged.MS
2014-10-30 22:46:45 INFO clean::::casa FTMachine used is wproject
2014-10-30 22:46:46 INFO imager::data selection Performing selection on MeasurementSet : /home/mknapp/L85562_all_flagged.MS
2014-10-30 22:46:46 INFO imager::data selection Selecting on fields : 0
2014-10-30 22:46:46 INFO imager::data selection Selecting on spectral windows expression : 15~105
2014-10-30 22:46:46 INFO imager::data selection Selecting on time range : 2013/01/24/21:37:11.000000+0:05:37.5
2014-10-30 22:55:25 INFO imager::data selection Selected 2175082 out of 181964520 rows.
2014-10-30 22:55:25 INFO imager::data selection Selected: [1 chans in spw 15] [1 chans in spw 16] [1 chans in spw 17] [1 chans in spw 18] [1 chans in spw 19] [1 chans in spw 20] [1 chans in spw 21] [1 chans in spw 22] [1 chans in spw 23] [1 chans in spw 24] [1 chans in spw 25] [1 chans in spw 26] [1 chans in spw 27] [1 chans in spw 28] [1 chans in spw 29] [1 chans in spw 30] [1 chans in spw 31] [1 chans in spw 32] [1 chans in spw 33] [1 chans in spw 34] [1 chans in spw 35] [1 chans in spw 36] [1 chans in spw 37] [1 chans in spw 38] [1 chans in spw 39] [1 chans in spw 40] [1 chans in spw 41] [1 chans in spw 42] [1 chans in spw 43] [1 chans in spw 44] [1 chans in spw 45] [1 chans in spw 46] [1 chans in spw 47] [1 chans in spw 48] [1 chans in spw 49] [1 chans in spw 50] [1 chans in spw 51] [1 chans in spw 52] [1 chans in spw 53] [1 chans in spw 54] [1 chans in spw 55] [1 chans in spw 56] [1 chans in spw 57] [1 chans in spw 58] [1 chans in spw 59] [1 chans in spw 60] [1 chans in spw 61] [1 chans in spw 62] [1 chans in spw 63] [1 chans in spw 64] [1 chans in spw 65] [1 chans in spw 66] [1 chans in spw 67] [1 chans in spw 68] [1 chans in spw 69] [1 chans in spw 70] [1 chans in spw 71] [1 chans in spw 72] [1 chans in spw 73] [1 chans in spw 74] [1 chans in spw 75] [1 chans in spw 76] [1 chans in spw 77] [1 chans in spw 78] [1 chans in spw 79] [1 chans in spw 80] [1 chans in spw 81] [1 chans in spw 82] [1 chans in spw 83] [1 chans in spw 84] [1 chans in spw 85] [1 chans in spw 86] [1 chans in spw 87] [1 chans in spw 88] [1 chans in spw 89] [1 chans in spw 90] [1 chans in spw 91] [1 chans in spw 92] [1 chans in spw 93] [1 chans in spw 94] [1 chans in spw 95] [1 chans in spw 96] [1 chans in spw 97] [1 chans in spw 98] [1 chans in spw 99] [1 chans in spw 100] [1 chans in spw 101] [1 chans in spw 102] [1 chans in spw 103] [1 chans in spw 104] [1 chans in spw 105]
2014-10-30 22:55:25 INFO imager::defineimage() Defining image properties:nx=1024 ny=1024 cellx='41.0711arcsec' celly='41.0711arcsec' stokes=I' mode=MFS nchan=-1 start=0 step=1 spwids=[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] fieldid=0 facets=1 frame=5 distance='0'
2014-10-30 22:55:25 INFO imager::defineimage() phaseCenter='field-0 ' mStart='Radialvelocity: 0' qStep='0 '' mFreqStart='Frequency: 0
2014-10-30 22:55:26 INFO Imager::setvp() Setting voltage pattern parameters
2014-10-30 22:55:26 INFO Imager::setvp() Sky position tolerance is 180 degrees
2014-10-30 22:55:26 INFO Imager::setvp() Using system default voltage patterns for each telescope
2014-10-30 22:55:26 INFO imager::makeimage() Calculating image (without full skyequation)
2014-10-30 22:55:27 WARN imager::makeimage() (file /var/rpmbuild/BUILD/casapy422/casapy422-42.2.30986/code/synthesis/MeasurementEquations/Imager.cc, line 2880) The MS has multiple antenna diameters ..PB could be wrong
2014-10-30 22:55:28 INFO Imager::setvp() Setting voltage pattern parameters
2014-10-30 22:55:28 INFO imager::weight() Weighting MS: Imaging weights will be changed
2014-10-30 22:55:28 INFO imager::weight() Natural weighting
2014-10-30 22:55:28 INFO clean::::casa Used mask(s) : [''] to create mask image(s) : Ctimesteps_flg1_dt0-05-37.5_tp6b_n0_it5000_wp512_facets1.mask
2014-10-30 22:55:28 INFO imager::setoptions() Setting processing options
2014-10-30 22:55:28 INFO clean::::casa No model found. Making empty initial model : Ctimesteps_flg1_dt0-05-37.5_tp6b_n0_it5000_wp512_facets1.model
2014-10-30 22:55:28 INFO Imager::imagecoordinates() Center frequency = 0.0535139 GHz, synthesized continuum bandwidth = 0.0355467 GHz
2014-10-30 22:55:28 INFO imager::clean() Using multifield Clark clean
2014-10-30 22:55:28 INFO imager::createFTMachine() Multiple fields or facets: transforms will be padded by a factor 1.2
2014-10-30 22:55:28 INFO imager::createFTMachine() Performing w-plane projection
2014-10-30 22:55:28 INFO imager::clean() Clean gain = 0.1, Niter = 5000, Threshold = 0 mJy
2014-10-30 22:55:28 INFO imager::clean() Starting deconvolution
2014-10-30 22:55:28 INFO WPConvFunc::findConvFunction W projection using 512 planes
2014-10-30 22:55:28 INFO WPConvFunc::findConvFunction Estimating maximum possible W = 1255.54 (wavelengths)
2014-10-30 22:55:28 INFO WPConvFunc::findConvFunction Typical wavelength = 8.34241 (m)
2014-10-30 22:55:28 INFO WPConvFunc::findConvFunction Scaling in W (at maximum W) = 0.00480825 wavelengths per pixel
2014-10-30 22:56:17 INFO WPConvFunc::findConvFunction Convolution support = [16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 108, 108, 108, 108, 108, 108, 108, 108, 108, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 116, 116, 116, 116, 116, 116, 116, 116, 116, 120, 120, 120, 120, 120, 120, 120, 120, 120, 124, 124, 124, 124, 124, 124, 124, 124, 128, 128, 128, 128, 128, 128, 128, 128, 128, 132, 132, 132, 132, 132, 132, 132, 132, 132, 136, 136, 136, 136, 136, 136, 136, 136, 140, 140, 140, 140, 140, 140, 140, 140, 144, 144, 144, 144, 144, 144, 144, 144, 148, 148, 148, 148, 148, 148] pixels in Fourier plane
2014-10-30 22:56:17 INFO WPConvFunc::findConvFunction Memory used in gridding function = 93 MB from maximum 122952 MB
2014-10-30 22:56:26 INFO ImageSkyModel::makeApproxPSFs bmaj: 308.339", bmin: 266.178", bpa: -55.5846 deg
2014-10-30 22:56:26 INFO MFCleanImageSkyModel::solve *** Starting major cycle 0
2014-10-30 22:56:35 INFO MFCleanImageSkyModel::solve The minor-cycle threshold is MAX[ 0.95 x 0 , peak residual x 0.324215 ]
2014-10-30 22:56:35 INFO MFCleanImageSkyModel::solve Maximum residual = 5.88818, cleaning down to 1.90904
2014-10-30 22:56:35 INFO MFCleanImageSkyModel::solve Processing model 0
2014-10-30 22:56:35 INFO ClarkCleanModel::singleSolve Initial maximum residual: 5.88818
2014-10-30 22:56:35 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-30 22:56:35 INFO MFCleanImageSkyModel::solve Clean used 67 iterations to approach a threshhold of 1.90904
2014-10-30 22:56:35 INFO MFCleanImageSkyModel::solve 19.9106 Jy <- cleaned in this cycle for model 0 (Total flux : 19.9106Jy)
2014-10-30 22:56:35 INFO MFCleanImageSkyModel::solve *** Starting major cycle 1
2014-10-30 22:56:50 INFO MFCleanImageSkyModel::solve The minor-cycle threshold is MAX[ 0.95 x 0 , peak residual x 0.324215 ]
2014-10-30 22:56:50 INFO MFCleanImageSkyModel::solve Maximum residual = 1.99331, cleaning down to 0.64626
2014-10-30 22:56:50 INFO MFCleanImageSkyModel::solve Processing model 0
2014-10-30 22:56:50 INFO ClarkCleanModel::singleSolve Initial maximum residual: 1.99331
2014-10-30 22:56:50 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-30 22:56:50 INFO MFCleanImageSkyModel::solve Clean used 410 iterations to approach a threshhold of 0.64626
2014-10-30 22:56:50 INFO MFCleanImageSkyModel::solve 34.9472 Jy <- cleaned in this cycle for model 0 (Total flux : 54.8579Jy)
2014-10-30 22:56:50 INFO MFCleanImageSkyModel::solve *** Starting major cycle 2
2014-10-30 22:57:06 INFO MFCleanImageSkyModel::solve The minor-cycle threshold is MAX[ 0.95 x 0 , peak residual x 0.324215 ]
2014-10-30 22:57:06 INFO MFCleanImageSkyModel::solve Maximum residual = 0.778025, cleaning down to 0.252247