-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcasapy-20141031-013205.log
1623 lines (1623 loc) · 185 KB
/
casapy-20141031-013205.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-31 01:33:10 INFO casa::::casa ---
2014-10-31 01:33:10 INFO casa::::casa CASA Version 4.2.2 (prerelease r30986)
2014-10-31 01:33:10 INFO casa::::casa Tagged on: Thu, 21 Aug 2014
2014-10-31 01:35:20 INFO clean::::casa
2014-10-31 01:35:20 INFO clean::::casa+ ##########################################
2014-10-31 01:35:20 INFO clean::::casa+ ##### Begin Task: clean #####
2014-10-31 01:35:20 INFO clean::::casa clean(vis="L85562_all_flagged.MS",imagename="Ctimesteps_flg1_dt0-05-37.5_tp7b_n0_it5000_wp512_facets1",outlierfile="",field="0",
2014-10-31 01:35:20 INFO clean::::casa+ spw="15~105",selectdata=True,timerange="2013/01/24/21:37:11.000000+0:05:37.5",uvrange="",antenna="",
2014-10-31 01:35:20 INFO clean::::casa+ scan="",observation="",intent="",mode="mfs",resmooth=False,
2014-10-31 01:35:20 INFO clean::::casa+ gridmode="widefield",wprojplanes=512,facets=1,cfcache="cfcache.dir",rotpainc=5.0,
2014-10-31 01:35:20 INFO clean::::casa+ painc=360.0,aterm=True,psterm=False,mterm=True,wbawp=False,
2014-10-31 01:35:20 INFO clean::::casa+ conjbeams=True,epjtable="",interpolation="linear",niter=5000,gain=0.1,
2014-10-31 01:35:20 INFO clean::::casa+ threshold="0.0mJy",psfmode="clark",imagermode="csclean",ftmachine="mosaic",mosweight=False,
2014-10-31 01:35:20 INFO clean::::casa+ scaletype="SAULT",multiscale=[0],negcomponent=-1,smallscalebias=0.6,interactive=False,
2014-10-31 01:35:20 INFO clean::::casa+ mask=[],nchan=-1,start=0,width=1,outframe="",
2014-10-31 01:35:20 INFO clean::::casa+ veltype="radio",imsize=[1024, 1024],cell="41.0710960679arcsec",phasecenter="",restfreq="",
2014-10-31 01:35:20 INFO clean::::casa+ stokes="I",weighting="briggs",robust=0.5,uvtaper=False,outertaper=[''],
2014-10-31 01:35:20 INFO clean::::casa+ innertaper=['1.0'],modelimage="",restoringbeam=[''],pbcor=False,minpb=0.2,
2014-10-31 01:35:20 INFO clean::::casa+ usescratch=False,noise="1.0Jy",npixels=0,npercycle=100,cyclefactor=1.5,
2014-10-31 01:35:20 INFO clean::::casa+ cyclespeedup=-1,nterms=1,reffreq="",chaniter=False,flatnoise=True,
2014-10-31 01:35:20 INFO clean::::casa+ allowchunk=False)
2014-10-31 01:35:20 INFO clean::::casa nchan=-1 start=0 width=1
2014-10-31 01:35:20 INFO clean::::casa Use default channelization for clean
2014-10-31 01:35:20 INFO clean::::casa clean image: Ctimesteps_flg1_dt0-05-37.5_tp7b_n0_it5000_wp512_facets1
2014-10-31 01:35:20 INFO Imager::open() Opening MeasurementSet /home/mknapp/L85562_all_flagged.MS
2014-10-31 01:37:23 INFO clean::::casa FTMachine used is wproject
2014-10-31 01:37:23 INFO imager::data selection Performing selection on MeasurementSet : /home/mknapp/L85562_all_flagged.MS
2014-10-31 01:37:23 INFO imager::data selection Selecting on fields : 0
2014-10-31 01:37:23 INFO imager::data selection Selecting on spectral windows expression : 15~105
2014-10-31 01:37:23 INFO imager::data selection Selecting on time range : 2013/01/24/21:37:11.000000+0:05:37.5
2014-10-31 01:45:55 INFO imager::data selection Selected 2175082 out of 181964520 rows.
2014-10-31 01:45:55 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-31 01:45:56 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-31 01:45:56 INFO imager::defineimage() phaseCenter='field-0 ' mStart='Radialvelocity: 0' qStep='0 '' mFreqStart='Frequency: 0
2014-10-31 01:45:57 INFO Imager::setvp() Setting voltage pattern parameters
2014-10-31 01:45:57 INFO Imager::setvp() Sky position tolerance is 180 degrees
2014-10-31 01:45:57 INFO Imager::setvp() Using system default voltage patterns for each telescope
2014-10-31 01:45:57 INFO imager::makeimage() Calculating image (without full skyequation)
2014-10-31 01:45:57 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-31 01:46:00 INFO Imager::setvp() Setting voltage pattern parameters
2014-10-31 01:46:00 INFO imager::weight() Weighting MS: Imaging weights will be changed
2014-10-31 01:46:00 INFO imager::weight() Briggs weighting: sidelobes will be suppressed over full image
2014-10-31 01:46:02 INFO VisSetUtil::VisImagingWeight() Normal robustness, robust = 0.5
2014-10-31 01:46:02 INFO clean::::casa Used mask(s) : [''] to create mask image(s) : Ctimesteps_flg1_dt0-05-37.5_tp7b_n0_it5000_wp512_facets1.mask
2014-10-31 01:46:02 INFO imager::setoptions() Setting processing options
2014-10-31 01:46:02 INFO clean::::casa No model found. Making empty initial model : Ctimesteps_flg1_dt0-05-37.5_tp7b_n0_it5000_wp512_facets1.model
2014-10-31 01:46:03 INFO Imager::imagecoordinates() Center frequency = 0.0535139 GHz, synthesized continuum bandwidth = 0.0355467 GHz
2014-10-31 01:46:03 INFO imager::clean() Using multifield Clark clean
2014-10-31 01:46:03 INFO imager::createFTMachine() Multiple fields or facets: transforms will be padded by a factor 1.2
2014-10-31 01:46:03 INFO imager::createFTMachine() Performing w-plane projection
2014-10-31 01:46:03 INFO imager::clean() Clean gain = 0.1, Niter = 5000, Threshold = 0 mJy
2014-10-31 01:46:03 INFO imager::clean() Starting deconvolution
2014-10-31 01:46:03 INFO WPConvFunc::findConvFunction W projection using 512 planes
2014-10-31 01:46:03 INFO WPConvFunc::findConvFunction Estimating maximum possible W = 1255.54 (wavelengths)
2014-10-31 01:46:03 INFO WPConvFunc::findConvFunction Typical wavelength = 8.34241 (m)
2014-10-31 01:46:03 INFO WPConvFunc::findConvFunction Scaling in W (at maximum W) = 0.00480825 wavelengths per pixel
2014-10-31 01:47:23 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-31 01:47:23 INFO WPConvFunc::findConvFunction Memory used in gridding function = 93 MB from maximum 122952 MB
2014-10-31 01:47:34 INFO ImageSkyModel::makeApproxPSFs bmaj: 213.31", bmin: 99.3263", bpa: 23.4091 deg
2014-10-31 01:47:35 INFO MFCleanImageSkyModel::solve *** Starting major cycle 0
2014-10-31 01:47:45 INFO MFCleanImageSkyModel::solve The minor-cycle threshold is MAX[ 0.95 x 0 , peak residual x 0.268685 ]
2014-10-31 01:47:45 INFO MFCleanImageSkyModel::solve Maximum residual = 4.30681, cleaning down to 1.15718
2014-10-31 01:47:45 INFO MFCleanImageSkyModel::solve Processing model 0
2014-10-31 01:47:45 INFO ClarkCleanModel::singleSolve Initial maximum residual: 4.30681
2014-10-31 01:47:45 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 01:47:45 INFO MFCleanImageSkyModel::solve Clean used 124 iterations to approach a threshhold of 1.15718
2014-10-31 01:47:45 INFO MFCleanImageSkyModel::solve 23.6527 Jy <- cleaned in this cycle for model 0 (Total flux : 23.6527Jy)
2014-10-31 01:47:45 INFO MFCleanImageSkyModel::solve *** Starting major cycle 1
2014-10-31 01:48:02 INFO MFCleanImageSkyModel::solve The minor-cycle threshold is MAX[ 0.95 x 0 , peak residual x 0.268685 ]
2014-10-31 01:48:02 INFO MFCleanImageSkyModel::solve Maximum residual = 1.23853, cleaning down to 0.332774
2014-10-31 01:48:02 INFO MFCleanImageSkyModel::solve Processing model 0
2014-10-31 01:48:02 INFO ClarkCleanModel::singleSolve Initial maximum residual: 1.23853
2014-10-31 01:48:02 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 01:48:02 INFO MFCleanImageSkyModel::solve Clean used 1026 iterations to approach a threshhold of 0.332774
2014-10-31 01:48:02 INFO MFCleanImageSkyModel::solve 46.3464 Jy <- cleaned in this cycle for model 0 (Total flux : 69.9991Jy)
2014-10-31 01:48:02 INFO MFCleanImageSkyModel::solve *** Starting major cycle 2
2014-10-31 01:48:17 INFO MFCleanImageSkyModel::solve The minor-cycle threshold is MAX[ 0.95 x 0 , peak residual x 0.268685 ]
2014-10-31 01:48:17 INFO MFCleanImageSkyModel::solve Maximum residual = 0.490826, cleaning down to 0.131878
2014-10-31 01:48:17 INFO MFCleanImageSkyModel::solve Processing model 0
2014-10-31 01:48:17 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.490826
2014-10-31 01:48:18 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 01:48:18 INFO MFCleanImageSkyModel::solve Clean used 5000 iterations to approach a threshhold of 0.131878
2014-10-31 01:48:18 INFO MFCleanImageSkyModel::solve 35.692 Jy <- cleaned in this cycle for model 0 (Total flux : 105.691Jy)
2014-10-31 01:48:33 INFO MFCleanImageSkyModel::solve Final maximum residual = 0.215828
2014-10-31 01:48:33 INFO MFCleanImageSkyModel::solve Model 0: max, min residuals = 0.201048, -0.215828 clean flux 105.691
2014-10-31 01:48:33 INFO imager::clean() Threshhold not reached yet.
2014-10-31 01:48:33 INFO imager::clean() Fitted beam used in restoration: 213.31 by 99.3263 (arcsec) at pa 23.4091 (deg)
2014-10-31 01:48:34 INFO imager::iClean() Restoring Image(s) with the clean-beam
2014-10-31 01:48:35 INFO clean::::casa ##### End Task: clean #####
2014-10-31 01:48:35 INFO clean::::casa+ ##########################################
2014-10-31 01:48:35 INFO imstat::::casa
2014-10-31 01:48:35 INFO imstat::::casa+ ##########################################
2014-10-31 01:48:35 INFO imstat::::casa+ ##### Begin Task: imstat #####
2014-10-31 01:48:35 INFO imstat::::casa imstat(imagename="Ctimesteps_flg1_dt0-05-37.5_tp7b_n0_it5000_wp512_facets1.image",axes=-1,region="",box="",
2014-10-31 01:48:35 INFO imstat::::casa+ chans="",stokes="",listit=True,verbose=True,mask="",
2014-10-31 01:48:35 INFO imstat::::casa+ stretch=False,logfile="",append=True)
2014-10-31 01:48:35 INFO imstat::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-31 01:48:35 INFO imstat::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-31 01:48:35 INFO imstat::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-31 01:48:35 INFO imstat::image::statistics Determining stats for image Ctimesteps_flg1_dt0-05-37.5_tp7b_n0_it5000_wp512_facets1.image
2014-10-31 01:48:35 INFO imstat::CasacRegionManager::fromBCS Set region from supplied region record
2014-10-31 01:48:35 INFO imstat::ImageRegion::fromRecord Selected bounding box :
2014-10-31 01:48:35 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-31 01:48:35 INFO imstat::ImageStatsCalculator::statistics Regions ---
2014-10-31 01:48:35 INFO imstat::ImageStatsCalculator::statistics -- bottom-left corner (pixel) [blc]: [0, 0, 0, 0]
2014-10-31 01:48:35 INFO imstat::ImageStatsCalculator::statistics -- top-right corner (pixel) [trc]: [1023, 1023, 0, 0]
2014-10-31 01:48:35 INFO imstat::ImageStatsCalculator::statistics -- bottom-left corner (world) [blcf]: 09:55:27.893, +44.26.35.554, I, 53514099.32Hz
2014-10-31 01:48:35 INFO imstat::ImageStatsCalculator::statistics -- top-right corner (world) [trcf]: 08:40:38.526, +56.02.39.926, I, 53514099.32Hz
2014-10-31 01:48:35 INFO imstat:::: Values ---
2014-10-31 01:48:35 INFO imstat:::: -- flux density [flux]: 98.4972 Jy
2014-10-31 01:48:35 INFO imstat:::: -- number of points [npts]: 1.04858e+06
2014-10-31 01:48:35 INFO imstat:::: -- maximum value [max]: 4.36552 Jy/beam
2014-10-31 01:48:35 INFO imstat:::: -- minimum value [min]: -0.476528 Jy/beam
2014-10-31 01:48:35 INFO imstat:::: -- position of max value (pixel) [maxpos]: [507, 724, 0, 0]
2014-10-31 01:48:35 INFO imstat:::: -- position of min value (pixel) [minpos]: [529, 74, 0, 0]
2014-10-31 01:48:35 INFO imstat:::: -- position of max value (world) [maxposf]: 09:23:00.339, +53.02.23.029, I, 53514099.32Hz
2014-10-31 01:48:35 INFO imstat:::: -- position of min value (world) [minposf]: 09:21:31.022, +45.37.00.166, I, 53514099.32Hz
2014-10-31 01:48:35 INFO imstat:::: -- Sum of pixel values [sum]: 1401.82 Jy/beam
2014-10-31 01:48:35 INFO imstat:::: -- Sum of squared pixel values [sumsq]: 4125.06 Jy/beam.Jy/beam
2014-10-31 01:48:35 INFO imstat:::: Statistics ---
2014-10-31 01:48:35 INFO imstat:::: -- Mean of the pixel values [mean]: 0.00133688 Jy/beam
2014-10-31 01:48:35 INFO imstat:::: -- Variance of the pixel values : 0.00393218 Jy/beam0
2014-10-31 01:48:35 INFO imstat:::: -- Standard deviation of the Mean [sigma]: 0.0627071 Jy/beam
2014-10-31 01:48:35 INFO imstat:::: -- Root mean square [rms]: 0.0627213 Jy/beam
2014-10-31 01:48:35 INFO imstat:::: -- Median of the pixel values [median]: -0.000755436 Jy/beam
2014-10-31 01:48:35 INFO imstat:::: -- Median of the deviations [medabsdevmed]: 0.0336394 Jy/beam
2014-10-31 01:48:35 INFO imstat:::: -- Quartile [quartile]: 0.0672844 Jy/beam
2014-10-31 01:48:35 INFO imstat::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-31 01:48:35 INFO imstat::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-31 01:48:35 INFO imstat::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-31 01:48:35 INFO imstat::ImageRegion::fromRecord Selected bounding box :
2014-10-31 01:48:35 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-31 01:48:35 INFO imstat::ImageStatsCalculator::statistics # Npts Sum Mean Rms Std dev Minimum Maximum
2014-10-31 01:48:35 INFO imstat::ImageStatsCalculator::statistics+ 1.048576e+06 1.401820e+03 1.336879e-03 6.272131e-02 6.270709e-02 -4.765275e-01 4.365522e+00
2014-10-31 01:48:35 INFO imstat::::casa ##### End Task: imstat #####
2014-10-31 01:48:35 INFO imstat::::casa+ ##########################################
2014-10-31 01:48:35 INFO clean::::casa
2014-10-31 01:48:35 INFO clean::::casa+ ##########################################
2014-10-31 01:48:35 INFO clean::::casa+ ##### Begin Task: clean #####
2014-10-31 01:48:35 INFO clean::::casa clean(vis="L85562_all_flagged.MS",imagename="Ctimesteps_flg1_dt0-05-37.5_tp8_n0_it5000_wp512_facets3",outlierfile="",field="0",
2014-10-31 01:48:35 INFO clean::::casa+ spw="15~105",selectdata=True,timerange="2013/01/24/21:37:11.000000+0:05:37.5",uvrange="",antenna="",
2014-10-31 01:48:35 INFO clean::::casa+ scan="",observation="",intent="",mode="mfs",resmooth=False,
2014-10-31 01:48:35 INFO clean::::casa+ gridmode="widefield",wprojplanes=512,facets=3,cfcache="cfcache.dir",rotpainc=5.0,
2014-10-31 01:48:35 INFO clean::::casa+ painc=360.0,aterm=True,psterm=False,mterm=True,wbawp=False,
2014-10-31 01:48:35 INFO clean::::casa+ conjbeams=True,epjtable="",interpolation="linear",niter=5000,gain=0.1,
2014-10-31 01:48:35 INFO clean::::casa+ threshold="0.0mJy",psfmode="clark",imagermode="csclean",ftmachine="mosaic",mosweight=False,
2014-10-31 01:48:35 INFO clean::::casa+ scaletype="SAULT",multiscale=[0],negcomponent=-1,smallscalebias=0.6,interactive=False,
2014-10-31 01:48:35 INFO clean::::casa+ mask=[],nchan=-1,start=0,width=1,outframe="",
2014-10-31 01:48:35 INFO clean::::casa+ veltype="radio",imsize=[1024, 1024],cell="41.0710960679arcsec",phasecenter="",restfreq="",
2014-10-31 01:48:35 INFO clean::::casa+ stokes="I",weighting="natural",robust=0.0,uvtaper=False,outertaper=[''],
2014-10-31 01:48:35 INFO clean::::casa+ innertaper=['1.0'],modelimage="",restoringbeam=[''],pbcor=False,minpb=0.2,
2014-10-31 01:48:35 INFO clean::::casa+ usescratch=False,noise="1.0Jy",npixels=0,npercycle=100,cyclefactor=1.5,
2014-10-31 01:48:35 INFO clean::::casa+ cyclespeedup=-1,nterms=1,reffreq="",chaniter=False,flatnoise=True,
2014-10-31 01:48:35 INFO clean::::casa+ allowchunk=False)
2014-10-31 01:48:35 INFO clean::::casa nchan=-1 start=0 width=1
2014-10-31 01:48:35 INFO clean::::casa Use default channelization for clean
2014-10-31 01:48:35 INFO clean::::casa clean image: Ctimesteps_flg1_dt0-05-37.5_tp8_n0_it5000_wp512_facets3
2014-10-31 01:48:36 INFO Imager::open() Opening MeasurementSet /home/mknapp/L85562_all_flagged.MS
2014-10-31 01:50:40 INFO clean::::casa FTMachine used is wproject
2014-10-31 01:50:40 INFO imager::data selection Performing selection on MeasurementSet : /home/mknapp/L85562_all_flagged.MS
2014-10-31 01:50:40 INFO imager::data selection Selecting on fields : 0
2014-10-31 01:50:40 INFO imager::data selection Selecting on spectral windows expression : 15~105
2014-10-31 01:50:40 INFO imager::data selection Selecting on time range : 2013/01/24/21:37:11.000000+0:05:37.5
2014-10-31 01:59:14 INFO imager::data selection Selected 2175082 out of 181964520 rows.
2014-10-31 01:59: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] [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-31 01:59: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, 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=3 frame=5 distance='0'
2014-10-31 01:59:15 INFO imager::defineimage() phaseCenter='field-0 ' mStart='Radialvelocity: 0' qStep='0 '' mFreqStart='Frequency: 0
2014-10-31 01:59:16 INFO Imager::setvp() Setting voltage pattern parameters
2014-10-31 01:59:16 INFO Imager::setvp() Sky position tolerance is 180 degrees
2014-10-31 01:59:16 INFO Imager::setvp() Using system default voltage patterns for each telescope
2014-10-31 01:59:16 INFO imager::makeimage() Calculating image (without full skyequation)
2014-10-31 01:59:16 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-31 01:59:17 INFO Imager::setvp() Setting voltage pattern parameters
2014-10-31 01:59:17 INFO imager::weight() Weighting MS: Imaging weights will be changed
2014-10-31 01:59:17 INFO imager::weight() Natural weighting
2014-10-31 01:59:17 INFO clean::::casa Used mask(s) : [''] to create mask image(s) : Ctimesteps_flg1_dt0-05-37.5_tp8_n0_it5000_wp512_facets3.mask
2014-10-31 01:59:17 INFO imager::setoptions() Setting processing options
2014-10-31 01:59:17 INFO clean::::casa No model found. Making empty initial model : Ctimesteps_flg1_dt0-05-37.5_tp8_n0_it5000_wp512_facets3.model
2014-10-31 01:59:18 INFO Imager::imagecoordinates() Center frequency = 0.0535139 GHz, synthesized continuum bandwidth = 0.0355467 GHz
2014-10-31 01:59:18 INFO imager::clean() Using wide-field algorithm with Clark clean
2014-10-31 01:59:18 INFO imager::createFTMachine() Multiple fields or facets: transforms will be padded by a factor 1.2
2014-10-31 01:59:18 INFO imager::createFTMachine() Performing w-plane projection
2014-10-31 01:59:18 INFO imager::clean() Clean gain = 0.1, Niter = 5000, Threshold = 0 mJy
2014-10-31 01:59:18 INFO imager::clean() Starting deconvolution
2014-10-31 01:59:18 INFO WFCleanImageSkyModel::solve Starting wide-field clean with 9 facets and 0 outliers
2014-10-31 01:59:18 INFO WPConvFunc::findConvFunction W projection using 512 planes
2014-10-31 01:59:18 INFO WPConvFunc::findConvFunction Estimating maximum possible W = 1255.54 (wavelengths)
2014-10-31 01:59:18 INFO WPConvFunc::findConvFunction Typical wavelength = 8.34241 (m)
2014-10-31 01:59:18 INFO WPConvFunc::findConvFunction Scaling in W (at maximum W) = 0.00480825 wavelengths per pixel
2014-10-31 01:59:31 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, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 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, 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, 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, 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, 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, 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, 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, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32] pixels in Fourier plane
2014-10-31 01:59:31 INFO WPConvFunc::findConvFunction Memory used in gridding function = 5 MB from maximum 122952 MB
2014-10-31 02:00:30 INFO ImageSkyModel::makeApproxPSFs Model 1: bmaj: 312.586", bmin: 265.639", bpa: -54.6315 deg
2014-10-31 02:00:30 INFO ImageSkyModel::makeApproxPSFs Model 2: bmaj: 310.835", bmin: 264.576", bpa: -53.9762 deg
2014-10-31 02:00:30 INFO ImageSkyModel::makeApproxPSFs Model 3: bmaj: 308.954", bmin: 263.569", bpa: -53.1768 deg
2014-10-31 02:00:30 INFO ImageSkyModel::makeApproxPSFs Model 4: bmaj: 310.157", bmin: 266.885", bpa: -56.3091 deg
2014-10-31 02:00:30 INFO ImageSkyModel::makeApproxPSFs Model 5: bmaj: 308.122", bmin: 265.97", bpa: -55.6296 deg
2014-10-31 02:00:30 INFO ImageSkyModel::makeApproxPSFs Model 6: bmaj: 306.091", bmin: 265.186", bpa: -54.7564 deg
2014-10-31 02:00:30 INFO ImageSkyModel::makeApproxPSFs Model 7: bmaj: 305.52", bmin: 274.917", bpa: -59.4155 deg
2014-10-31 02:00:30 INFO ImageSkyModel::makeApproxPSFs Model 8: bmaj: 305.62", bmin: 266.969", bpa: -57.6698 deg
2014-10-31 02:00:30 INFO ImageSkyModel::makeApproxPSFs Model 9: bmaj: 303.513", bmin: 266.557", bpa: -56.7698 deg
2014-10-31 02:00:30 INFO MFCleanImageSkyModel::solve *** Starting major cycle 0
2014-10-31 02:01:31 INFO MFCleanImageSkyModel::solve The minor-cycle threshold is MAX[ 0.95 x 0 , peak residual x 0.35977 ]
2014-10-31 02:01:31 INFO MFCleanImageSkyModel::solve Maximum residual = 5.86493, cleaning down to 2.11002
2014-10-31 02:01:31 INFO MFCleanImageSkyModel::solve No need to clean model 0: peak residual below threshhold
2014-10-31 02:01:31 INFO MFCleanImageSkyModel::solve Processing model 1
2014-10-31 02:01:32 INFO ClarkCleanModel::singleSolve Initial maximum residual: 2.3107
2014-10-31 02:01:32 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:01:32 INFO MFCleanImageSkyModel::solve Clean used 4 iterations to approach a threshhold of 2.11002
2014-10-31 02:01:32 INFO MFCleanImageSkyModel::solve No need to clean model 2: peak residual below threshhold
2014-10-31 02:01:32 INFO MFCleanImageSkyModel::solve No need to clean model 3: peak residual below threshhold
2014-10-31 02:01:32 INFO MFCleanImageSkyModel::solve Processing model 4
2014-10-31 02:01:32 INFO ClarkCleanModel::singleSolve Initial maximum residual: 5.39212
2014-10-31 02:01:32 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:01:32 INFO MFCleanImageSkyModel::solve Clean used 24 iterations to approach a threshhold of 2.11002
2014-10-31 02:01:32 INFO MFCleanImageSkyModel::solve No need to clean model 5: peak residual below threshhold
2014-10-31 02:01:32 INFO MFCleanImageSkyModel::solve No need to clean model 6: peak residual below threshhold
2014-10-31 02:01:32 INFO MFCleanImageSkyModel::solve Processing model 7
2014-10-31 02:01:32 INFO ClarkCleanModel::singleSolve Initial maximum residual: 5.86731
2014-10-31 02:01:32 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:01:32 INFO MFCleanImageSkyModel::solve Clean used 26 iterations to approach a threshhold of 2.11002
2014-10-31 02:01:32 INFO MFCleanImageSkyModel::solve No need to clean model 8: peak residual below threshhold
2014-10-31 02:01:32 INFO MFCleanImageSkyModel::solve 0 Jy <- cleaned in this cycle for model 0 (Total flux : 0Jy)
2014-10-31 02:01:32 INFO MFCleanImageSkyModel::solve 0.88703 Jy <- cleaned in this cycle for model 1 (Total flux : 0.88703Jy)
2014-10-31 02:01:32 INFO MFCleanImageSkyModel::solve 0 Jy <- cleaned in this cycle for model 2 (Total flux : 0Jy)
2014-10-31 02:01:32 INFO MFCleanImageSkyModel::solve 0 Jy <- cleaned in this cycle for model 3 (Total flux : 0Jy)
2014-10-31 02:01:32 INFO MFCleanImageSkyModel::solve 7.72861 Jy <- cleaned in this cycle for model 4 (Total flux : 7.72861Jy)
2014-10-31 02:01:32 INFO MFCleanImageSkyModel::solve 0 Jy <- cleaned in this cycle for model 5 (Total flux : 0Jy)
2014-10-31 02:01:32 INFO MFCleanImageSkyModel::solve 0 Jy <- cleaned in this cycle for model 6 (Total flux : 0Jy)
2014-10-31 02:01:32 INFO MFCleanImageSkyModel::solve 8.53992 Jy <- cleaned in this cycle for model 7 (Total flux : 8.53992Jy)
2014-10-31 02:01:32 INFO MFCleanImageSkyModel::solve 0 Jy <- cleaned in this cycle for model 8 (Total flux : 0Jy)
2014-10-31 02:01:32 INFO MFCleanImageSkyModel::solve *** Starting major cycle 1
2014-10-31 02:03:31 INFO MFCleanImageSkyModel::solve The minor-cycle threshold is MAX[ 0.95 x 0 , peak residual x 0.35977 ]
2014-10-31 02:03:31 INFO MFCleanImageSkyModel::solve Maximum residual = 2.16909, cleaning down to 0.780374
2014-10-31 02:03:31 INFO MFCleanImageSkyModel::solve No need to clean model 0: peak residual below threshhold
2014-10-31 02:03:31 INFO MFCleanImageSkyModel::solve Processing model 1
2014-10-31 02:03:31 INFO ClarkCleanModel::singleSolve Initial maximum residual: 2.01954
2014-10-31 02:03:31 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:03:31 INFO MFCleanImageSkyModel::solve Clean used 49 iterations to approach a threshhold of 0.780374
2014-10-31 02:03:31 INFO MFCleanImageSkyModel::solve No need to clean model 2: peak residual below threshhold
2014-10-31 02:03:31 INFO MFCleanImageSkyModel::solve Processing model 3
2014-10-31 02:03:31 INFO ClarkCleanModel::singleSolve Initial maximum residual: 1.01791
2014-10-31 02:03:31 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:03:31 INFO MFCleanImageSkyModel::solve Clean used 3 iterations to approach a threshhold of 0.780374
2014-10-31 02:03:31 INFO MFCleanImageSkyModel::solve Processing model 4
2014-10-31 02:03:31 INFO ClarkCleanModel::singleSolve Initial maximum residual: 2.161
2014-10-31 02:03:31 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:03:31 INFO MFCleanImageSkyModel::solve Clean used 149 iterations to approach a threshhold of 0.780374
2014-10-31 02:03:31 INFO MFCleanImageSkyModel::solve Processing model 5
2014-10-31 02:03:31 INFO ClarkCleanModel::singleSolve Initial maximum residual: 1.76
2014-10-31 02:03:31 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:03:31 INFO MFCleanImageSkyModel::solve Clean used 18 iterations to approach a threshhold of 0.780374
2014-10-31 02:03:31 INFO MFCleanImageSkyModel::solve No need to clean model 6: peak residual below threshhold
2014-10-31 02:03:31 INFO MFCleanImageSkyModel::solve Processing model 7
2014-10-31 02:03:31 INFO ClarkCleanModel::singleSolve Initial maximum residual: 2.16997
2014-10-31 02:03:31 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:03:31 INFO MFCleanImageSkyModel::solve Clean used 83 iterations to approach a threshhold of 0.780374
2014-10-31 02:03:31 INFO MFCleanImageSkyModel::solve No need to clean model 8: peak residual below threshhold
2014-10-31 02:03:31 INFO MFCleanImageSkyModel::solve 0 Jy <- cleaned in this cycle for model 0 (Total flux : 0Jy)
2014-10-31 02:03:31 INFO MFCleanImageSkyModel::solve 5.59597 Jy <- cleaned in this cycle for model 1 (Total flux : 6.48301Jy)
2014-10-31 02:03:31 INFO MFCleanImageSkyModel::solve 0 Jy <- cleaned in this cycle for model 2 (Total flux : 0Jy)
2014-10-31 02:03:31 INFO MFCleanImageSkyModel::solve 0.277785 Jy <- cleaned in this cycle for model 3 (Total flux : 0.277785Jy)
2014-10-31 02:03:32 INFO MFCleanImageSkyModel::solve 14.5901 Jy <- cleaned in this cycle for model 4 (Total flux : 22.3187Jy)
2014-10-31 02:03:32 INFO MFCleanImageSkyModel::solve 1.96914 Jy <- cleaned in this cycle for model 5 (Total flux : 1.96914Jy)
2014-10-31 02:03:32 INFO MFCleanImageSkyModel::solve 0 Jy <- cleaned in this cycle for model 6 (Total flux : 0Jy)
2014-10-31 02:03:32 INFO MFCleanImageSkyModel::solve 7.39579 Jy <- cleaned in this cycle for model 7 (Total flux : 15.9357Jy)
2014-10-31 02:03:32 INFO MFCleanImageSkyModel::solve 0 Jy <- cleaned in this cycle for model 8 (Total flux : 0Jy)
2014-10-31 02:03:32 INFO MFCleanImageSkyModel::solve *** Starting major cycle 2
2014-10-31 02:05:31 INFO MFCleanImageSkyModel::solve The minor-cycle threshold is MAX[ 0.95 x 0 , peak residual x 0.35977 ]
2014-10-31 02:05:31 INFO MFCleanImageSkyModel::solve Maximum residual = 0.867558, cleaning down to 0.312121
2014-10-31 02:05:31 INFO MFCleanImageSkyModel::solve Processing model 0
2014-10-31 02:05:31 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.3411
2014-10-31 02:05:31 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:05:31 INFO MFCleanImageSkyModel::solve Clean used 9 iterations to approach a threshhold of 0.312121
2014-10-31 02:05:31 INFO MFCleanImageSkyModel::solve Processing model 1
2014-10-31 02:05:31 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.762215
2014-10-31 02:05:31 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:05:31 INFO MFCleanImageSkyModel::solve Clean used 197 iterations to approach a threshhold of 0.312121
2014-10-31 02:05:31 INFO MFCleanImageSkyModel::solve Processing model 2
2014-10-31 02:05:31 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.627862
2014-10-31 02:05:31 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:05:31 INFO MFCleanImageSkyModel::solve Clean used 29 iterations to approach a threshhold of 0.312121
2014-10-31 02:05:31 INFO MFCleanImageSkyModel::solve Processing model 3
2014-10-31 02:05:31 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.808828
2014-10-31 02:05:31 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:05:31 INFO MFCleanImageSkyModel::solve Clean used 133 iterations to approach a threshhold of 0.312121
2014-10-31 02:05:31 INFO MFCleanImageSkyModel::solve Processing model 4
2014-10-31 02:05:31 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.858648
2014-10-31 02:05:31 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:05:31 INFO MFCleanImageSkyModel::solve Clean used 936 iterations to approach a threshhold of 0.312121
2014-10-31 02:05:31 INFO MFCleanImageSkyModel::solve Processing model 5
2014-10-31 02:05:31 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.765611
2014-10-31 02:05:31 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:05:31 INFO MFCleanImageSkyModel::solve Clean used 237 iterations to approach a threshhold of 0.312121
2014-10-31 02:05:31 INFO MFCleanImageSkyModel::solve Processing model 6
2014-10-31 02:05:31 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.406306
2014-10-31 02:05:31 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:05:31 INFO MFCleanImageSkyModel::solve Clean used 23 iterations to approach a threshhold of 0.312121
2014-10-31 02:05:31 INFO MFCleanImageSkyModel::solve Processing model 7
2014-10-31 02:05:31 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.867909
2014-10-31 02:05:31 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:05:31 INFO MFCleanImageSkyModel::solve Clean used 252 iterations to approach a threshhold of 0.312121
2014-10-31 02:05:31 INFO MFCleanImageSkyModel::solve Processing model 8
2014-10-31 02:05:31 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.479869
2014-10-31 02:05:31 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:05:31 INFO MFCleanImageSkyModel::solve Clean used 51 iterations to approach a threshhold of 0.312121
2014-10-31 02:05:31 INFO MFCleanImageSkyModel::solve 0.224983 Jy <- cleaned in this cycle for model 0 (Total flux : 0.224983Jy)
2014-10-31 02:05:31 INFO MFCleanImageSkyModel::solve 2.76712 Jy <- cleaned in this cycle for model 1 (Total flux : 9.25012Jy)
2014-10-31 02:05:31 INFO MFCleanImageSkyModel::solve 0.982238 Jy <- cleaned in this cycle for model 2 (Total flux : 0.982238Jy)
2014-10-31 02:05:31 INFO MFCleanImageSkyModel::solve 2.69688 Jy <- cleaned in this cycle for model 3 (Total flux : 2.97467Jy)
2014-10-31 02:05:31 INFO MFCleanImageSkyModel::solve 12.6454 Jy <- cleaned in this cycle for model 4 (Total flux : 34.9641Jy)
2014-10-31 02:05:31 INFO MFCleanImageSkyModel::solve 7.02732 Jy <- cleaned in this cycle for model 5 (Total flux : 8.99646Jy)
2014-10-31 02:05:31 INFO MFCleanImageSkyModel::solve 0.17448 Jy <- cleaned in this cycle for model 6 (Total flux : 0.17448Jy)
2014-10-31 02:05:31 INFO MFCleanImageSkyModel::solve 6.17898 Jy <- cleaned in this cycle for model 7 (Total flux : 22.1147Jy)
2014-10-31 02:05:31 INFO MFCleanImageSkyModel::solve 1.58076 Jy <- cleaned in this cycle for model 8 (Total flux : 1.58076Jy)
2014-10-31 02:05:31 INFO MFCleanImageSkyModel::solve *** Starting major cycle 3
2014-10-31 02:07:30 INFO MFCleanImageSkyModel::solve The minor-cycle threshold is MAX[ 0.95 x 0 , peak residual x 0.35977 ]
2014-10-31 02:07:30 INFO MFCleanImageSkyModel::solve Maximum residual = 0.43904, cleaning down to 0.157953
2014-10-31 02:07:30 INFO MFCleanImageSkyModel::solve Processing model 0
2014-10-31 02:07:30 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.317265
2014-10-31 02:07:30 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:07:30 INFO MFCleanImageSkyModel::solve Clean used 511 iterations to approach a threshhold of 0.157953
2014-10-31 02:07:30 INFO MFCleanImageSkyModel::solve Processing model 1
2014-10-31 02:07:30 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.349523
2014-10-31 02:07:30 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:07:30 INFO MFCleanImageSkyModel::solve Clean used 1123 iterations to approach a threshhold of 0.157953
2014-10-31 02:07:30 INFO MFCleanImageSkyModel::solve Processing model 2
2014-10-31 02:07:30 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.280261
2014-10-31 02:07:30 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:07:30 INFO MFCleanImageSkyModel::solve Clean used 524 iterations to approach a threshhold of 0.157953
2014-10-31 02:07:30 INFO MFCleanImageSkyModel::solve Processing model 3
2014-10-31 02:07:30 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.363634
2014-10-31 02:07:30 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:07:30 INFO MFCleanImageSkyModel::solve Clean used 1003 iterations to approach a threshhold of 0.157953
2014-10-31 02:07:30 INFO MFCleanImageSkyModel::solve Processing model 4
2014-10-31 02:07:30 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.439244
2014-10-31 02:07:30 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:07:30 INFO MFCleanImageSkyModel::solve Clean used 2682 iterations to approach a threshhold of 0.157953
2014-10-31 02:07:30 INFO MFCleanImageSkyModel::solve Processing model 5
2014-10-31 02:07:30 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.3672
2014-10-31 02:07:30 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:07:30 INFO MFCleanImageSkyModel::solve Clean used 1193 iterations to approach a threshhold of 0.157953
2014-10-31 02:07:30 INFO MFCleanImageSkyModel::solve Processing model 6
2014-10-31 02:07:30 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.325065
2014-10-31 02:07:30 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:07:30 INFO MFCleanImageSkyModel::solve Clean used 582 iterations to approach a threshhold of 0.157953
2014-10-31 02:07:30 INFO MFCleanImageSkyModel::solve Processing model 7
2014-10-31 02:07:30 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.399469
2014-10-31 02:07:30 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:07:30 INFO MFCleanImageSkyModel::solve Clean used 1387 iterations to approach a threshhold of 0.157953
2014-10-31 02:07:30 INFO MFCleanImageSkyModel::solve Processing model 8
2014-10-31 02:07:30 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.272458
2014-10-31 02:07:30 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:07:30 INFO MFCleanImageSkyModel::solve Clean used 681 iterations to approach a threshhold of 0.157953
2014-10-31 02:07:30 INFO MFCleanImageSkyModel::solve 1.78619 Jy <- cleaned in this cycle for model 0 (Total flux : 2.01117Jy)
2014-10-31 02:07:30 INFO MFCleanImageSkyModel::solve -1.4001 Jy <- cleaned in this cycle for model 1 (Total flux : 7.85003Jy)
2014-10-31 02:07:30 INFO MFCleanImageSkyModel::solve 0.0561028 Jy <- cleaned in this cycle for model 2 (Total flux : 1.03834Jy)
2014-10-31 02:07:30 INFO MFCleanImageSkyModel::solve 5.325 Jy <- cleaned in this cycle for model 3 (Total flux : 8.29966Jy)
2014-10-31 02:07:30 INFO MFCleanImageSkyModel::solve 4.00487 Jy <- cleaned in this cycle for model 4 (Total flux : 38.969Jy)
2014-10-31 02:07:30 INFO MFCleanImageSkyModel::solve 2.47289 Jy <- cleaned in this cycle for model 5 (Total flux : 11.4693Jy)
2014-10-31 02:07:30 INFO MFCleanImageSkyModel::solve 0.815854 Jy <- cleaned in this cycle for model 6 (Total flux : 0.990334Jy)
2014-10-31 02:07:30 INFO MFCleanImageSkyModel::solve 2.33294 Jy <- cleaned in this cycle for model 7 (Total flux : 24.4476Jy)
2014-10-31 02:07:30 INFO MFCleanImageSkyModel::solve -0.606566 Jy <- cleaned in this cycle for model 8 (Total flux : 0.974192Jy)
2014-10-31 02:07:30 INFO MFCleanImageSkyModel::solve *** Starting major cycle 4
2014-10-31 02:09:30 INFO MFCleanImageSkyModel::solve The minor-cycle threshold is MAX[ 0.95 x 0 , peak residual x 0.35977 ]
2014-10-31 02:09:30 INFO MFCleanImageSkyModel::solve Maximum residual = 0.262005, cleaning down to 0.0942614
2014-10-31 02:09:30 INFO MFCleanImageSkyModel::solve Processing model 0
2014-10-31 02:09:30 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.211206
2014-10-31 02:09:30 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:09:30 INFO MFCleanImageSkyModel::solve Clean used 1734 iterations to approach a threshhold of 0.0942614
2014-10-31 02:09:30 INFO MFCleanImageSkyModel::solve Processing model 1
2014-10-31 02:09:30 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.231171
2014-10-31 02:09:30 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:09:30 INFO MFCleanImageSkyModel::solve Clean used 2990 iterations to approach a threshhold of 0.0942614
2014-10-31 02:09:30 INFO MFCleanImageSkyModel::solve Processing model 2
2014-10-31 02:09:30 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.213717
2014-10-31 02:09:30 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:09:30 INFO MFCleanImageSkyModel::solve Clean used 2013 iterations to approach a threshhold of 0.0942614
2014-10-31 02:09:30 INFO MFCleanImageSkyModel::solve Processing model 3
2014-10-31 02:09:30 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.24908
2014-10-31 02:09:30 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:09:30 INFO MFCleanImageSkyModel::solve Clean used 2592 iterations to approach a threshhold of 0.0942614
2014-10-31 02:09:30 INFO MFCleanImageSkyModel::solve Processing model 4
2014-10-31 02:09:30 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.254688
2014-10-31 02:09:30 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:09:30 INFO MFCleanImageSkyModel::solve Clean used 5000 iterations to approach a threshhold of 0.0942614
2014-10-31 02:09:30 INFO MFCleanImageSkyModel::solve Processing model 5
2014-10-31 02:09:30 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.22087
2014-10-31 02:09:30 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:09:30 INFO MFCleanImageSkyModel::solve Clean used 2580 iterations to approach a threshhold of 0.0942614
2014-10-31 02:09:30 INFO MFCleanImageSkyModel::solve Processing model 6
2014-10-31 02:09:30 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.24644
2014-10-31 02:09:30 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:09:30 INFO MFCleanImageSkyModel::solve Clean used 1657 iterations to approach a threshhold of 0.0942614
2014-10-31 02:09:30 INFO MFCleanImageSkyModel::solve Processing model 7
2014-10-31 02:09:30 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.262111
2014-10-31 02:09:30 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:09:30 INFO MFCleanImageSkyModel::solve Clean used 3318 iterations to approach a threshhold of 0.0942614
2014-10-31 02:09:30 INFO MFCleanImageSkyModel::solve Processing model 8
2014-10-31 02:09:30 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.19401
2014-10-31 02:09:30 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:09:30 INFO MFCleanImageSkyModel::solve Clean used 1846 iterations to approach a threshhold of 0.0942614
2014-10-31 02:09:30 INFO MFCleanImageSkyModel::solve -1.34534 Jy <- cleaned in this cycle for model 0 (Total flux : 0.665833Jy)
2014-10-31 02:09:30 INFO MFCleanImageSkyModel::solve 2.27366 Jy <- cleaned in this cycle for model 1 (Total flux : 10.1237Jy)
2014-10-31 02:09:30 INFO MFCleanImageSkyModel::solve -0.842971 Jy <- cleaned in this cycle for model 2 (Total flux : 0.195369Jy)
2014-10-31 02:09:30 INFO MFCleanImageSkyModel::solve 0.411001 Jy <- cleaned in this cycle for model 3 (Total flux : 8.71066Jy)
2014-10-31 02:09:30 INFO MFCleanImageSkyModel::solve 1.31203 Jy <- cleaned in this cycle for model 4 (Total flux : 40.281Jy)
2014-10-31 02:09:30 INFO MFCleanImageSkyModel::solve 1.7743 Jy <- cleaned in this cycle for model 5 (Total flux : 13.2436Jy)
2014-10-31 02:09:30 INFO MFCleanImageSkyModel::solve 3.96716 Jy <- cleaned in this cycle for model 6 (Total flux : 4.95749Jy)
2014-10-31 02:09:30 INFO MFCleanImageSkyModel::solve 0.496527 Jy <- cleaned in this cycle for model 7 (Total flux : 24.9442Jy)
2014-10-31 02:09:30 INFO MFCleanImageSkyModel::solve 2.34472 Jy <- cleaned in this cycle for model 8 (Total flux : 3.31891Jy)
2014-10-31 02:11:31 INFO MFCleanImageSkyModel::solve Final maximum residual = 0.389397
2014-10-31 02:11:31 INFO MFCleanImageSkyModel::solve Model 0: max, min residuals = 0.191743, -0.205589 clean flux 0.665833
2014-10-31 02:11:31 INFO MFCleanImageSkyModel::solve+ Model 1: max, min residuals = 0.213633, -0.35255 clean flux 10.1237
2014-10-31 02:11:31 INFO MFCleanImageSkyModel::solve+ Model 2: max, min residuals = 0.233746, -0.254943 clean flux 0.195369
2014-10-31 02:11:31 INFO MFCleanImageSkyModel::solve+ Model 3: max, min residuals = 0.28927, -0.249704 clean flux 8.71066
2014-10-31 02:11:31 INFO MFCleanImageSkyModel::solve+ Model 4: max, min residuals = 0.33398, -0.272624 clean flux 40.281
2014-10-31 02:11:31 INFO MFCleanImageSkyModel::solve+ Model 5: max, min residuals = 0.245106, -0.271076 clean flux 13.2436
2014-10-31 02:11:31 INFO MFCleanImageSkyModel::solve+ Model 6: max, min residuals = 0.221609, -0.241166 clean flux 4.95749
2014-10-31 02:11:31 INFO MFCleanImageSkyModel::solve+ Model 7: max, min residuals = 0.289419, -0.389397 clean flux 24.9442
2014-10-31 02:11:31 INFO MFCleanImageSkyModel::solve+ Model 8: max, min residuals = 0.209688, -0.229433 clean flux 3.31891
2014-10-31 02:11:31 INFO WFCleanImageSkyModel::solve Wide-field clean apparently failed to reach threshold
2014-10-31 02:11:31 INFO imager::clean() Threshhold not reached yet.
2014-10-31 02:11:31 INFO imager::clean() Fitted beam used in restoration: 312.586 by 265.639 (arcsec) at pa -54.6315 (deg)
2014-10-31 02:11:32 INFO imager::iClean() Restoring Image(s) with the clean-beam
2014-10-31 02:11:32 INFO clean::::casa ##### End Task: clean #####
2014-10-31 02:11:32 INFO clean::::casa+ ##########################################
2014-10-31 02:11:32 INFO imstat::::casa
2014-10-31 02:11:32 INFO imstat::::casa+ ##########################################
2014-10-31 02:11:32 INFO imstat::::casa+ ##### Begin Task: imstat #####
2014-10-31 02:11:32 INFO imstat::::casa imstat(imagename="Ctimesteps_flg1_dt0-05-37.5_tp8_n0_it5000_wp512_facets3.image",axes=-1,region="",box="",
2014-10-31 02:11:32 INFO imstat::::casa+ chans="",stokes="",listit=True,verbose=True,mask="",
2014-10-31 02:11:32 INFO imstat::::casa+ stretch=False,logfile="",append=True)
2014-10-31 02:11:32 INFO imstat::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-31 02:11:32 INFO imstat::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-31 02:11:32 INFO imstat::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-31 02:11:32 INFO imstat::image::statistics Determining stats for image Ctimesteps_flg1_dt0-05-37.5_tp8_n0_it5000_wp512_facets3.image
2014-10-31 02:11:32 INFO imstat::CasacRegionManager::fromBCS Set region from supplied region record
2014-10-31 02:11:32 INFO imstat::ImageRegion::fromRecord Selected bounding box :
2014-10-31 02:11:32 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-31 02:11:32 INFO imstat::ImageStatsCalculator::statistics Regions ---
2014-10-31 02:11:32 INFO imstat::ImageStatsCalculator::statistics -- bottom-left corner (pixel) [blc]: [0, 0, 0, 0]
2014-10-31 02:11:32 INFO imstat::ImageStatsCalculator::statistics -- top-right corner (pixel) [trc]: [1023, 1023, 0, 0]
2014-10-31 02:11:32 INFO imstat::ImageStatsCalculator::statistics -- bottom-left corner (world) [blcf]: 09:55:27.893, +44.26.35.554, I, 53514099.32Hz
2014-10-31 02:11:32 INFO imstat::ImageStatsCalculator::statistics -- top-right corner (world) [trcf]: 08:40:38.526, +56.02.39.926, I, 53514099.32Hz
2014-10-31 02:11:32 INFO imstat:::: Values ---
2014-10-31 02:11:32 INFO imstat:::: -- flux density [flux]: -nan Jy
2014-10-31 02:11:32 INFO imstat:::: -- number of points [npts]: 1.04858e+06
2014-10-31 02:11:32 INFO imstat:::: -- maximum value [max]: 2.86845e+38 Jy/beam
2014-10-31 02:11:32 INFO imstat:::: -- minimum value [min]: -2.4226e+38 Jy/beam
2014-10-31 02:11:32 INFO imstat:::: -- position of max value (pixel) [maxpos]: [210, 1023, 0, 0]
2014-10-31 02:11:32 INFO imstat:::: -- position of min value (pixel) [minpos]: [764, 1023, 0, 0]
2014-10-31 02:11:32 INFO imstat:::: -- position of max value (world) [maxposf]: 09:47:31.408, +56.18.53.286, I, 53514099.32Hz
2014-10-31 02:11:32 INFO imstat:::: -- position of min value (world) [minposf]: 09:01:50.356, +56.21.32.300, I, 53514099.32Hz
2014-10-31 02:11:32 INFO imstat:::: -- Sum of pixel values [sum]: -nan Jy/beam
2014-10-31 02:11:32 INFO imstat:::: -- Sum of squared pixel values [sumsq]: -nan Jy/beam.Jy/beam
2014-10-31 02:11:32 INFO imstat:::: Statistics ---
2014-10-31 02:11:32 INFO imstat:::: -- Mean of the pixel values [mean]: -nan Jy/beam
2014-10-31 02:11:32 INFO imstat:::: -- Variance of the pixel values : -nan Jy/beam0
2014-10-31 02:11:32 INFO imstat:::: -- Standard deviation of the Mean [sigma]: 0 Jy/beam
2014-10-31 02:11:32 INFO imstat:::: -- Root mean square [rms]: -nan Jy/beam
2014-10-31 02:11:32 INFO imstat:::: -- Median of the pixel values [median]: 0.00060525 Jy/beam
2014-10-31 02:11:32 INFO imstat:::: -- Median of the deviations [medabsdevmed]: 0.06202 Jy/beam
2014-10-31 02:11:32 INFO imstat:::: -- Quartile [quartile]: 0.124045 Jy/beam
2014-10-31 02:11:32 INFO imstat::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-31 02:11:32 INFO imstat::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-31 02:11:32 INFO imstat::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-31 02:11:32 INFO imstat::ImageRegion::fromRecord Selected bounding box :
2014-10-31 02:11:32 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-31 02:11:32 INFO imstat::ImageStatsCalculator::statistics # Npts Sum Mean Rms Std dev Minimum Maximum
2014-10-31 02:11:32 INFO imstat::ImageStatsCalculator::statistics+ 1.048576e+06 -nan -nan -nan 0.000000e+00 -2.422603e+38 2.868454e+38
2014-10-31 02:11:32 INFO imstat::::casa ##### End Task: imstat #####
2014-10-31 02:11:32 INFO imstat::::casa+ ##########################################
2014-10-31 02:11:32 INFO clean::::casa
2014-10-31 02:11:32 INFO clean::::casa+ ##########################################
2014-10-31 02:11:32 INFO clean::::casa+ ##### Begin Task: clean #####
2014-10-31 02:11:32 INFO clean::::casa clean(vis="L85562_all_flagged.MS",imagename="Ctimesteps_flg1_dt0-05-37.5_tp8b_n0_it5000_wp512_facets3",outlierfile="",field="0",
2014-10-31 02:11:32 INFO clean::::casa+ spw="15~105",selectdata=True,timerange="2013/01/24/21:37:11.000000+0:05:37.5",uvrange="",antenna="",
2014-10-31 02:11:32 INFO clean::::casa+ scan="",observation="",intent="",mode="mfs",resmooth=False,
2014-10-31 02:11:32 INFO clean::::casa+ gridmode="widefield",wprojplanes=512,facets=3,cfcache="cfcache.dir",rotpainc=5.0,
2014-10-31 02:11:32 INFO clean::::casa+ painc=360.0,aterm=True,psterm=False,mterm=True,wbawp=False,
2014-10-31 02:11:32 INFO clean::::casa+ conjbeams=True,epjtable="",interpolation="linear",niter=5000,gain=0.1,
2014-10-31 02:11:32 INFO clean::::casa+ threshold="0.0mJy",psfmode="clark",imagermode="csclean",ftmachine="mosaic",mosweight=False,
2014-10-31 02:11:32 INFO clean::::casa+ scaletype="SAULT",multiscale=[0],negcomponent=-1,smallscalebias=0.6,interactive=False,
2014-10-31 02:11:32 INFO clean::::casa+ mask=[],nchan=-1,start=0,width=1,outframe="",
2014-10-31 02:11:32 INFO clean::::casa+ veltype="radio",imsize=[1024, 1024],cell="41.0710960679arcsec",phasecenter="",restfreq="",
2014-10-31 02:11:32 INFO clean::::casa+ stokes="I",weighting="briggs",robust=0.5,uvtaper=False,outertaper=[''],
2014-10-31 02:11:32 INFO clean::::casa+ innertaper=['1.0'],modelimage="",restoringbeam=[''],pbcor=False,minpb=0.2,
2014-10-31 02:11:32 INFO clean::::casa+ usescratch=False,noise="1.0Jy",npixels=0,npercycle=100,cyclefactor=1.5,
2014-10-31 02:11:32 INFO clean::::casa+ cyclespeedup=-1,nterms=1,reffreq="",chaniter=False,flatnoise=True,
2014-10-31 02:11:32 INFO clean::::casa+ allowchunk=False)
2014-10-31 02:11:32 INFO clean::::casa nchan=-1 start=0 width=1
2014-10-31 02:11:32 INFO clean::::casa Use default channelization for clean
2014-10-31 02:11:32 INFO clean::::casa clean image: Ctimesteps_flg1_dt0-05-37.5_tp8b_n0_it5000_wp512_facets3
2014-10-31 02:11:33 INFO Imager::open() Opening MeasurementSet /home/mknapp/L85562_all_flagged.MS
2014-10-31 02:13:40 INFO clean::::casa FTMachine used is wproject
2014-10-31 02:13:40 INFO imager::data selection Performing selection on MeasurementSet : /home/mknapp/L85562_all_flagged.MS
2014-10-31 02:13:40 INFO imager::data selection Selecting on fields : 0
2014-10-31 02:13:40 INFO imager::data selection Selecting on spectral windows expression : 15~105
2014-10-31 02:13:40 INFO imager::data selection Selecting on time range : 2013/01/24/21:37:11.000000+0:05:37.5
2014-10-31 02:22:12 INFO imager::data selection Selected 2175082 out of 181964520 rows.
2014-10-31 02:22:12 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-31 02:22:12 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=3 frame=5 distance='0'
2014-10-31 02:22:12 INFO imager::defineimage() phaseCenter='field-0 ' mStart='Radialvelocity: 0' qStep='0 '' mFreqStart='Frequency: 0
2014-10-31 02:22:13 INFO Imager::setvp() Setting voltage pattern parameters
2014-10-31 02:22:13 INFO Imager::setvp() Sky position tolerance is 180 degrees
2014-10-31 02:22:13 INFO Imager::setvp() Using system default voltage patterns for each telescope
2014-10-31 02:22:13 INFO imager::makeimage() Calculating image (without full skyequation)
2014-10-31 02:22:13 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-31 02:22:15 INFO Imager::setvp() Setting voltage pattern parameters
2014-10-31 02:22:15 INFO imager::weight() Weighting MS: Imaging weights will be changed
2014-10-31 02:22:15 INFO imager::weight() Briggs weighting: sidelobes will be suppressed over full image
2014-10-31 02:22:17 INFO VisSetUtil::VisImagingWeight() Normal robustness, robust = 0.5
2014-10-31 02:22:17 INFO clean::::casa Used mask(s) : [''] to create mask image(s) : Ctimesteps_flg1_dt0-05-37.5_tp8b_n0_it5000_wp512_facets3.mask
2014-10-31 02:22:17 INFO imager::setoptions() Setting processing options
2014-10-31 02:22:17 INFO clean::::casa No model found. Making empty initial model : Ctimesteps_flg1_dt0-05-37.5_tp8b_n0_it5000_wp512_facets3.model
2014-10-31 02:22:18 INFO Imager::imagecoordinates() Center frequency = 0.0535139 GHz, synthesized continuum bandwidth = 0.0355467 GHz
2014-10-31 02:22:18 INFO imager::clean() Using wide-field algorithm with Clark clean
2014-10-31 02:22:18 INFO imager::createFTMachine() Multiple fields or facets: transforms will be padded by a factor 1.2
2014-10-31 02:22:18 INFO imager::createFTMachine() Performing w-plane projection
2014-10-31 02:22:18 INFO imager::clean() Clean gain = 0.1, Niter = 5000, Threshold = 0 mJy
2014-10-31 02:22:18 INFO imager::clean() Starting deconvolution
2014-10-31 02:22:18 INFO WFCleanImageSkyModel::solve Starting wide-field clean with 9 facets and 0 outliers
2014-10-31 02:22:18 INFO WPConvFunc::findConvFunction W projection using 512 planes
2014-10-31 02:22:18 INFO WPConvFunc::findConvFunction Estimating maximum possible W = 1255.54 (wavelengths)
2014-10-31 02:22:18 INFO WPConvFunc::findConvFunction Typical wavelength = 8.34241 (m)
2014-10-31 02:22:18 INFO WPConvFunc::findConvFunction Scaling in W (at maximum W) = 0.00480825 wavelengths per pixel
2014-10-31 02:22:26 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, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 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, 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, 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, 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, 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, 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, 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, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32] pixels in Fourier plane
2014-10-31 02:22:26 INFO WPConvFunc::findConvFunction Memory used in gridding function = 5 MB from maximum 122952 MB
2014-10-31 02:23:25 INFO ImageSkyModel::makeApproxPSFs Model 1: bmaj: 220.569", bmin: 94.6755", bpa: 23.4978 deg
2014-10-31 02:23:25 INFO ImageSkyModel::makeApproxPSFs Model 2: bmaj: 213.879", bmin: 99.9803", bpa: -157.552 deg
2014-10-31 02:23:25 INFO ImageSkyModel::makeApproxPSFs Model 3: bmaj: 215.783", bmin: 96.8667", bpa: -157.805 deg
2014-10-31 02:23:25 INFO ImageSkyModel::makeApproxPSFs Model 4: bmaj: 208.783", bmin: 103.084", bpa: -156.313 deg
2014-10-31 02:23:25 INFO ImageSkyModel::makeApproxPSFs Model 5: bmaj: 213.176", bmin: 99.1078", bpa: -156.703 deg
2014-10-31 02:23:25 INFO ImageSkyModel::makeApproxPSFs Model 6: bmaj: 216.953", bmin: 95.6638", bpa: -156.983 deg
2014-10-31 02:23:25 INFO ImageSkyModel::makeApproxPSFs Model 7: bmaj: 281.974", bmin: 90.1777", bpa: -58.3007 deg
2014-10-31 02:23:25 INFO ImageSkyModel::makeApproxPSFs Model 8: bmaj: 280.276", bmin: 89.5194", bpa: -57.7946 deg
2014-10-31 02:23:25 INFO ImageSkyModel::makeApproxPSFs Model 9: bmaj: 257.798", bmin: 94.3502", bpa: -52.3084 deg
2014-10-31 02:23:25 INFO MFCleanImageSkyModel::solve *** Starting major cycle 0
2014-10-31 02:24:25 INFO MFCleanImageSkyModel::solve The minor-cycle threshold is MAX[ 0.95 x 0 , peak residual x 0.292062 ]
2014-10-31 02:24:25 INFO MFCleanImageSkyModel::solve Maximum residual = 4.29395, cleaning down to 1.2541
2014-10-31 02:24:25 INFO MFCleanImageSkyModel::solve No need to clean model 0: peak residual below threshhold
2014-10-31 02:24:25 INFO MFCleanImageSkyModel::solve Processing model 1
2014-10-31 02:24:25 INFO ClarkCleanModel::singleSolve Initial maximum residual: 1.80304
2014-10-31 02:24:25 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:24:25 INFO MFCleanImageSkyModel::solve Clean used 13 iterations to approach a threshhold of 1.2541
2014-10-31 02:24:25 INFO MFCleanImageSkyModel::solve No need to clean model 2: peak residual below threshhold
2014-10-31 02:24:25 INFO MFCleanImageSkyModel::solve No need to clean model 3: peak residual below threshhold
2014-10-31 02:24:25 INFO MFCleanImageSkyModel::solve Processing model 4
2014-10-31 02:24:25 INFO ClarkCleanModel::singleSolve Initial maximum residual: 4.04592
2014-10-31 02:24:25 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:24:25 INFO MFCleanImageSkyModel::solve Clean used 47 iterations to approach a threshhold of 1.2541
2014-10-31 02:24:25 INFO MFCleanImageSkyModel::solve No need to clean model 5: peak residual below threshhold
2014-10-31 02:24:25 INFO MFCleanImageSkyModel::solve No need to clean model 6: peak residual below threshhold
2014-10-31 02:24:25 INFO MFCleanImageSkyModel::solve Processing model 7
2014-10-31 02:24:25 INFO ClarkCleanModel::singleSolve Initial maximum residual: 4.29647
2014-10-31 02:24:25 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:24:25 INFO MFCleanImageSkyModel::solve Clean used 47 iterations to approach a threshhold of 1.2541
2014-10-31 02:24:25 INFO MFCleanImageSkyModel::solve No need to clean model 8: peak residual below threshhold
2014-10-31 02:24:25 INFO MFCleanImageSkyModel::solve 0 Jy <- cleaned in this cycle for model 0 (Total flux : 0Jy)
2014-10-31 02:24:25 INFO MFCleanImageSkyModel::solve 1.95417 Jy <- cleaned in this cycle for model 1 (Total flux : 1.95417Jy)
2014-10-31 02:24:25 INFO MFCleanImageSkyModel::solve 0 Jy <- cleaned in this cycle for model 2 (Total flux : 0Jy)
2014-10-31 02:24:25 INFO MFCleanImageSkyModel::solve 0 Jy <- cleaned in this cycle for model 3 (Total flux : 0Jy)
2014-10-31 02:24:25 INFO MFCleanImageSkyModel::solve 9.65186 Jy <- cleaned in this cycle for model 4 (Total flux : 9.65186Jy)
2014-10-31 02:24:25 INFO MFCleanImageSkyModel::solve 0 Jy <- cleaned in this cycle for model 5 (Total flux : 0Jy)
2014-10-31 02:24:25 INFO MFCleanImageSkyModel::solve 0 Jy <- cleaned in this cycle for model 6 (Total flux : 0Jy)
2014-10-31 02:24:25 INFO MFCleanImageSkyModel::solve 9.83933 Jy <- cleaned in this cycle for model 7 (Total flux : 9.83933Jy)
2014-10-31 02:24:25 INFO MFCleanImageSkyModel::solve 0 Jy <- cleaned in this cycle for model 8 (Total flux : 0Jy)
2014-10-31 02:24:25 INFO MFCleanImageSkyModel::solve *** Starting major cycle 1
2014-10-31 02:26:25 INFO MFCleanImageSkyModel::solve The minor-cycle threshold is MAX[ 0.95 x 0 , peak residual x 0.292062 ]
2014-10-31 02:26:25 INFO MFCleanImageSkyModel::solve Maximum residual = 1.33151, cleaning down to 0.388882
2014-10-31 02:26:25 INFO MFCleanImageSkyModel::solve No need to clean model 0: peak residual below threshhold
2014-10-31 02:26:25 INFO MFCleanImageSkyModel::solve Processing model 1
2014-10-31 02:26:25 INFO ClarkCleanModel::singleSolve Initial maximum residual: 1.27134
2014-10-31 02:26:25 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:26:25 INFO MFCleanImageSkyModel::solve Clean used 111 iterations to approach a threshhold of 0.388882
2014-10-31 02:26:25 INFO MFCleanImageSkyModel::solve Processing model 2
2014-10-31 02:26:25 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.414528
2014-10-31 02:26:25 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:26:25 INFO MFCleanImageSkyModel::solve Clean used 1 iterations to approach a threshhold of 0.388882
2014-10-31 02:26:25 INFO MFCleanImageSkyModel::solve Processing model 3
2014-10-31 02:26:25 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.823972
2014-10-31 02:26:25 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:26:25 INFO MFCleanImageSkyModel::solve Clean used 26 iterations to approach a threshhold of 0.388882
2014-10-31 02:26:25 INFO MFCleanImageSkyModel::solve Processing model 4
2014-10-31 02:26:25 INFO ClarkCleanModel::singleSolve Initial maximum residual: 1.30731
2014-10-31 02:26:25 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:26:25 INFO MFCleanImageSkyModel::solve Clean used 384 iterations to approach a threshhold of 0.388882
2014-10-31 02:26:25 INFO MFCleanImageSkyModel::solve Processing model 5
2014-10-31 02:26:25 INFO ClarkCleanModel::singleSolve Initial maximum residual: 1.15058
2014-10-31 02:26:25 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:26:25 INFO MFCleanImageSkyModel::solve Clean used 66 iterations to approach a threshhold of 0.388882
2014-10-31 02:26:25 INFO MFCleanImageSkyModel::solve No need to clean model 6: peak residual below threshhold
2014-10-31 02:26:25 INFO MFCleanImageSkyModel::solve Processing model 7
2014-10-31 02:26:25 INFO ClarkCleanModel::singleSolve Initial maximum residual: 1.33229
2014-10-31 02:26:25 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:26:25 INFO MFCleanImageSkyModel::solve Clean used 185 iterations to approach a threshhold of 0.388882
2014-10-31 02:26:25 INFO MFCleanImageSkyModel::solve No need to clean model 8: peak residual below threshhold
2014-10-31 02:26:25 INFO MFCleanImageSkyModel::solve 0 Jy <- cleaned in this cycle for model 0 (Total flux : 0Jy)
2014-10-31 02:26:25 INFO MFCleanImageSkyModel::solve 6.39304 Jy <- cleaned in this cycle for model 1 (Total flux : 8.34721Jy)
2014-10-31 02:26:25 INFO MFCleanImageSkyModel::solve 0.0414528 Jy <- cleaned in this cycle for model 2 (Total flux : 0.0414528Jy)
2014-10-31 02:26:25 INFO MFCleanImageSkyModel::solve 1.34869 Jy <- cleaned in this cycle for model 3 (Total flux : 1.34869Jy)
2014-10-31 02:26:25 INFO MFCleanImageSkyModel::solve 20.3604 Jy <- cleaned in this cycle for model 4 (Total flux : 30.0123Jy)
2014-10-31 02:26:25 INFO MFCleanImageSkyModel::solve 3.59101 Jy <- cleaned in this cycle for model 5 (Total flux : 3.59101Jy)
2014-10-31 02:26:25 INFO MFCleanImageSkyModel::solve 0 Jy <- cleaned in this cycle for model 6 (Total flux : 0Jy)
2014-10-31 02:26:25 INFO MFCleanImageSkyModel::solve 8.383 Jy <- cleaned in this cycle for model 7 (Total flux : 18.2223Jy)
2014-10-31 02:26:25 INFO MFCleanImageSkyModel::solve 0 Jy <- cleaned in this cycle for model 8 (Total flux : 0Jy)
2014-10-31 02:26:25 INFO MFCleanImageSkyModel::solve *** Starting major cycle 2
2014-10-31 02:28:25 INFO MFCleanImageSkyModel::solve The minor-cycle threshold is MAX[ 0.95 x 0 , peak residual x 0.292062 ]
2014-10-31 02:28:25 INFO MFCleanImageSkyModel::solve Maximum residual = 0.461196, cleaning down to 0.134698
2014-10-31 02:28:25 INFO MFCleanImageSkyModel::solve Processing model 0
2014-10-31 02:28:25 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.201653
2014-10-31 02:28:25 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:28:25 INFO MFCleanImageSkyModel::solve Clean used 354 iterations to approach a threshhold of 0.134698
2014-10-31 02:28:25 INFO MFCleanImageSkyModel::solve Processing model 1
2014-10-31 02:28:25 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.416719
2014-10-31 02:28:25 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:28:25 INFO MFCleanImageSkyModel::solve Clean used 1734 iterations to approach a threshhold of 0.134698
2014-10-31 02:28:25 INFO MFCleanImageSkyModel::solve Processing model 2
2014-10-31 02:28:25 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.312143
2014-10-31 02:28:25 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:28:25 INFO MFCleanImageSkyModel::solve Clean used 328 iterations to approach a threshhold of 0.134698
2014-10-31 02:28:25 INFO MFCleanImageSkyModel::solve Processing model 3
2014-10-31 02:28:25 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.401263
2014-10-31 02:28:25 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:28:25 INFO MFCleanImageSkyModel::solve Clean used 1222 iterations to approach a threshhold of 0.134698
2014-10-31 02:28:25 INFO MFCleanImageSkyModel::solve Processing model 4
2014-10-31 02:28:25 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.435007
2014-10-31 02:28:25 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:28:25 INFO MFCleanImageSkyModel::solve Clean used 4715 iterations to approach a threshhold of 0.134698
2014-10-31 02:28:25 INFO MFCleanImageSkyModel::solve Processing model 5
2014-10-31 02:28:25 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.404541
2014-10-31 02:28:25 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:28:25 INFO MFCleanImageSkyModel::solve Clean used 1069 iterations to approach a threshhold of 0.134698
2014-10-31 02:28:25 INFO MFCleanImageSkyModel::solve Processing model 6
2014-10-31 02:28:25 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.274409
2014-10-31 02:28:25 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:28:25 INFO MFCleanImageSkyModel::solve Clean used 305 iterations to approach a threshhold of 0.134698
2014-10-31 02:28:25 INFO MFCleanImageSkyModel::solve Processing model 7
2014-10-31 02:28:25 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.461466
2014-10-31 02:28:25 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:28:25 INFO MFCleanImageSkyModel::solve Clean used 2300 iterations to approach a threshhold of 0.134698
2014-10-31 02:28:25 INFO MFCleanImageSkyModel::solve Processing model 8
2014-10-31 02:28:25 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.376242
2014-10-31 02:28:25 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:28:25 INFO MFCleanImageSkyModel::solve Clean used 487 iterations to approach a threshhold of 0.134698
2014-10-31 02:28:25 INFO MFCleanImageSkyModel::solve 1.31266 Jy <- cleaned in this cycle for model 0 (Total flux : 1.31266Jy)
2014-10-31 02:28:25 INFO MFCleanImageSkyModel::solve 4.06944 Jy <- cleaned in this cycle for model 1 (Total flux : 12.4167Jy)
2014-10-31 02:28:25 INFO MFCleanImageSkyModel::solve 1.97208 Jy <- cleaned in this cycle for model 2 (Total flux : 2.01353Jy)
2014-10-31 02:28:25 INFO MFCleanImageSkyModel::solve 5.87802 Jy <- cleaned in this cycle for model 3 (Total flux : 7.22671Jy)
2014-10-31 02:28:25 INFO MFCleanImageSkyModel::solve 18.305 Jy <- cleaned in this cycle for model 4 (Total flux : 48.3172Jy)
2014-10-31 02:28:25 INFO MFCleanImageSkyModel::solve 8.5753 Jy <- cleaned in this cycle for model 5 (Total flux : 12.1663Jy)
2014-10-31 02:28:25 INFO MFCleanImageSkyModel::solve 0.847173 Jy <- cleaned in this cycle for model 6 (Total flux : 0.847173Jy)
2014-10-31 02:28:25 INFO MFCleanImageSkyModel::solve 5.96913 Jy <- cleaned in this cycle for model 7 (Total flux : 24.1915Jy)
2014-10-31 02:28:25 INFO MFCleanImageSkyModel::solve 1.25088 Jy <- cleaned in this cycle for model 8 (Total flux : 1.25088Jy)
2014-10-31 02:28:25 INFO MFCleanImageSkyModel::solve *** Starting major cycle 3
2014-10-31 02:30:25 INFO MFCleanImageSkyModel::solve The minor-cycle threshold is MAX[ 0.95 x 0 , peak residual x 0.292062 ]
2014-10-31 02:30:25 INFO MFCleanImageSkyModel::solve Maximum residual = 0.261663, cleaning down to 0.0764219
2014-10-31 02:30:25 INFO MFCleanImageSkyModel::solve Processing model 0
2014-10-31 02:30:25 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.141038
2014-10-31 02:30:26 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:30:26 INFO MFCleanImageSkyModel::solve Clean used 4002 iterations to approach a threshhold of 0.0764219
2014-10-31 02:30:26 INFO MFCleanImageSkyModel::solve Processing model 1
2014-10-31 02:30:26 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.190669
2014-10-31 02:30:26 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:30:26 INFO MFCleanImageSkyModel::solve Clean used 5000 iterations to approach a threshhold of 0.0764219
2014-10-31 02:30:26 INFO MFCleanImageSkyModel::solve Processing model 2
2014-10-31 02:30:26 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.155235
2014-10-31 02:30:26 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:30:26 INFO MFCleanImageSkyModel::solve Clean used 4003 iterations to approach a threshhold of 0.0764219
2014-10-31 02:30:26 INFO MFCleanImageSkyModel::solve Processing model 3
2014-10-31 02:30:26 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.150496
2014-10-31 02:30:26 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:30:26 INFO MFCleanImageSkyModel::solve Clean used 5000 iterations to approach a threshhold of 0.0764219
2014-10-31 02:30:26 INFO MFCleanImageSkyModel::solve Processing model 4
2014-10-31 02:30:26 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.25521
2014-10-31 02:30:26 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:30:26 INFO MFCleanImageSkyModel::solve Clean used 5000 iterations to approach a threshhold of 0.0764219
2014-10-31 02:30:26 INFO MFCleanImageSkyModel::solve Processing model 5
2014-10-31 02:30:26 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.155711
2014-10-31 02:30:26 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:30:26 INFO MFCleanImageSkyModel::solve Clean used 5000 iterations to approach a threshhold of 0.0764219
2014-10-31 02:30:26 INFO MFCleanImageSkyModel::solve Processing model 6
2014-10-31 02:30:26 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.14453
2014-10-31 02:30:26 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:30:26 INFO MFCleanImageSkyModel::solve Clean used 3604 iterations to approach a threshhold of 0.0764219
2014-10-31 02:30:26 INFO MFCleanImageSkyModel::solve Processing model 7
2014-10-31 02:30:26 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.261817
2014-10-31 02:30:26 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:30:26 INFO MFCleanImageSkyModel::solve Clean used 5000 iterations to approach a threshhold of 0.0764219
2014-10-31 02:30:26 INFO MFCleanImageSkyModel::solve Processing model 8
2014-10-31 02:30:26 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.142465
2014-10-31 02:30:26 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:30:26 INFO MFCleanImageSkyModel::solve Clean used 5000 iterations to approach a threshhold of 0.0764219
2014-10-31 02:30:26 INFO MFCleanImageSkyModel::solve 2.07161 Jy <- cleaned in this cycle for model 0 (Total flux : 3.38427Jy)
2014-10-31 02:30:26 INFO MFCleanImageSkyModel::solve -1.75488 Jy <- cleaned in this cycle for model 1 (Total flux : 10.6618Jy)
2014-10-31 02:30:26 INFO MFCleanImageSkyModel::solve -0.0679313 Jy <- cleaned in this cycle for model 2 (Total flux : 1.9456Jy)
2014-10-31 02:30:26 INFO MFCleanImageSkyModel::solve 4.45777 Jy <- cleaned in this cycle for model 3 (Total flux : 11.6845Jy)
2014-10-31 02:30:26 INFO MFCleanImageSkyModel::solve 1.09624 Jy <- cleaned in this cycle for model 4 (Total flux : 49.4135Jy)
2014-10-31 02:30:26 INFO MFCleanImageSkyModel::solve 1.32881 Jy <- cleaned in this cycle for model 5 (Total flux : 13.4951Jy)
2014-10-31 02:30:26 INFO MFCleanImageSkyModel::solve 2.78819 Jy <- cleaned in this cycle for model 6 (Total flux : 3.63536Jy)
2014-10-31 02:30:26 INFO MFCleanImageSkyModel::solve 1.54116 Jy <- cleaned in this cycle for model 7 (Total flux : 25.7326Jy)
2014-10-31 02:30:26 INFO MFCleanImageSkyModel::solve -1.98167 Jy <- cleaned in this cycle for model 8 (Total flux : -0.730796Jy)
2014-10-31 02:32:27 INFO MFCleanImageSkyModel::solve Final maximum residual = 0.137085
2014-10-31 02:32:27 INFO MFCleanImageSkyModel::solve Model 0: max, min residuals = 0.0974373, -0.0887989 clean flux 3.38427
2014-10-31 02:32:27 INFO MFCleanImageSkyModel::solve+ Model 1: max, min residuals = 0.106994, -0.0994851 clean flux 10.6618
2014-10-31 02:32:27 INFO MFCleanImageSkyModel::solve+ Model 2: max, min residuals = 0.0962982, -0.088899 clean flux 1.9456
2014-10-31 02:32:27 INFO MFCleanImageSkyModel::solve+ Model 3: max, min residuals = 0.103237, -0.0963647 clean flux 11.6845
2014-10-31 02:32:27 INFO MFCleanImageSkyModel::solve+ Model 4: max, min residuals = 0.137085, -0.132084 clean flux 49.4135
2014-10-31 02:32:27 INFO MFCleanImageSkyModel::solve+ Model 5: max, min residuals = 0.0934004, -0.091136 clean flux 13.4951
2014-10-31 02:32:27 INFO MFCleanImageSkyModel::solve+ Model 6: max, min residuals = 0.0890591, -0.0884306 clean flux 3.63536
2014-10-31 02:32:27 INFO MFCleanImageSkyModel::solve+ Model 7: max, min residuals = 0.109572, -0.114663 clean flux 25.7326
2014-10-31 02:32:27 INFO MFCleanImageSkyModel::solve+ Model 8: max, min residuals = 0.0912141, -0.100045 clean flux -0.730796
2014-10-31 02:32:27 INFO WFCleanImageSkyModel::solve Wide-field clean apparently failed to reach threshold
2014-10-31 02:32:27 INFO imager::clean() Threshhold not reached yet.
2014-10-31 02:32:27 INFO imager::clean() Fitted beam used in restoration: 220.569 by 94.6755 (arcsec) at pa 23.4978 (deg)
2014-10-31 02:32:28 INFO imager::iClean() Restoring Image(s) with the clean-beam
2014-10-31 02:32:28 INFO clean::::casa ##### End Task: clean #####
2014-10-31 02:32:28 INFO clean::::casa+ ##########################################
2014-10-31 02:32:28 INFO imstat::::casa
2014-10-31 02:32:28 INFO imstat::::casa+ ##########################################
2014-10-31 02:32:28 INFO imstat::::casa+ ##### Begin Task: imstat #####
2014-10-31 02:32:28 INFO imstat::::casa imstat(imagename="Ctimesteps_flg1_dt0-05-37.5_tp8b_n0_it5000_wp512_facets3.image",axes=-1,region="",box="",
2014-10-31 02:32:28 INFO imstat::::casa+ chans="",stokes="",listit=True,verbose=True,mask="",
2014-10-31 02:32:28 INFO imstat::::casa+ stretch=False,logfile="",append=True)
2014-10-31 02:32:28 INFO imstat::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-31 02:32:28 INFO imstat::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-31 02:32:28 INFO imstat::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-31 02:32:28 INFO imstat::image::statistics Determining stats for image Ctimesteps_flg1_dt0-05-37.5_tp8b_n0_it5000_wp512_facets3.image
2014-10-31 02:32:28 INFO imstat::CasacRegionManager::fromBCS Set region from supplied region record
2014-10-31 02:32:28 INFO imstat::ImageRegion::fromRecord Selected bounding box :
2014-10-31 02:32:28 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-31 02:32:28 INFO imstat::ImageStatsCalculator::statistics Regions ---
2014-10-31 02:32:28 INFO imstat::ImageStatsCalculator::statistics -- bottom-left corner (pixel) [blc]: [0, 0, 0, 0]
2014-10-31 02:32:28 INFO imstat::ImageStatsCalculator::statistics -- top-right corner (pixel) [trc]: [1023, 1023, 0, 0]
2014-10-31 02:32:28 INFO imstat::ImageStatsCalculator::statistics -- bottom-left corner (world) [blcf]: 09:55:27.893, +44.26.35.554, I, 53514099.32Hz
2014-10-31 02:32:28 INFO imstat::ImageStatsCalculator::statistics -- top-right corner (world) [trcf]: 08:40:38.526, +56.02.39.926, I, 53514099.32Hz
2014-10-31 02:32:28 INFO imstat:::: Values ---
2014-10-31 02:32:28 INFO imstat:::: -- flux density [flux]: -nan Jy
2014-10-31 02:32:28 INFO imstat:::: -- number of points [npts]: 1.04858e+06
2014-10-31 02:32:28 INFO imstat:::: -- maximum value [max]: 3.19887e+38 Jy/beam
2014-10-31 02:32:28 INFO imstat:::: -- minimum value [min]: -1.39685e+38 Jy/beam
2014-10-31 02:32:28 INFO imstat:::: -- position of max value (pixel) [maxpos]: [416, 1023, 0, 0]
2014-10-31 02:32:28 INFO imstat:::: -- position of min value (pixel) [minpos]: [674, 1023, 0, 0]
2014-10-31 02:32:28 INFO imstat:::: -- position of max value (world) [maxposf]: 09:30:33.224, +56.26.44.224, I, 53514099.32Hz
2014-10-31 02:32:28 INFO imstat:::: -- position of min value (world) [minposf]: 09:09:15.182, +56.25.06.346, I, 53514099.32Hz
2014-10-31 02:32:28 INFO imstat:::: -- Sum of pixel values [sum]: -nan Jy/beam
2014-10-31 02:32:28 INFO imstat:::: -- Sum of squared pixel values [sumsq]: -nan Jy/beam.Jy/beam
2014-10-31 02:32:28 INFO imstat:::: Statistics ---
2014-10-31 02:32:28 INFO imstat:::: -- Mean of the pixel values [mean]: -nan Jy/beam
2014-10-31 02:32:28 INFO imstat:::: -- Variance of the pixel values : -nan Jy/beam0
2014-10-31 02:32:28 INFO imstat:::: -- Standard deviation of the Mean [sigma]: 0 Jy/beam
2014-10-31 02:32:28 INFO imstat:::: -- Root mean square [rms]: -nan Jy/beam
2014-10-31 02:32:28 INFO imstat:::: -- Median of the pixel values [median]: -1.14646e-06 Jy/beam
2014-10-31 02:32:28 INFO imstat:::: -- Median of the deviations [medabsdevmed]: 0.0258152 Jy/beam
2014-10-31 02:32:28 INFO imstat:::: -- Quartile [quartile]: 0.0516334 Jy/beam
2014-10-31 02:32:28 INFO imstat::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-31 02:32:28 INFO imstat::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-31 02:32:28 INFO imstat::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-31 02:32:28 INFO imstat::ImageRegion::fromRecord Selected bounding box :
2014-10-31 02:32:28 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-31 02:32:28 INFO imstat::ImageStatsCalculator::statistics # Npts Sum Mean Rms Std dev Minimum Maximum
2014-10-31 02:32:28 INFO imstat::ImageStatsCalculator::statistics+ 1.048576e+06 -nan -nan -nan 0.000000e+00 -1.396850e+38 3.198866e+38
2014-10-31 02:32:28 INFO imstat::::casa ##### End Task: imstat #####
2014-10-31 02:32:28 INFO imstat::::casa+ ##########################################
2014-10-31 02:32:28 INFO clean::::casa
2014-10-31 02:32:28 INFO clean::::casa+ ##########################################
2014-10-31 02:32:28 INFO clean::::casa+ ##### Begin Task: clean #####
2014-10-31 02:32:28 INFO clean::::casa clean(vis="L85562_all_flagged.MS",imagename="Ctimesteps_flg1_dt0-05-37.5_tp9_n0_it5000_wp512_facets5",outlierfile="",field="0",
2014-10-31 02:32:28 INFO clean::::casa+ spw="15~105",selectdata=True,timerange="2013/01/24/21:37:11.000000+0:05:37.5",uvrange="",antenna="",
2014-10-31 02:32:28 INFO clean::::casa+ scan="",observation="",intent="",mode="mfs",resmooth=False,
2014-10-31 02:32:28 INFO clean::::casa+ gridmode="widefield",wprojplanes=512,facets=5,cfcache="cfcache.dir",rotpainc=5.0,
2014-10-31 02:32:28 INFO clean::::casa+ painc=360.0,aterm=True,psterm=False,mterm=True,wbawp=False,
2014-10-31 02:32:28 INFO clean::::casa+ conjbeams=True,epjtable="",interpolation="linear",niter=5000,gain=0.1,
2014-10-31 02:32:28 INFO clean::::casa+ threshold="0.0mJy",psfmode="clark",imagermode="csclean",ftmachine="mosaic",mosweight=False,
2014-10-31 02:32:28 INFO clean::::casa+ scaletype="SAULT",multiscale=[0],negcomponent=-1,smallscalebias=0.6,interactive=False,
2014-10-31 02:32:28 INFO clean::::casa+ mask=[],nchan=-1,start=0,width=1,outframe="",
2014-10-31 02:32:28 INFO clean::::casa+ veltype="radio",imsize=[1024, 1024],cell="41.0710960679arcsec",phasecenter="",restfreq="",
2014-10-31 02:32:28 INFO clean::::casa+ stokes="I",weighting="natural",robust=0.0,uvtaper=False,outertaper=[''],
2014-10-31 02:32:28 INFO clean::::casa+ innertaper=['1.0'],modelimage="",restoringbeam=[''],pbcor=False,minpb=0.2,
2014-10-31 02:32:28 INFO clean::::casa+ usescratch=False,noise="1.0Jy",npixels=0,npercycle=100,cyclefactor=1.5,
2014-10-31 02:32:28 INFO clean::::casa+ cyclespeedup=-1,nterms=1,reffreq="",chaniter=False,flatnoise=True,
2014-10-31 02:32:28 INFO clean::::casa+ allowchunk=False)
2014-10-31 02:32:28 INFO clean::::casa nchan=-1 start=0 width=1
2014-10-31 02:32:28 INFO clean::::casa Use default channelization for clean
2014-10-31 02:32:28 INFO clean::::casa clean image: Ctimesteps_flg1_dt0-05-37.5_tp9_n0_it5000_wp512_facets5
2014-10-31 02:32:28 INFO Imager::open() Opening MeasurementSet /home/mknapp/L85562_all_flagged.MS
2014-10-31 02:34:33 INFO clean::::casa FTMachine used is wproject
2014-10-31 02:34:33 INFO imager::data selection Performing selection on MeasurementSet : /home/mknapp/L85562_all_flagged.MS
2014-10-31 02:34:33 INFO imager::data selection Selecting on fields : 0
2014-10-31 02:34:33 INFO imager::data selection Selecting on spectral windows expression : 15~105
2014-10-31 02:34:33 INFO imager::data selection Selecting on time range : 2013/01/24/21:37:11.000000+0:05:37.5
2014-10-31 02:43:08 INFO imager::data selection Selected 2175082 out of 181964520 rows.
2014-10-31 02:43:08 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-31 02:43:08 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=5 frame=5 distance='0'
2014-10-31 02:43:08 INFO imager::defineimage() phaseCenter='field-0 ' mStart='Radialvelocity: 0' qStep='0 '' mFreqStart='Frequency: 0
2014-10-31 02:43:09 INFO Imager::setvp() Setting voltage pattern parameters
2014-10-31 02:43:09 INFO Imager::setvp() Sky position tolerance is 180 degrees
2014-10-31 02:43:09 INFO Imager::setvp() Using system default voltage patterns for each telescope
2014-10-31 02:43:09 INFO imager::makeimage() Calculating image (without full skyequation)
2014-10-31 02:43:09 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-31 02:43:10 INFO Imager::setvp() Setting voltage pattern parameters
2014-10-31 02:43:10 INFO imager::weight() Weighting MS: Imaging weights will be changed
2014-10-31 02:43:10 INFO imager::weight() Natural weighting
2014-10-31 02:43:10 INFO clean::::casa Used mask(s) : [''] to create mask image(s) : Ctimesteps_flg1_dt0-05-37.5_tp9_n0_it5000_wp512_facets5.mask
2014-10-31 02:43:10 INFO imager::setoptions() Setting processing options
2014-10-31 02:43:11 INFO clean::::casa No model found. Making empty initial model : Ctimesteps_flg1_dt0-05-37.5_tp9_n0_it5000_wp512_facets5.model
2014-10-31 02:43:11 INFO Imager::imagecoordinates() Center frequency = 0.0535139 GHz, synthesized continuum bandwidth = 0.0355467 GHz
2014-10-31 02:43:11 INFO imager::clean() Using wide-field algorithm with Clark clean
2014-10-31 02:43:11 INFO imager::createFTMachine() Multiple fields or facets: transforms will be padded by a factor 1.2
2014-10-31 02:43:11 INFO imager::createFTMachine() Performing w-plane projection
2014-10-31 02:43:11 INFO imager::clean() Clean gain = 0.1, Niter = 5000, Threshold = 0 mJy
2014-10-31 02:43:11 INFO imager::clean() Starting deconvolution
2014-10-31 02:43:11 INFO WFCleanImageSkyModel::solve Starting wide-field clean with 25 facets and 0 outliers
2014-10-31 02:43:11 INFO WPConvFunc::findConvFunction W projection using 512 planes
2014-10-31 02:43:11 INFO WPConvFunc::findConvFunction Estimating maximum possible W = 1255.54 (wavelengths)
2014-10-31 02:43:11 INFO WPConvFunc::findConvFunction Typical wavelength = 8.34241 (m)
2014-10-31 02:43:11 INFO WPConvFunc::findConvFunction Scaling in W (at maximum W) = 0.00480825 wavelengths per pixel
2014-10-31 02:43:16 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, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 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, 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, 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, 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, 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] pixels in Fourier plane
2014-10-31 02:43:16 INFO WPConvFunc::findConvFunction Memory used in gridding function = 3 MB from maximum 122952 MB
2014-10-31 02:45:53 INFO ImageSkyModel::makeApproxPSFs Model 1: bmaj: 314.255", bmin: 266.108", bpa: -54.5039 deg
2014-10-31 02:45:53 INFO ImageSkyModel::makeApproxPSFs Model 2: bmaj: 312.964", bmin: 265.259", bpa: -54.1615 deg
2014-10-31 02:45:53 INFO ImageSkyModel::makeApproxPSFs Model 3: bmaj: 311.928", bmin: 264.593", bpa: -53.7641 deg
2014-10-31 02:45:53 INFO ImageSkyModel::makeApproxPSFs Model 4: bmaj: 310.877", bmin: 263.994", bpa: -53.3184 deg
2014-10-31 02:45:53 INFO ImageSkyModel::makeApproxPSFs Model 5: bmaj: 309.764", bmin: 263.395", bpa: -52.7951 deg
2014-10-31 02:45:53 INFO ImageSkyModel::makeApproxPSFs Model 6: bmaj: 312.825", bmin: 266.974", bpa: -55.4353 deg
2014-10-31 02:45:53 INFO ImageSkyModel::makeApproxPSFs Model 7: bmaj: 311.416", bmin: 266.137", bpa: -55.0902 deg
2014-10-31 02:45:53 INFO ImageSkyModel::makeApproxPSFs Model 8: bmaj: 310.302", bmin: 265.541", bpa: -54.676 deg
2014-10-31 02:45:53 INFO ImageSkyModel::makeApproxPSFs Model 9: bmaj: 309.188", bmin: 265.04", bpa: -54.2028 deg
2014-10-31 02:45:53 INFO ImageSkyModel::makeApproxPSFs Model 10: bmaj: 308.006", bmin: 264.496", bpa: -53.6475 deg
2014-10-31 02:45:53 INFO ImageSkyModel::makeApproxPSFs Model 11: bmaj: 311.518", bmin: 267.753", bpa: -56.4563 deg
2014-10-31 02:45:53 INFO ImageSkyModel::makeApproxPSFs Model 12: bmaj: 309.862", bmin: 266.864", bpa: -56.12 deg
2014-10-31 02:45:53 INFO ImageSkyModel::makeApproxPSFs Model 13: bmaj: 308.638", bmin: 266.321", bpa: -55.7031 deg
2014-10-31 02:45:53 INFO ImageSkyModel::makeApproxPSFs Model 14: bmaj: 307.498", bmin: 265.917", bpa: -55.2096 deg
2014-10-31 02:45:53 INFO ImageSkyModel::makeApproxPSFs Model 15: bmaj: 306.289", bmin: 265.447", bpa: -54.6223 deg
2014-10-31 02:45:53 INFO ImageSkyModel::makeApproxPSFs Model 16: bmaj: 310.394", bmin: 268.412", bpa: -57.6122 deg
2014-10-31 02:45:53 INFO ImageSkyModel::makeApproxPSFs Model 17: bmaj: 308.405", bmin: 267.458", bpa: -57.293 deg
2014-10-31 02:45:53 INFO ImageSkyModel::makeApproxPSFs Model 18: bmaj: 307.071", bmin: 266.967", bpa: -56.866 deg
2014-10-31 02:45:53 INFO ImageSkyModel::makeApproxPSFs Model 19: bmaj: 305.85", bmin: 266.634", bpa: -56.34 deg
2014-10-31 02:45:53 INFO ImageSkyModel::makeApproxPSFs Model 20: bmaj: 304.633", bmin: 266.324", bpa: -55.7357 deg
2014-10-31 02:45:53 INFO ImageSkyModel::makeApproxPSFs Model 21: bmaj: 306.545", bmin: 276.184", bpa: -60.2639 deg
2014-10-31 02:45:53 INFO ImageSkyModel::makeApproxPSFs Model 22: bmaj: 307.07", bmin: 267.856", bpa: -58.6245 deg
2014-10-31 02:45:53 INFO ImageSkyModel::makeApproxPSFs Model 23: bmaj: 305.716", bmin: 267.516", bpa: -58.2061 deg
2014-10-31 02:45:53 INFO ImageSkyModel::makeApproxPSFs Model 24: bmaj: 304.473", bmin: 267.34", bpa: -57.6882 deg
2014-10-31 02:45:53 INFO ImageSkyModel::makeApproxPSFs Model 25: bmaj: 303.244", bmin: 267.197", bpa: -57.0871 deg
2014-10-31 02:45:53 INFO MFCleanImageSkyModel::solve *** Starting major cycle 0
2014-10-31 02:48:33 INFO MFCleanImageSkyModel::solve The minor-cycle threshold is MAX[ 0.95 x 0 , peak residual x 0.36673 ]
2014-10-31 02:48:33 INFO MFCleanImageSkyModel::solve Maximum residual = 5.9059, cleaning down to 2.16587
2014-10-31 02:48:33 INFO MFCleanImageSkyModel::solve No need to clean model 0: peak residual below threshhold
2014-10-31 02:48:33 INFO MFCleanImageSkyModel::solve No need to clean model 1: peak residual below threshhold
2014-10-31 02:48:33 INFO MFCleanImageSkyModel::solve Processing model 2
2014-10-31 02:48:35 INFO ClarkCleanModel::singleSolve Initial maximum residual: 2.30372
2014-10-31 02:48:35 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:48:35 INFO MFCleanImageSkyModel::solve Clean used 1 iterations to approach a threshhold of 2.16587
2014-10-31 02:48:35 INFO MFCleanImageSkyModel::solve No need to clean model 3: peak residual below threshhold
2014-10-31 02:48:35 INFO MFCleanImageSkyModel::solve No need to clean model 4: peak residual below threshhold
2014-10-31 02:48:35 INFO MFCleanImageSkyModel::solve No need to clean model 5: peak residual below threshhold
2014-10-31 02:48:35 INFO MFCleanImageSkyModel::solve No need to clean model 6: peak residual below threshhold
2014-10-31 02:48:35 INFO MFCleanImageSkyModel::solve No need to clean model 7: peak residual below threshhold
2014-10-31 02:48:35 INFO MFCleanImageSkyModel::solve No need to clean model 8: peak residual below threshhold
2014-10-31 02:48:35 INFO MFCleanImageSkyModel::solve No need to clean model 9: peak residual below threshhold
2014-10-31 02:48:35 INFO MFCleanImageSkyModel::solve No need to clean model 10: peak residual below threshhold
2014-10-31 02:48:35 INFO MFCleanImageSkyModel::solve No need to clean model 11: peak residual below threshhold
2014-10-31 02:48:35 INFO MFCleanImageSkyModel::solve Processing model 12
2014-10-31 02:48:35 INFO ClarkCleanModel::singleSolve Initial maximum residual: 4.05269
2014-10-31 02:48:35 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:48:35 INFO MFCleanImageSkyModel::solve Clean used 8 iterations to approach a threshhold of 2.16587
2014-10-31 02:48:35 INFO MFCleanImageSkyModel::solve No need to clean model 13: peak residual below threshhold
2014-10-31 02:48:35 INFO MFCleanImageSkyModel::solve No need to clean model 14: peak residual below threshhold
2014-10-31 02:48:35 INFO MFCleanImageSkyModel::solve No need to clean model 15: peak residual below threshhold
2014-10-31 02:48:35 INFO MFCleanImageSkyModel::solve No need to clean model 16: peak residual below threshhold
2014-10-31 02:48:35 INFO MFCleanImageSkyModel::solve Processing model 17
2014-10-31 02:48:35 INFO ClarkCleanModel::singleSolve Initial maximum residual: 5.90679
2014-10-31 02:48:35 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:48:35 INFO MFCleanImageSkyModel::solve Clean used 31 iterations to approach a threshhold of 2.16587
2014-10-31 02:48:35 INFO MFCleanImageSkyModel::solve Processing model 18
2014-10-31 02:48:35 INFO ClarkCleanModel::singleSolve Initial maximum residual: 2.8871
2014-10-31 02:48:35 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:48:35 INFO MFCleanImageSkyModel::solve Clean used 4 iterations to approach a threshhold of 2.16587
2014-10-31 02:48:35 INFO MFCleanImageSkyModel::solve No need to clean model 19: peak residual below threshhold
2014-10-31 02:48:35 INFO MFCleanImageSkyModel::solve No need to clean model 20: peak residual below threshhold
2014-10-31 02:48:35 INFO MFCleanImageSkyModel::solve No need to clean model 21: peak residual below threshhold
2014-10-31 02:48:35 INFO MFCleanImageSkyModel::solve No need to clean model 22: peak residual below threshhold
2014-10-31 02:48:35 INFO MFCleanImageSkyModel::solve No need to clean model 23: peak residual below threshhold
2014-10-31 02:48:35 INFO MFCleanImageSkyModel::solve No need to clean model 24: peak residual below threshhold
2014-10-31 02:48:35 INFO MFCleanImageSkyModel::solve 0 Jy <- cleaned in this cycle for model 0 (Total flux : 0Jy)
2014-10-31 02:48:35 INFO MFCleanImageSkyModel::solve 0 Jy <- cleaned in this cycle for model 1 (Total flux : 0Jy)
2014-10-31 02:48:35 INFO MFCleanImageSkyModel::solve 0.230372 Jy <- cleaned in this cycle for model 2 (Total flux : 0.230372Jy)
2014-10-31 02:48:35 INFO MFCleanImageSkyModel::solve 0 Jy <- cleaned in this cycle for model 3 (Total flux : 0Jy)
2014-10-31 02:48:35 INFO MFCleanImageSkyModel::solve 0 Jy <- cleaned in this cycle for model 4 (Total flux : 0Jy)
2014-10-31 02:48:35 INFO MFCleanImageSkyModel::solve 0 Jy <- cleaned in this cycle for model 5 (Total flux : 0Jy)
2014-10-31 02:48:35 INFO MFCleanImageSkyModel::solve 0 Jy <- cleaned in this cycle for model 6 (Total flux : 0Jy)
2014-10-31 02:48:35 INFO MFCleanImageSkyModel::solve 0 Jy <- cleaned in this cycle for model 7 (Total flux : 0Jy)
2014-10-31 02:48:35 INFO MFCleanImageSkyModel::solve 0 Jy <- cleaned in this cycle for model 8 (Total flux : 0Jy)
2014-10-31 02:48:35 INFO MFCleanImageSkyModel::solve 0 Jy <- cleaned in this cycle for model 9 (Total flux : 0Jy)
2014-10-31 02:48:35 INFO MFCleanImageSkyModel::solve 0 Jy <- cleaned in this cycle for model 10 (Total flux : 0Jy)
2014-10-31 02:48:35 INFO MFCleanImageSkyModel::solve 0 Jy <- cleaned in this cycle for model 11 (Total flux : 0Jy)
2014-10-31 02:48:35 INFO MFCleanImageSkyModel::solve 2.38331 Jy <- cleaned in this cycle for model 12 (Total flux : 2.38331Jy)
2014-10-31 02:48:35 INFO MFCleanImageSkyModel::solve 0 Jy <- cleaned in this cycle for model 13 (Total flux : 0Jy)
2014-10-31 02:48:35 INFO MFCleanImageSkyModel::solve 0 Jy <- cleaned in this cycle for model 14 (Total flux : 0Jy)
2014-10-31 02:48:35 INFO MFCleanImageSkyModel::solve 0 Jy <- cleaned in this cycle for model 15 (Total flux : 0Jy)
2014-10-31 02:48:35 INFO MFCleanImageSkyModel::solve 0 Jy <- cleaned in this cycle for model 16 (Total flux : 0Jy)
2014-10-31 02:48:35 INFO MFCleanImageSkyModel::solve 10.8226 Jy <- cleaned in this cycle for model 17 (Total flux : 10.8226Jy)
2014-10-31 02:48:35 INFO MFCleanImageSkyModel::solve 1.02518 Jy <- cleaned in this cycle for model 18 (Total flux : 1.02518Jy)
2014-10-31 02:48:35 INFO MFCleanImageSkyModel::solve 0 Jy <- cleaned in this cycle for model 19 (Total flux : 0Jy)
2014-10-31 02:48:35 INFO MFCleanImageSkyModel::solve 0 Jy <- cleaned in this cycle for model 20 (Total flux : 0Jy)
2014-10-31 02:48:35 INFO MFCleanImageSkyModel::solve 0 Jy <- cleaned in this cycle for model 21 (Total flux : 0Jy)
2014-10-31 02:48:35 INFO MFCleanImageSkyModel::solve 0 Jy <- cleaned in this cycle for model 22 (Total flux : 0Jy)
2014-10-31 02:48:35 INFO MFCleanImageSkyModel::solve 0 Jy <- cleaned in this cycle for model 23 (Total flux : 0Jy)
2014-10-31 02:48:35 INFO MFCleanImageSkyModel::solve 0 Jy <- cleaned in this cycle for model 24 (Total flux : 0Jy)
2014-10-31 02:48:35 INFO MFCleanImageSkyModel::solve *** Starting major cycle 1
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve The minor-cycle threshold is MAX[ 0.95 x 0 , peak residual x 0.36673 ]
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve Maximum residual = 2.57549, cleaning down to 0.944509
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve No need to clean model 0: peak residual below threshhold
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve No need to clean model 1: peak residual below threshhold
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve Processing model 2
2014-10-31 02:53:57 INFO ClarkCleanModel::singleSolve Initial maximum residual: 2.19997
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve Clean used 14 iterations to approach a threshhold of 0.944509
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve No need to clean model 3: peak residual below threshhold
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve No need to clean model 4: peak residual below threshhold
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve No need to clean model 5: peak residual below threshhold
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve Processing model 6
2014-10-31 02:53:57 INFO ClarkCleanModel::singleSolve Initial maximum residual: 2.08019
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve Clean used 13 iterations to approach a threshhold of 0.944509
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve Processing model 7
2014-10-31 02:53:57 INFO ClarkCleanModel::singleSolve Initial maximum residual: 1.35191
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve Clean used 10 iterations to approach a threshhold of 0.944509
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve Processing model 8
2014-10-31 02:53:57 INFO ClarkCleanModel::singleSolve Initial maximum residual: 2.09642
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve Clean used 19 iterations to approach a threshhold of 0.944509
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve No need to clean model 9: peak residual below threshhold
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve No need to clean model 10: peak residual below threshhold
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve Processing model 11
2014-10-31 02:53:57 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.985869
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve Clean used 1 iterations to approach a threshhold of 0.944509
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve Processing model 12
2014-10-31 02:53:57 INFO ClarkCleanModel::singleSolve Initial maximum residual: 2.32718
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve Clean used 42 iterations to approach a threshhold of 0.944509
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve Processing model 13
2014-10-31 02:53:57 INFO ClarkCleanModel::singleSolve Initial maximum residual: 1.69882
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve Clean used 9 iterations to approach a threshhold of 0.944509
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve No need to clean model 14: peak residual below threshhold
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve No need to clean model 15: peak residual below threshhold
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve No need to clean model 16: peak residual below threshhold
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve Processing model 17
2014-10-31 02:53:57 INFO ClarkCleanModel::singleSolve Initial maximum residual: 2.57588
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve Clean used 83 iterations to approach a threshhold of 0.944509
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve Processing model 18
2014-10-31 02:53:57 INFO ClarkCleanModel::singleSolve Initial maximum residual: 2.22279
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve Clean used 23 iterations to approach a threshhold of 0.944509
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve No need to clean model 19: peak residual below threshhold
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve No need to clean model 20: peak residual below threshhold
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve No need to clean model 21: peak residual below threshhold
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve No need to clean model 22: peak residual below threshhold
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve No need to clean model 23: peak residual below threshhold
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve No need to clean model 24: peak residual below threshhold
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve 0 Jy <- cleaned in this cycle for model 0 (Total flux : 0Jy)
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve 0 Jy <- cleaned in this cycle for model 1 (Total flux : 0Jy)
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve 1.90204 Jy <- cleaned in this cycle for model 2 (Total flux : 2.13241Jy)
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve 0 Jy <- cleaned in this cycle for model 3 (Total flux : 0Jy)
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve 0 Jy <- cleaned in this cycle for model 4 (Total flux : 0Jy)
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve 0 Jy <- cleaned in this cycle for model 5 (Total flux : 0Jy)
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve 1.77365 Jy <- cleaned in this cycle for model 6 (Total flux : 1.77365Jy)
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve 1.11494 Jy <- cleaned in this cycle for model 7 (Total flux : 1.11494Jy)
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve 2.75301 Jy <- cleaned in this cycle for model 8 (Total flux : 2.75301Jy)
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve 0 Jy <- cleaned in this cycle for model 9 (Total flux : 0Jy)
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve 0 Jy <- cleaned in this cycle for model 10 (Total flux : 0Jy)
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve 0.0985869 Jy <- cleaned in this cycle for model 11 (Total flux : 0.0985869Jy)
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve 4.52522 Jy <- cleaned in this cycle for model 12 (Total flux : 6.90853Jy)
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve 1.1396 Jy <- cleaned in this cycle for model 13 (Total flux : 1.1396Jy)
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve 0 Jy <- cleaned in this cycle for model 14 (Total flux : 0Jy)
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve 0 Jy <- cleaned in this cycle for model 15 (Total flux : 0Jy)
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve 0 Jy <- cleaned in this cycle for model 16 (Total flux : 0Jy)
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve 7.75591 Jy <- cleaned in this cycle for model 17 (Total flux : 18.5786Jy)
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve 2.69172 Jy <- cleaned in this cycle for model 18 (Total flux : 3.71691Jy)
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve 0 Jy <- cleaned in this cycle for model 19 (Total flux : 0Jy)
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve 0 Jy <- cleaned in this cycle for model 20 (Total flux : 0Jy)
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve 0 Jy <- cleaned in this cycle for model 21 (Total flux : 0Jy)
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve 0 Jy <- cleaned in this cycle for model 22 (Total flux : 0Jy)
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve 0 Jy <- cleaned in this cycle for model 23 (Total flux : 0Jy)
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve 0 Jy <- cleaned in this cycle for model 24 (Total flux : 0Jy)
2014-10-31 02:53:57 INFO MFCleanImageSkyModel::solve *** Starting major cycle 2
2014-10-31 02:59:20 INFO MFCleanImageSkyModel::solve The minor-cycle threshold is MAX[ 0.95 x 0 , peak residual x 0.36673 ]
2014-10-31 02:59:20 INFO MFCleanImageSkyModel::solve Maximum residual = 1.13639, cleaning down to 0.416747
2014-10-31 02:59:20 INFO MFCleanImageSkyModel::solve No need to clean model 0: peak residual below threshhold
2014-10-31 02:59:20 INFO MFCleanImageSkyModel::solve No need to clean model 1: peak residual below threshhold
2014-10-31 02:59:20 INFO MFCleanImageSkyModel::solve Processing model 2
2014-10-31 02:59:20 INFO ClarkCleanModel::singleSolve Initial maximum residual: 0.92117
2014-10-31 02:59:20 INFO MFCleanImageSkyModel::solve Finished Clark clean inner cycle
2014-10-31 02:59:20 INFO MFCleanImageSkyModel::solve Clean used 33 iterations to approach a threshhold of 0.416747
2014-10-31 02:59:20 INFO MFCleanImageSkyModel::solve No need to clean model 3: peak residual below threshhold
2014-10-31 02:59:20 INFO MFCleanImageSkyModel::solve No need to clean model 4: peak residual below threshhold