-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcasapy-20141014-160510.log
3056 lines (3056 loc) · 378 KB
/
casapy-20141014-160510.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-14 16:06:15 INFO casa::::casa ---
2014-10-14 16:06:15 INFO casa::::casa CASA Version 4.2.0 (stable r27479)
2014-10-14 16:06:15 INFO casa::::casa Tagged on: Mon, 09 Sep 2013
2014-10-14 16:07:05 INFO simple_cluster::check_host_resources::casa Host govcloud-128-149-57-249, Number of cores 32, Memory available 244003MB, CPU capacity available 100.0%
2014-10-14 16:07:05 INFO simple_cluster::config_cluster::casa Will deploy up to 15 engines at node govcloud-128-149-57-249
2014-10-14 16:07:05 INFO simple_cluster::config_cluster::casa Will use up to 219603MB of memory at node govcloud-128-149-57-249
2014-10-14 16:07:05 INFO simple_cluster::config_cluster::casa Required memory per engine 4096.0MB allows to deploy up to 54 engines at node govcloud-128-149-57-249
2014-10-14 16:07:05 INFO simple_cluster::config_cluster::casa Cap number of engines deployed at node govcloud-128-149-57-249 from 54 to 15 in order to meet maximum number of engines constraint
2014-10-14 16:07:05 WARN simple_cluster::config_cluster::casa Node config should be at least: 'hostname, numengine, workdir'
2014-10-14 16:07:05 WARN simple_cluster::config_cluster::casa The following entry will be ignored:
2014-10-14 16:07:07 INFO parallel_go::start_controller::casa Controller 7972 started
2014-10-14 16:07:22 INFO parallel_go::start_engine::casa start engine 1 on govcloud-128-149-57-249
2014-10-14 16:07:23 INFO parallel_go::start_engine::casa start engine 2 on govcloud-128-149-57-249
2014-10-14 16:07:23 INFO parallel_go::start_engine::casa start engine 3 on govcloud-128-149-57-249
2014-10-14 16:07:23 INFO parallel_go::start_engine::casa start engine 4 on govcloud-128-149-57-249
2014-10-14 16:07:23 INFO parallel_go::start_engine::casa start engine 5 on govcloud-128-149-57-249
2014-10-14 16:07:24 INFO parallel_go::start_engine::casa start engine 6 on govcloud-128-149-57-249
2014-10-14 16:07:24 INFO parallel_go::start_engine::casa start engine 7 on govcloud-128-149-57-249
2014-10-14 16:07:24 INFO parallel_go::start_engine::casa start engine 8 on govcloud-128-149-57-249
2014-10-14 16:07:25 INFO parallel_go::start_engine::casa start engine 9 on govcloud-128-149-57-249
2014-10-14 16:07:25 INFO parallel_go::start_engine::casa start engine 10 on govcloud-128-149-57-249
2014-10-14 16:07:25 INFO parallel_go::start_engine::casa start engine 11 on govcloud-128-149-57-249
2014-10-14 16:07:25 INFO parallel_go::start_engine::casa start engine 12 on govcloud-128-149-57-249
2014-10-14 16:07:26 INFO parallel_go::start_engine::casa start engine 13 on govcloud-128-149-57-249
2014-10-14 16:07:26 INFO parallel_go::start_engine::casa start engine 14 on govcloud-128-149-57-249
2014-10-14 16:07:26 INFO parallel_go::start_engine::casa start engine 15 on govcloud-128-149-57-249
2014-10-14 16:07:29 INFO parallel_go::init_nodes::casa Initialize engines [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]
2014-10-14 16:08:12 INFO pclean::::casa
2014-10-14 16:08:12 INFO pclean::::casa+ ##########################################
2014-10-14 16:08:12 INFO pclean::::casa+ ##### Begin Task: pclean #####
2014-10-14 16:08:12 INFO pclean::::casa pclean(vis="L85562_all_flagged.MS",imagename="timesteps_flg1_dt0-05-37.5_n0_it10000_wp512_facets8_npix1024",imsize=[1024, 1024],cell="51.3388700849arcsec",
2014-10-14 16:08:12 INFO pclean::::casa+ phasecenter="",stokes="I",mask="",field="0",spw="15~105",
2014-10-14 16:08:12 INFO pclean::::casa+ ftmachine="wproject",alg="multiscale",scales=[0],cyclefactor=1.5,majorcycles=5,
2014-10-14 16:08:12 INFO pclean::::casa+ niter=10000,gain=0.1,threshold="0.0Jy",weighting="natural",robust=0.0,
2014-10-14 16:08:12 INFO pclean::::casa+ npixels=0,mode="continuum",nterms=1,start=0,nchan=1,
2014-10-14 16:08:12 INFO pclean::::casa+ width=1,restfreq="",interactive=False,npercycle=100,wprojplanes=512,
2014-10-14 16:08:12 INFO pclean::::casa+ facets=8,overwrite=True,uvtaper=False,outertaper=[''],timerange="2013/01/24/21:37:11.000000+0:05:37.5",
2014-10-14 16:08:12 INFO pclean::::casa+ uvrange="",antenna="",scan="",observation="",pbcor=False,
2014-10-14 16:08:12 INFO pclean::::casa+ minpb=0.2,clusterdef="")
2014-10-14 16:08:17 SEVERE parallel_go::MeasTable::dUTC(Double) (file /var/rpmbuild/BUILD/casapy-stable/casapy-stable-42.0.26465/casacore/measures/Measures/MeasTable.cc, line 6657) Leap second table TAI_UTC seems out-of-date.
2014-10-14 16:08:17 SEVERE parallel_go::MeasTable::dUTC(Double) (file /var/rpmbuild/BUILD/casapy-stable/casapy-stable-42.0.26465/casacore/measures/Measures/MeasTable.cc, line 6657)+ Until table is updated (see aips++ manager) times and coordinates
2014-10-14 16:08:17 SEVERE parallel_go::MeasTable::dUTC(Double) (file /var/rpmbuild/BUILD/casapy-stable/casapy-stable-42.0.26465/casacore/measures/Measures/MeasTable.cc, line 6657)+ derived from UTC could be wrong by 1s or more.
2014-10-14 16:13:33 INFO parallel_go::image::statistics Determining stats for image __sumweight_image
2014-10-14 16:13:33 INFO parallel_go::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-14 16:13:33 INFO parallel_go::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-14 16:13:33 INFO parallel_go::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-14 16:13:33 INFO parallel_go::ImageRegion::fromRecord Selected bounding box :
2014-10-14 16:13:33 INFO parallel_go::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (10:02:38.073, +42.48.02.752, I, 53513891.51Hz to 08:28:13.988, +57.15.03.217, I, 53513891.51Hz)
2014-10-14 16:13:33 INFO parallel_go::ImageStatsCalculator::statistics Regions ---
2014-10-14 16:13:33 INFO parallel_go::ImageStatsCalculator::statistics -- bottom-left corner (pixel) [blc]: [0, 0, 0, 0]
2014-10-14 16:13:33 INFO parallel_go::ImageStatsCalculator::statistics -- top-right corner (pixel) [trc]: [1023, 1023, 0, 0]
2014-10-14 16:13:33 INFO parallel_go::ImageStatsCalculator::statistics -- bottom-left corner (world) [blcf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 16:13:33 INFO parallel_go::ImageStatsCalculator::statistics -- top-right corner (world) [trcf]: 08:28:13.988, +57.15.03.217, I, 53513891.51Hz
2014-10-14 16:13:33 INFO parallel_go:::: Values ---
2014-10-14 16:13:33 INFO parallel_go:::: -- number of points [npts]: 1.04858e+06
2014-10-14 16:13:33 INFO parallel_go:::: -- maximum value [max]: 1.63222e+08
2014-10-14 16:13:33 INFO parallel_go:::: -- minimum value [min]: 1.63222e+08
2014-10-14 16:13:33 INFO parallel_go:::: -- position of max value (pixel) [maxpos]: [0, 0, 0, 0]
2014-10-14 16:13:33 INFO parallel_go:::: -- position of min value (pixel) [minpos]: [0, 0, 0, 0]
2014-10-14 16:13:33 INFO parallel_go:::: -- position of max value (world) [maxposf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 16:13:33 INFO parallel_go:::: -- position of min value (world) [minposf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 16:13:33 INFO parallel_go:::: -- Sum of pixel values [sum]: 1.7115e+14
2014-10-14 16:13:33 INFO parallel_go:::: -- Sum of squared pixel values [sumsq]: 2.79354e+22
2014-10-14 16:13:33 INFO parallel_go:::: Statistics ---
2014-10-14 16:13:33 INFO parallel_go:::: -- Mean of the pixel values [mean]: 1.63222e+08
2014-10-14 16:13:33 INFO parallel_go:::: -- Variance of the pixel values : 0 0
2014-10-14 16:13:33 INFO parallel_go:::: -- Standard deviation of the Mean [sigma]: 0
2014-10-14 16:13:33 INFO parallel_go:::: -- Root mean square [rms]: 1.63222e+08
2014-10-14 16:13:33 INFO parallel_go::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-14 16:13:33 INFO parallel_go::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-14 16:13:33 INFO parallel_go::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-14 16:13:33 INFO parallel_go::ImageRegion::fromRecord Selected bounding box :
2014-10-14 16:13:33 INFO parallel_go::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (10:02:38.073, +42.48.02.752, I, 53513891.51Hz to 08:28:13.988, +57.15.03.217, I, 53513891.51Hz)
2014-10-14 16:13:33 INFO parallel_go::ImageStatsCalculator::statistics # Npts Sum Mean Rms Std dev Minimum Maximum
2014-10-14 16:13:33 INFO parallel_go::ImageStatsCalculator::statistics+ 1.048576e+06 1.711503e+14 1.632216e+08 1.632216e+08 0.000000e+00 1.632216e+08 1.632216e+08
2014-10-14 16:13:33 WARN parallel_go::image::removefile /home/mknapp/timesteps_flg1_dt0-05-37.5_n0_it10000_wp512_facets8_npix1024.mask does not exist.
2014-10-14 16:13:33 INFO parallel_go::ImageAnalysis::imagefromimage Creating image '/home/mknapp/timesteps_flg1_dt0-05-37.5_n0_it10000_wp512_facets8_npix1024.mask' of shape [1024, 1024, 1, 1]
2014-10-14 16:13:33 INFO parallel_go::ImageAnalysis::imagefromimage Creating image '/home/mknapp/timesteps_flg1_dt0-05-37.5_n0_it10000_wp512_facets8_npix1024.model' of shape [1024, 1024, 1, 1]
2014-10-14 16:13:34 INFO parallel_go::image::statistics Determining stats for image __sumweight_image
2014-10-14 16:13:34 INFO parallel_go::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-14 16:13:34 INFO parallel_go::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-14 16:13:34 INFO parallel_go::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-14 16:13:34 INFO parallel_go::ImageRegion::fromRecord Selected bounding box :
2014-10-14 16:13:34 INFO parallel_go::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (10:02:38.073, +42.48.02.752, I, 53513891.51Hz to 08:28:13.988, +57.15.03.217, I, 53513891.51Hz)
2014-10-14 16:13:34 INFO parallel_go::ImageStatsCalculator::statistics Regions ---
2014-10-14 16:13:34 INFO parallel_go::ImageStatsCalculator::statistics -- bottom-left corner (pixel) [blc]: [0, 0, 0, 0]
2014-10-14 16:13:34 INFO parallel_go::ImageStatsCalculator::statistics -- top-right corner (pixel) [trc]: [1023, 1023, 0, 0]
2014-10-14 16:13:34 INFO parallel_go::ImageStatsCalculator::statistics -- bottom-left corner (world) [blcf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 16:13:34 INFO parallel_go::ImageStatsCalculator::statistics -- top-right corner (world) [trcf]: 08:28:13.988, +57.15.03.217, I, 53513891.51Hz
2014-10-14 16:13:34 INFO parallel_go:::: Values ---
2014-10-14 16:13:34 INFO parallel_go:::: -- number of points [npts]: 1.04858e+06
2014-10-14 16:13:34 INFO parallel_go:::: -- maximum value [max]: 1.63222e+08
2014-10-14 16:13:34 INFO parallel_go:::: -- minimum value [min]: 1.63222e+08
2014-10-14 16:13:34 INFO parallel_go:::: -- position of max value (pixel) [maxpos]: [0, 0, 0, 0]
2014-10-14 16:13:34 INFO parallel_go:::: -- position of min value (pixel) [minpos]: [0, 0, 0, 0]
2014-10-14 16:13:34 INFO parallel_go:::: -- position of max value (world) [maxposf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 16:13:34 INFO parallel_go:::: -- position of min value (world) [minposf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 16:13:34 INFO parallel_go:::: -- Sum of pixel values [sum]: 1.7115e+14
2014-10-14 16:13:34 INFO parallel_go:::: -- Sum of squared pixel values [sumsq]: 2.79354e+22
2014-10-14 16:13:34 INFO parallel_go:::: Statistics ---
2014-10-14 16:13:34 INFO parallel_go:::: -- Mean of the pixel values [mean]: 1.63222e+08
2014-10-14 16:13:34 INFO parallel_go:::: -- Variance of the pixel values : 0 0
2014-10-14 16:13:34 INFO parallel_go:::: -- Standard deviation of the Mean [sigma]: 0
2014-10-14 16:13:34 INFO parallel_go:::: -- Root mean square [rms]: 1.63222e+08
2014-10-14 16:13:34 INFO parallel_go::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-14 16:13:34 INFO parallel_go::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-14 16:13:34 INFO parallel_go::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-14 16:13:34 INFO parallel_go::ImageRegion::fromRecord Selected bounding box :
2014-10-14 16:13:34 INFO parallel_go::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (10:02:38.073, +42.48.02.752, I, 53513891.51Hz to 08:28:13.988, +57.15.03.217, I, 53513891.51Hz)
2014-10-14 16:13:34 INFO parallel_go::ImageStatsCalculator::statistics # Npts Sum Mean Rms Std dev Minimum Maximum
2014-10-14 16:13:34 INFO parallel_go::ImageStatsCalculator::statistics+ 1.048576e+06 1.711503e+14 1.632216e+08 1.632216e+08 0.000000e+00 1.632216e+08 1.632216e+08
2014-10-14 16:15:47 INFO parallel_go::image::statistics Determining stats for image __sumweight_image
2014-10-14 16:15:47 INFO parallel_go::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-14 16:15:47 INFO parallel_go::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-14 16:15:47 INFO parallel_go::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-14 16:15:47 INFO parallel_go::ImageRegion::fromRecord Selected bounding box :
2014-10-14 16:15:47 INFO parallel_go::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (10:02:38.073, +42.48.02.752, I, 53513891.51Hz to 08:28:13.988, +57.15.03.217, I, 53513891.51Hz)
2014-10-14 16:15:47 INFO parallel_go::ImageStatsCalculator::statistics Regions ---
2014-10-14 16:15:47 INFO parallel_go::ImageStatsCalculator::statistics -- bottom-left corner (pixel) [blc]: [0, 0, 0, 0]
2014-10-14 16:15:47 INFO parallel_go::ImageStatsCalculator::statistics -- top-right corner (pixel) [trc]: [1023, 1023, 0, 0]
2014-10-14 16:15:47 INFO parallel_go::ImageStatsCalculator::statistics -- bottom-left corner (world) [blcf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 16:15:47 INFO parallel_go::ImageStatsCalculator::statistics -- top-right corner (world) [trcf]: 08:28:13.988, +57.15.03.217, I, 53513891.51Hz
2014-10-14 16:15:47 INFO parallel_go:::: Values ---
2014-10-14 16:15:47 INFO parallel_go:::: -- number of points [npts]: 1.04858e+06
2014-10-14 16:15:47 INFO parallel_go:::: -- maximum value [max]: 1.63222e+08
2014-10-14 16:15:47 INFO parallel_go:::: -- minimum value [min]: 1.63222e+08
2014-10-14 16:15:47 INFO parallel_go:::: -- position of max value (pixel) [maxpos]: [0, 0, 0, 0]
2014-10-14 16:15:47 INFO parallel_go:::: -- position of min value (pixel) [minpos]: [0, 0, 0, 0]
2014-10-14 16:15:47 INFO parallel_go:::: -- position of max value (world) [maxposf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 16:15:47 INFO parallel_go:::: -- position of min value (world) [minposf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 16:15:47 INFO parallel_go:::: -- Sum of pixel values [sum]: 1.7115e+14
2014-10-14 16:15:47 INFO parallel_go:::: -- Sum of squared pixel values [sumsq]: 2.79354e+22
2014-10-14 16:15:47 INFO parallel_go:::: Statistics ---
2014-10-14 16:15:47 INFO parallel_go:::: -- Mean of the pixel values [mean]: 1.63222e+08
2014-10-14 16:15:47 INFO parallel_go:::: -- Variance of the pixel values : 0 0
2014-10-14 16:15:47 INFO parallel_go:::: -- Standard deviation of the Mean [sigma]: 0
2014-10-14 16:15:47 INFO parallel_go:::: -- Root mean square [rms]: 1.63222e+08
2014-10-14 16:15:47 INFO parallel_go::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-14 16:15:47 INFO parallel_go::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-14 16:15:47 INFO parallel_go::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-14 16:15:47 INFO parallel_go::ImageRegion::fromRecord Selected bounding box :
2014-10-14 16:15:47 INFO parallel_go::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (10:02:38.073, +42.48.02.752, I, 53513891.51Hz to 08:28:13.988, +57.15.03.217, I, 53513891.51Hz)
2014-10-14 16:15:47 INFO parallel_go::ImageStatsCalculator::statistics # Npts Sum Mean Rms Std dev Minimum Maximum
2014-10-14 16:15:47 INFO parallel_go::ImageStatsCalculator::statistics+ 1.048576e+06 1.711503e+14 1.632216e+08 1.632216e+08 0.000000e+00 1.632216e+08 1.632216e+08
2014-10-14 16:18:00 INFO parallel_go::image::statistics Determining stats for image __sumweight_image
2014-10-14 16:18:00 INFO parallel_go::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-14 16:18:00 INFO parallel_go::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-14 16:18:00 INFO parallel_go::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-14 16:18:00 INFO parallel_go::ImageRegion::fromRecord Selected bounding box :
2014-10-14 16:18:00 INFO parallel_go::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (10:02:38.073, +42.48.02.752, I, 53513891.51Hz to 08:28:13.988, +57.15.03.217, I, 53513891.51Hz)
2014-10-14 16:18:00 INFO parallel_go::ImageStatsCalculator::statistics Regions ---
2014-10-14 16:18:00 INFO parallel_go::ImageStatsCalculator::statistics -- bottom-left corner (pixel) [blc]: [0, 0, 0, 0]
2014-10-14 16:18:00 INFO parallel_go::ImageStatsCalculator::statistics -- top-right corner (pixel) [trc]: [1023, 1023, 0, 0]
2014-10-14 16:18:00 INFO parallel_go::ImageStatsCalculator::statistics -- bottom-left corner (world) [blcf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 16:18:00 INFO parallel_go::ImageStatsCalculator::statistics -- top-right corner (world) [trcf]: 08:28:13.988, +57.15.03.217, I, 53513891.51Hz
2014-10-14 16:18:00 INFO parallel_go:::: Values ---
2014-10-14 16:18:00 INFO parallel_go:::: -- number of points [npts]: 1.04858e+06
2014-10-14 16:18:00 INFO parallel_go:::: -- maximum value [max]: 1.63222e+08
2014-10-14 16:18:00 INFO parallel_go:::: -- minimum value [min]: 1.63222e+08
2014-10-14 16:18:00 INFO parallel_go:::: -- position of max value (pixel) [maxpos]: [0, 0, 0, 0]
2014-10-14 16:18:00 INFO parallel_go:::: -- position of min value (pixel) [minpos]: [0, 0, 0, 0]
2014-10-14 16:18:00 INFO parallel_go:::: -- position of max value (world) [maxposf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 16:18:00 INFO parallel_go:::: -- position of min value (world) [minposf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 16:18:00 INFO parallel_go:::: -- Sum of pixel values [sum]: 1.7115e+14
2014-10-14 16:18:00 INFO parallel_go:::: -- Sum of squared pixel values [sumsq]: 2.79354e+22
2014-10-14 16:18:00 INFO parallel_go:::: Statistics ---
2014-10-14 16:18:00 INFO parallel_go:::: -- Mean of the pixel values [mean]: 1.63222e+08
2014-10-14 16:18:00 INFO parallel_go:::: -- Variance of the pixel values : 0 0
2014-10-14 16:18:00 INFO parallel_go:::: -- Standard deviation of the Mean [sigma]: 0
2014-10-14 16:18:00 INFO parallel_go:::: -- Root mean square [rms]: 1.63222e+08
2014-10-14 16:18:00 INFO parallel_go::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-14 16:18:00 INFO parallel_go::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-14 16:18:00 INFO parallel_go::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-14 16:18:00 INFO parallel_go::ImageRegion::fromRecord Selected bounding box :
2014-10-14 16:18:00 INFO parallel_go::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (10:02:38.073, +42.48.02.752, I, 53513891.51Hz to 08:28:13.988, +57.15.03.217, I, 53513891.51Hz)
2014-10-14 16:18:00 INFO parallel_go::ImageStatsCalculator::statistics # Npts Sum Mean Rms Std dev Minimum Maximum
2014-10-14 16:18:00 INFO parallel_go::ImageStatsCalculator::statistics+ 1.048576e+06 1.711503e+14 1.632216e+08 1.632216e+08 0.000000e+00 1.632216e+08 1.632216e+08
2014-10-14 16:20:33 INFO parallel_go::image::statistics Determining stats for image __sumweight_image
2014-10-14 16:20:33 INFO parallel_go::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-14 16:20:33 INFO parallel_go::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-14 16:20:33 INFO parallel_go::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-14 16:20:33 INFO parallel_go::ImageRegion::fromRecord Selected bounding box :
2014-10-14 16:20:33 INFO parallel_go::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (10:02:38.073, +42.48.02.752, I, 53513891.51Hz to 08:28:13.988, +57.15.03.217, I, 53513891.51Hz)
2014-10-14 16:20:33 INFO parallel_go::ImageStatsCalculator::statistics Regions ---
2014-10-14 16:20:33 INFO parallel_go::ImageStatsCalculator::statistics -- bottom-left corner (pixel) [blc]: [0, 0, 0, 0]
2014-10-14 16:20:33 INFO parallel_go::ImageStatsCalculator::statistics -- top-right corner (pixel) [trc]: [1023, 1023, 0, 0]
2014-10-14 16:20:33 INFO parallel_go::ImageStatsCalculator::statistics -- bottom-left corner (world) [blcf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 16:20:33 INFO parallel_go::ImageStatsCalculator::statistics -- top-right corner (world) [trcf]: 08:28:13.988, +57.15.03.217, I, 53513891.51Hz
2014-10-14 16:20:33 INFO parallel_go:::: Values ---
2014-10-14 16:20:33 INFO parallel_go:::: -- number of points [npts]: 1.04858e+06
2014-10-14 16:20:33 INFO parallel_go:::: -- maximum value [max]: 1.63222e+08
2014-10-14 16:20:33 INFO parallel_go:::: -- minimum value [min]: 1.63222e+08
2014-10-14 16:20:33 INFO parallel_go:::: -- position of max value (pixel) [maxpos]: [0, 0, 0, 0]
2014-10-14 16:20:33 INFO parallel_go:::: -- position of min value (pixel) [minpos]: [0, 0, 0, 0]
2014-10-14 16:20:33 INFO parallel_go:::: -- position of max value (world) [maxposf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 16:20:33 INFO parallel_go:::: -- position of min value (world) [minposf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 16:20:33 INFO parallel_go:::: -- Sum of pixel values [sum]: 1.7115e+14
2014-10-14 16:20:33 INFO parallel_go:::: -- Sum of squared pixel values [sumsq]: 2.79354e+22
2014-10-14 16:20:33 INFO parallel_go:::: Statistics ---
2014-10-14 16:20:33 INFO parallel_go:::: -- Mean of the pixel values [mean]: 1.63222e+08
2014-10-14 16:20:33 INFO parallel_go:::: -- Variance of the pixel values : 0 0
2014-10-14 16:20:33 INFO parallel_go:::: -- Standard deviation of the Mean [sigma]: 0
2014-10-14 16:20:33 INFO parallel_go:::: -- Root mean square [rms]: 1.63222e+08
2014-10-14 16:20:33 INFO parallel_go::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-14 16:20:33 INFO parallel_go::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-14 16:20:33 INFO parallel_go::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-14 16:20:33 INFO parallel_go::ImageRegion::fromRecord Selected bounding box :
2014-10-14 16:20:33 INFO parallel_go::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (10:02:38.073, +42.48.02.752, I, 53513891.51Hz to 08:28:13.988, +57.15.03.217, I, 53513891.51Hz)
2014-10-14 16:20:33 INFO parallel_go::ImageStatsCalculator::statistics # Npts Sum Mean Rms Std dev Minimum Maximum
2014-10-14 16:20:33 INFO parallel_go::ImageStatsCalculator::statistics+ 1.048576e+06 1.711503e+14 1.632216e+08 1.632216e+08 0.000000e+00 1.632216e+08 1.632216e+08
2014-10-14 16:22:41 INFO parallel_go::image::statistics Determining stats for image __sumweight_image
2014-10-14 16:22:41 INFO parallel_go::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-14 16:22:41 INFO parallel_go::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-14 16:22:41 INFO parallel_go::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-14 16:22:41 INFO parallel_go::ImageRegion::fromRecord Selected bounding box :
2014-10-14 16:22:41 INFO parallel_go::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (10:02:38.073, +42.48.02.752, I, 53513891.51Hz to 08:28:13.988, +57.15.03.217, I, 53513891.51Hz)
2014-10-14 16:22:41 INFO parallel_go::ImageStatsCalculator::statistics Regions ---
2014-10-14 16:22:41 INFO parallel_go::ImageStatsCalculator::statistics -- bottom-left corner (pixel) [blc]: [0, 0, 0, 0]
2014-10-14 16:22:41 INFO parallel_go::ImageStatsCalculator::statistics -- top-right corner (pixel) [trc]: [1023, 1023, 0, 0]
2014-10-14 16:22:41 INFO parallel_go::ImageStatsCalculator::statistics -- bottom-left corner (world) [blcf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 16:22:41 INFO parallel_go::ImageStatsCalculator::statistics -- top-right corner (world) [trcf]: 08:28:13.988, +57.15.03.217, I, 53513891.51Hz
2014-10-14 16:22:41 INFO parallel_go:::: Values ---
2014-10-14 16:22:41 INFO parallel_go:::: -- number of points [npts]: 1.04858e+06
2014-10-14 16:22:41 INFO parallel_go:::: -- maximum value [max]: 1.63222e+08
2014-10-14 16:22:41 INFO parallel_go:::: -- minimum value [min]: 1.63222e+08
2014-10-14 16:22:41 INFO parallel_go:::: -- position of max value (pixel) [maxpos]: [0, 0, 0, 0]
2014-10-14 16:22:41 INFO parallel_go:::: -- position of min value (pixel) [minpos]: [0, 0, 0, 0]
2014-10-14 16:22:41 INFO parallel_go:::: -- position of max value (world) [maxposf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 16:22:41 INFO parallel_go:::: -- position of min value (world) [minposf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 16:22:41 INFO parallel_go:::: -- Sum of pixel values [sum]: 1.7115e+14
2014-10-14 16:22:41 INFO parallel_go:::: -- Sum of squared pixel values [sumsq]: 2.79354e+22
2014-10-14 16:22:41 INFO parallel_go:::: Statistics ---
2014-10-14 16:22:41 INFO parallel_go:::: -- Mean of the pixel values [mean]: 1.63222e+08
2014-10-14 16:22:41 INFO parallel_go:::: -- Variance of the pixel values : 0 0
2014-10-14 16:22:41 INFO parallel_go:::: -- Standard deviation of the Mean [sigma]: 0
2014-10-14 16:22:41 INFO parallel_go:::: -- Root mean square [rms]: 1.63222e+08
2014-10-14 16:22:41 INFO parallel_go::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-14 16:22:41 INFO parallel_go::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-14 16:22:41 INFO parallel_go::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-14 16:22:41 INFO parallel_go::ImageRegion::fromRecord Selected bounding box :
2014-10-14 16:22:41 INFO parallel_go::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (10:02:38.073, +42.48.02.752, I, 53513891.51Hz to 08:28:13.988, +57.15.03.217, I, 53513891.51Hz)
2014-10-14 16:22:41 INFO parallel_go::ImageStatsCalculator::statistics # Npts Sum Mean Rms Std dev Minimum Maximum
2014-10-14 16:22:41 INFO parallel_go::ImageStatsCalculator::statistics+ 1.048576e+06 1.711503e+14 1.632216e+08 1.632216e+08 0.000000e+00 1.632216e+08 1.632216e+08
2014-10-14 16:24:54 INFO parallel_go::image::statistics Determining stats for image __sumweight_image
2014-10-14 16:24:54 INFO parallel_go::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-14 16:24:54 INFO parallel_go::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-14 16:24:54 INFO parallel_go::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-14 16:24:54 INFO parallel_go::ImageRegion::fromRecord Selected bounding box :
2014-10-14 16:24:54 INFO parallel_go::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (10:02:38.073, +42.48.02.752, I, 53513891.51Hz to 08:28:13.988, +57.15.03.217, I, 53513891.51Hz)
2014-10-14 16:24:54 INFO parallel_go::ImageStatsCalculator::statistics Regions ---
2014-10-14 16:24:54 INFO parallel_go::ImageStatsCalculator::statistics -- bottom-left corner (pixel) [blc]: [0, 0, 0, 0]
2014-10-14 16:24:54 INFO parallel_go::ImageStatsCalculator::statistics -- top-right corner (pixel) [trc]: [1023, 1023, 0, 0]
2014-10-14 16:24:54 INFO parallel_go::ImageStatsCalculator::statistics -- bottom-left corner (world) [blcf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 16:24:54 INFO parallel_go::ImageStatsCalculator::statistics -- top-right corner (world) [trcf]: 08:28:13.988, +57.15.03.217, I, 53513891.51Hz
2014-10-14 16:24:54 INFO parallel_go:::: Values ---
2014-10-14 16:24:54 INFO parallel_go:::: -- number of points [npts]: 1.04858e+06
2014-10-14 16:24:54 INFO parallel_go:::: -- maximum value [max]: 1.63222e+08
2014-10-14 16:24:54 INFO parallel_go:::: -- minimum value [min]: 1.63222e+08
2014-10-14 16:24:54 INFO parallel_go:::: -- position of max value (pixel) [maxpos]: [0, 0, 0, 0]
2014-10-14 16:24:54 INFO parallel_go:::: -- position of min value (pixel) [minpos]: [0, 0, 0, 0]
2014-10-14 16:24:54 INFO parallel_go:::: -- position of max value (world) [maxposf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 16:24:54 INFO parallel_go:::: -- position of min value (world) [minposf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 16:24:54 INFO parallel_go:::: -- Sum of pixel values [sum]: 1.7115e+14
2014-10-14 16:24:54 INFO parallel_go:::: -- Sum of squared pixel values [sumsq]: 2.79354e+22
2014-10-14 16:24:54 INFO parallel_go:::: Statistics ---
2014-10-14 16:24:54 INFO parallel_go:::: -- Mean of the pixel values [mean]: 1.63222e+08
2014-10-14 16:24:54 INFO parallel_go:::: -- Variance of the pixel values : 0 0
2014-10-14 16:24:54 INFO parallel_go:::: -- Standard deviation of the Mean [sigma]: 0
2014-10-14 16:24:54 INFO parallel_go:::: -- Root mean square [rms]: 1.63222e+08
2014-10-14 16:24:54 INFO parallel_go::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-14 16:24:54 INFO parallel_go::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-14 16:24:54 INFO parallel_go::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-14 16:24:54 INFO parallel_go::ImageRegion::fromRecord Selected bounding box :
2014-10-14 16:24:54 INFO parallel_go::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (10:02:38.073, +42.48.02.752, I, 53513891.51Hz to 08:28:13.988, +57.15.03.217, I, 53513891.51Hz)
2014-10-14 16:24:54 INFO parallel_go::ImageStatsCalculator::statistics # Npts Sum Mean Rms Std dev Minimum Maximum
2014-10-14 16:24:54 INFO parallel_go::ImageStatsCalculator::statistics+ 1.048576e+06 1.711503e+14 1.632216e+08 1.632216e+08 0.000000e+00 1.632216e+08 1.632216e+08
2014-10-14 16:24:55 INFO parallel_go::image::statistics Determining stats for image __sumweight_image
2014-10-14 16:24:55 INFO parallel_go::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-14 16:24:55 INFO parallel_go::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-14 16:24:55 INFO parallel_go::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-14 16:24:55 INFO parallel_go::ImageRegion::fromRecord Selected bounding box :
2014-10-14 16:24:55 INFO parallel_go::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (10:02:38.073, +42.48.02.752, I, 53513891.51Hz to 08:28:13.988, +57.15.03.217, I, 53513891.51Hz)
2014-10-14 16:24:55 INFO parallel_go::ImageStatsCalculator::statistics Regions ---
2014-10-14 16:24:55 INFO parallel_go::ImageStatsCalculator::statistics -- bottom-left corner (pixel) [blc]: [0, 0, 0, 0]
2014-10-14 16:24:55 INFO parallel_go::ImageStatsCalculator::statistics -- top-right corner (pixel) [trc]: [1023, 1023, 0, 0]
2014-10-14 16:24:55 INFO parallel_go::ImageStatsCalculator::statistics -- bottom-left corner (world) [blcf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 16:24:55 INFO parallel_go::ImageStatsCalculator::statistics -- top-right corner (world) [trcf]: 08:28:13.988, +57.15.03.217, I, 53513891.51Hz
2014-10-14 16:24:55 INFO parallel_go:::: Values ---
2014-10-14 16:24:55 INFO parallel_go:::: -- number of points [npts]: 1.04858e+06
2014-10-14 16:24:55 INFO parallel_go:::: -- maximum value [max]: 1.63222e+08
2014-10-14 16:24:55 INFO parallel_go:::: -- minimum value [min]: 1.63222e+08
2014-10-14 16:24:55 INFO parallel_go:::: -- position of max value (pixel) [maxpos]: [0, 0, 0, 0]
2014-10-14 16:24:55 INFO parallel_go:::: -- position of min value (pixel) [minpos]: [0, 0, 0, 0]
2014-10-14 16:24:55 INFO parallel_go:::: -- position of max value (world) [maxposf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 16:24:55 INFO parallel_go:::: -- position of min value (world) [minposf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 16:24:55 INFO parallel_go:::: -- Sum of pixel values [sum]: 1.7115e+14
2014-10-14 16:24:55 INFO parallel_go:::: -- Sum of squared pixel values [sumsq]: 2.79354e+22
2014-10-14 16:24:55 INFO parallel_go:::: Statistics ---
2014-10-14 16:24:55 INFO parallel_go:::: -- Mean of the pixel values [mean]: 1.63222e+08
2014-10-14 16:24:55 INFO parallel_go:::: -- Variance of the pixel values : 0 0
2014-10-14 16:24:55 INFO parallel_go:::: -- Standard deviation of the Mean [sigma]: 0
2014-10-14 16:24:55 INFO parallel_go:::: -- Root mean square [rms]: 1.63222e+08
2014-10-14 16:24:55 INFO parallel_go::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-14 16:24:55 INFO parallel_go::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-14 16:24:55 INFO parallel_go::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-14 16:24:55 INFO parallel_go::ImageRegion::fromRecord Selected bounding box :
2014-10-14 16:24:55 INFO parallel_go::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (10:02:38.073, +42.48.02.752, I, 53513891.51Hz to 08:28:13.988, +57.15.03.217, I, 53513891.51Hz)
2014-10-14 16:24:55 INFO parallel_go::ImageStatsCalculator::statistics # Npts Sum Mean Rms Std dev Minimum Maximum
2014-10-14 16:24:55 INFO parallel_go::ImageStatsCalculator::statistics+ 1.048576e+06 1.711503e+14 1.632216e+08 1.632216e+08 0.000000e+00 1.632216e+08 1.632216e+08
2014-10-14 16:24:55 INFO parallel_go::imager::setDataOnThisMS() Performing selection on MeasurementSet : /home/mknapp/L85562_all_flagged.MS
2014-10-14 16:24:55 INFO parallel_go::imager::setDataOnThisMS() Selecting on fields : 0
2014-10-14 16:24:55 INFO parallel_go::imager::setDataOnThisMS() Selecting on spectral windows expression :15~105
2014-10-14 16:33:13 INFO parallel_go::imager::setDataOnThisMS() Selected 137989761 out of 181964520 rows.
2014-10-14 16:33:13 INFO parallel_go::imager::setDataOnThisMS() 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-14 16:34:47 INFO parallel_go::imager::defineimage() Defining image properties:nx=128 ny=128 cellx='1arcsec' celly='1arcsec' stokes=I' mode=MFS nchan=-1 start=0 step=0 spwids=[0] fieldid=0 facets=1 frame=1 distance='0'
2014-10-14 16:34:47 INFO parallel_go::imager::defineimage() phaseCenter='field-0 ' mStart='Radialvelocity: 0' qStep='0 '' mFreqStart='Frequency: 0
2014-10-14 16:34:51 INFO parallel_go::imager::setoptions() Setting processing options
2014-10-14 16:34:51 INFO parallel_go::imager::ft() Fourier transforming: replacing visibility model header
2014-10-14 16:34:51 INFO parallel_go::imager::createFTMachine() Performing w-plane projection
2014-10-14 16:34:51 INFO parallel_go::WPConvFunc::findConvFunction W projection using 512 planes
2014-10-14 16:34:51 INFO parallel_go::WPConvFunc::findConvFunction Estimating maximum possible W = 1004.43 (wavelengths)
2014-10-14 16:34:51 INFO parallel_go::WPConvFunc::findConvFunction Typical wavelength = 8.34241 (m)
2014-10-14 16:34:51 INFO parallel_go::WPConvFunc::findConvFunction Scaling in W (at maximum W) = 0.0038466 wavelengths per pixel
2014-10-14 16:35:26 INFO parallel_go::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, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 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, 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, 36, 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, 40, 40, 44, 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, 48, 48, 52, 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, 56, 60, 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, 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, 72, 72, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 88, 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, 96, 96, 100, 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, 108, 108, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 124, 124, 124, 124, 124, 124, 124, 124, 124, 128, 128, 128, 128, 128, 128] pixels in Fourier plane
2014-10-14 16:35:26 INFO parallel_go::WPConvFunc::findConvFunction Memory used in gridding function = 71 MB from maximum 245997 MB
2014-10-14 16:36:20 INFO parallel_go::::casa ##### End Task: pclean #####
2014-10-14 16:36:20 INFO parallel_go::::casa+ ##########################################
2014-10-14 16:36:20 INFO imstat::::casa
2014-10-14 16:36:20 INFO imstat::::casa+ ##########################################
2014-10-14 16:36:20 INFO imstat::::casa+ ##### Begin Task: imstat #####
2014-10-14 16:36:20 INFO imstat::::casa imstat(imagename="timesteps_flg1_dt0-05-37.5_n0_it10000_wp512_facets8_npix1024.image",axes=-1,region="",box="",
2014-10-14 16:36:20 INFO imstat::::casa+ chans="",stokes="",listit=True,verbose=True,mask="",
2014-10-14 16:36:20 INFO imstat::::casa+ stretch=False,logfile="",append=True)
2014-10-14 16:36:20 INFO imstat::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-14 16:36:20 INFO imstat::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-14 16:36:20 INFO imstat::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-14 16:36:20 INFO imstat::image::statistics Determining stats for image timesteps_flg1_dt0-05-37.5_n0_it10000_wp512_facets8_npix1024.image
2014-10-14 16:36:20 INFO imstat::CasacRegionManager::fromBCS Set region from supplied region record
2014-10-14 16:36:20 INFO imstat::ImageRegion::fromRecord Selected bounding box :
2014-10-14 16:36:20 INFO imstat::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (10:02:38.073, +42.48.02.752, I, 53513891.51Hz to 08:28:13.988, +57.15.03.217, I, 53513891.51Hz)
2014-10-14 16:36:20 INFO imstat::ImageStatsCalculator::statistics Regions ---
2014-10-14 16:36:20 INFO imstat::ImageStatsCalculator::statistics -- bottom-left corner (pixel) [blc]: [0, 0, 0, 0]
2014-10-14 16:36:20 INFO imstat::ImageStatsCalculator::statistics -- top-right corner (pixel) [trc]: [1023, 1023, 0, 0]
2014-10-14 16:36:20 INFO imstat::ImageStatsCalculator::statistics -- bottom-left corner (world) [blcf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 16:36:20 INFO imstat::ImageStatsCalculator::statistics -- top-right corner (world) [trcf]: 08:28:13.988, +57.15.03.217, I, 53513891.51Hz
2014-10-14 16:36:20 INFO imstat:::: Values ---
2014-10-14 16:36:20 INFO imstat:::: -- flux density [flux]: 97.6431 Jy
2014-10-14 16:36:20 INFO imstat:::: -- number of points [npts]: 1.04858e+06
2014-10-14 16:36:20 INFO imstat:::: -- maximum value [max]: 5.37981 Jy/beam
2014-10-14 16:36:20 INFO imstat:::: -- minimum value [min]: -0.153347 Jy/beam
2014-10-14 16:36:20 INFO imstat:::: -- position of max value (pixel) [maxpos]: [467, 616, 0, 0]
2014-10-14 16:36:20 INFO imstat:::: -- position of min value (pixel) [minpos]: [622, 641, 0, 0]
2014-10-14 16:36:20 INFO imstat:::: -- position of max value (world) [maxposf]: 09:26:48.304, +52.05.57.053, I, 53513891.51Hz
2014-10-14 16:36:20 INFO imstat:::: -- position of min value (world) [minposf]: 09:12:19.857, +52.25.59.243, I, 53513891.51Hz
2014-10-14 16:36:20 INFO imstat:::: -- Sum of pixel values [sum]: 5902.61 Jy/beam
2014-10-14 16:36:20 INFO imstat:::: -- Sum of squared pixel values [sumsq]: 5755.45 Jy/beam.Jy/beam
2014-10-14 16:36:20 INFO imstat:::: Statistics ---
2014-10-14 16:36:20 INFO imstat:::: -- Mean of the pixel values [mean]: 0.00562917 Jy/beam
2014-10-14 16:36:20 INFO imstat:::: -- Variance of the pixel values : 0.00545714 Jy/beam0
2014-10-14 16:36:20 INFO imstat:::: -- Standard deviation of the Mean [sigma]: 0.0738725 Jy/beam
2014-10-14 16:36:20 INFO imstat:::: -- Root mean square [rms]: 0.0740866 Jy/beam
2014-10-14 16:36:20 INFO imstat:::: -- Median of the pixel values [median]: -0.000745106 Jy/beam
2014-10-14 16:36:20 INFO imstat:::: -- Median of the deviations [medabsdevmed]: 0.011705 Jy/beam
2014-10-14 16:36:20 INFO imstat:::: -- Quartile [quartile]: 0.0234428 Jy/beam
2014-10-14 16:36:20 INFO imstat::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-14 16:36:20 INFO imstat::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-14 16:36:20 INFO imstat::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-14 16:36:20 INFO imstat::ImageRegion::fromRecord Selected bounding box :
2014-10-14 16:36:20 INFO imstat::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (10:02:38.073, +42.48.02.752, I, 53513891.51Hz to 08:28:13.988, +57.15.03.217, I, 53513891.51Hz)
2014-10-14 16:36:20 INFO imstat::ImageStatsCalculator::statistics # Npts Sum Mean Rms Std dev Minimum Maximum
2014-10-14 16:36:20 INFO imstat::ImageStatsCalculator::statistics+ 1.048576e+06 5.902613e+03 5.629170e-03 7.408658e-02 7.387246e-02 -1.533472e-01 5.379808e+00
2014-10-14 16:36:20 INFO imstat::::casa ##### End Task: imstat #####
2014-10-14 16:36:20 INFO imstat::::casa+ ##########################################
2014-10-14 16:36:20 INFO pclean::::casa
2014-10-14 16:36:20 INFO pclean::::casa+ ##########################################
2014-10-14 16:36:20 INFO pclean::::casa+ ##### Begin Task: pclean #####
2014-10-14 16:36:20 INFO pclean::::casa pclean(vis="L85562_all_flagged.MS",imagename="timesteps_flg1_dt0-05-37.5_n1_it10000_wp512_facets8_npix1024",imsize=[1024, 1024],cell="51.3388700849arcsec",
2014-10-14 16:36:20 INFO pclean::::casa+ phasecenter="",stokes="I",mask="",field="0",spw="15~105",
2014-10-14 16:36:20 INFO pclean::::casa+ ftmachine="wproject",alg="multiscale",scales=[0],cyclefactor=1.5,majorcycles=5,
2014-10-14 16:36:20 INFO pclean::::casa+ niter=10000,gain=0.1,threshold="0.0Jy",weighting="natural",robust=0.0,
2014-10-14 16:36:20 INFO pclean::::casa+ npixels=0,mode="continuum",nterms=1,start=0,nchan=1,
2014-10-14 16:36:20 INFO pclean::::casa+ width=1,restfreq="",interactive=False,npercycle=100,wprojplanes=512,
2014-10-14 16:36:20 INFO pclean::::casa+ facets=8,overwrite=True,uvtaper=False,outertaper=[''],timerange="2013/01/24/21:42:48.500000+0:05:37.5",
2014-10-14 16:36:20 INFO pclean::::casa+ uvrange="",antenna="",scan="",observation="",pbcor=False,
2014-10-14 16:36:20 INFO pclean::::casa+ minpb=0.2,clusterdef="")
2014-10-14 16:41:30 INFO parallel_go::image::statistics Determining stats for image __sumweight_image
2014-10-14 16:41:30 INFO parallel_go::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-14 16:41:30 INFO parallel_go::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-14 16:41:30 INFO parallel_go::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-14 16:41:30 INFO parallel_go::ImageRegion::fromRecord Selected bounding box :
2014-10-14 16:41:30 INFO parallel_go::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (10:02:38.073, +42.48.02.752, I, 53513891.51Hz to 08:28:13.988, +57.15.03.217, I, 53513891.51Hz)
2014-10-14 16:41:30 INFO parallel_go::ImageStatsCalculator::statistics Regions ---
2014-10-14 16:41:30 INFO parallel_go::ImageStatsCalculator::statistics -- bottom-left corner (pixel) [blc]: [0, 0, 0, 0]
2014-10-14 16:41:30 INFO parallel_go::ImageStatsCalculator::statistics -- top-right corner (pixel) [trc]: [1023, 1023, 0, 0]
2014-10-14 16:41:30 INFO parallel_go::ImageStatsCalculator::statistics -- bottom-left corner (world) [blcf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 16:41:30 INFO parallel_go::ImageStatsCalculator::statistics -- top-right corner (world) [trcf]: 08:28:13.988, +57.15.03.217, I, 53513891.51Hz
2014-10-14 16:41:30 INFO parallel_go:::: Values ---
2014-10-14 16:41:30 INFO parallel_go:::: -- number of points [npts]: 1.04858e+06
2014-10-14 16:41:30 INFO parallel_go:::: -- maximum value [max]: 1.63222e+08
2014-10-14 16:41:30 INFO parallel_go:::: -- minimum value [min]: 1.63222e+08
2014-10-14 16:41:30 INFO parallel_go:::: -- position of max value (pixel) [maxpos]: [0, 0, 0, 0]
2014-10-14 16:41:30 INFO parallel_go:::: -- position of min value (pixel) [minpos]: [0, 0, 0, 0]
2014-10-14 16:41:30 INFO parallel_go:::: -- position of max value (world) [maxposf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 16:41:30 INFO parallel_go:::: -- position of min value (world) [minposf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 16:41:30 INFO parallel_go:::: -- Sum of pixel values [sum]: 1.7115e+14
2014-10-14 16:41:30 INFO parallel_go:::: -- Sum of squared pixel values [sumsq]: 2.79354e+22
2014-10-14 16:41:30 INFO parallel_go:::: Statistics ---
2014-10-14 16:41:30 INFO parallel_go:::: -- Mean of the pixel values [mean]: 1.63222e+08
2014-10-14 16:41:30 INFO parallel_go:::: -- Variance of the pixel values : 0 0
2014-10-14 16:41:30 INFO parallel_go:::: -- Standard deviation of the Mean [sigma]: 0
2014-10-14 16:41:30 INFO parallel_go:::: -- Root mean square [rms]: 1.63222e+08
2014-10-14 16:41:30 INFO parallel_go::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-14 16:41:30 INFO parallel_go::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-14 16:41:30 INFO parallel_go::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-14 16:41:30 INFO parallel_go::ImageRegion::fromRecord Selected bounding box :
2014-10-14 16:41:30 INFO parallel_go::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (10:02:38.073, +42.48.02.752, I, 53513891.51Hz to 08:28:13.988, +57.15.03.217, I, 53513891.51Hz)
2014-10-14 16:41:30 INFO parallel_go::ImageStatsCalculator::statistics # Npts Sum Mean Rms Std dev Minimum Maximum
2014-10-14 16:41:30 INFO parallel_go::ImageStatsCalculator::statistics+ 1.048576e+06 1.711503e+14 1.632216e+08 1.632216e+08 0.000000e+00 1.632216e+08 1.632216e+08
2014-10-14 16:41:30 WARN parallel_go::image::removefile /home/mknapp/timesteps_flg1_dt0-05-37.5_n1_it10000_wp512_facets8_npix1024.mask does not exist.
2014-10-14 16:41:30 INFO parallel_go::ImageAnalysis::imagefromimage Creating image '/home/mknapp/timesteps_flg1_dt0-05-37.5_n1_it10000_wp512_facets8_npix1024.mask' of shape [1024, 1024, 1, 1]
2014-10-14 16:41:30 INFO parallel_go::ImageAnalysis::imagefromimage Creating image '/home/mknapp/timesteps_flg1_dt0-05-37.5_n1_it10000_wp512_facets8_npix1024.model' of shape [1024, 1024, 1, 1]
2014-10-14 16:41:31 INFO parallel_go::image::statistics Determining stats for image __sumweight_image
2014-10-14 16:41:31 INFO parallel_go::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-14 16:41:31 INFO parallel_go::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-14 16:41:31 INFO parallel_go::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-14 16:41:31 INFO parallel_go::ImageRegion::fromRecord Selected bounding box :
2014-10-14 16:41:31 INFO parallel_go::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (10:02:38.073, +42.48.02.752, I, 53513891.51Hz to 08:28:13.988, +57.15.03.217, I, 53513891.51Hz)
2014-10-14 16:41:31 INFO parallel_go::ImageStatsCalculator::statistics Regions ---
2014-10-14 16:41:31 INFO parallel_go::ImageStatsCalculator::statistics -- bottom-left corner (pixel) [blc]: [0, 0, 0, 0]
2014-10-14 16:41:31 INFO parallel_go::ImageStatsCalculator::statistics -- top-right corner (pixel) [trc]: [1023, 1023, 0, 0]
2014-10-14 16:41:31 INFO parallel_go::ImageStatsCalculator::statistics -- bottom-left corner (world) [blcf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 16:41:31 INFO parallel_go::ImageStatsCalculator::statistics -- top-right corner (world) [trcf]: 08:28:13.988, +57.15.03.217, I, 53513891.51Hz
2014-10-14 16:41:31 INFO parallel_go:::: Values ---
2014-10-14 16:41:31 INFO parallel_go:::: -- number of points [npts]: 1.04858e+06
2014-10-14 16:41:31 INFO parallel_go:::: -- maximum value [max]: 1.63222e+08
2014-10-14 16:41:31 INFO parallel_go:::: -- minimum value [min]: 1.63222e+08
2014-10-14 16:41:31 INFO parallel_go:::: -- position of max value (pixel) [maxpos]: [0, 0, 0, 0]
2014-10-14 16:41:31 INFO parallel_go:::: -- position of min value (pixel) [minpos]: [0, 0, 0, 0]
2014-10-14 16:41:31 INFO parallel_go:::: -- position of max value (world) [maxposf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 16:41:31 INFO parallel_go:::: -- position of min value (world) [minposf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 16:41:31 INFO parallel_go:::: -- Sum of pixel values [sum]: 1.7115e+14
2014-10-14 16:41:31 INFO parallel_go:::: -- Sum of squared pixel values [sumsq]: 2.79354e+22
2014-10-14 16:41:31 INFO parallel_go:::: Statistics ---
2014-10-14 16:41:31 INFO parallel_go:::: -- Mean of the pixel values [mean]: 1.63222e+08
2014-10-14 16:41:31 INFO parallel_go:::: -- Variance of the pixel values : 0 0
2014-10-14 16:41:31 INFO parallel_go:::: -- Standard deviation of the Mean [sigma]: 0
2014-10-14 16:41:31 INFO parallel_go:::: -- Root mean square [rms]: 1.63222e+08
2014-10-14 16:41:31 INFO parallel_go::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-14 16:41:31 INFO parallel_go::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-14 16:41:31 INFO parallel_go::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-14 16:41:31 INFO parallel_go::ImageRegion::fromRecord Selected bounding box :
2014-10-14 16:41:31 INFO parallel_go::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (10:02:38.073, +42.48.02.752, I, 53513891.51Hz to 08:28:13.988, +57.15.03.217, I, 53513891.51Hz)
2014-10-14 16:41:31 INFO parallel_go::ImageStatsCalculator::statistics # Npts Sum Mean Rms Std dev Minimum Maximum
2014-10-14 16:41:31 INFO parallel_go::ImageStatsCalculator::statistics+ 1.048576e+06 1.711503e+14 1.632216e+08 1.632216e+08 0.000000e+00 1.632216e+08 1.632216e+08
2014-10-14 16:43:49 INFO parallel_go::image::statistics Determining stats for image __sumweight_image
2014-10-14 16:43:49 INFO parallel_go::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-14 16:43:49 INFO parallel_go::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-14 16:43:49 INFO parallel_go::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-14 16:43:49 INFO parallel_go::ImageRegion::fromRecord Selected bounding box :
2014-10-14 16:43:49 INFO parallel_go::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (10:02:38.073, +42.48.02.752, I, 53513891.51Hz to 08:28:13.988, +57.15.03.217, I, 53513891.51Hz)
2014-10-14 16:43:49 INFO parallel_go::ImageStatsCalculator::statistics Regions ---
2014-10-14 16:43:49 INFO parallel_go::ImageStatsCalculator::statistics -- bottom-left corner (pixel) [blc]: [0, 0, 0, 0]
2014-10-14 16:43:49 INFO parallel_go::ImageStatsCalculator::statistics -- top-right corner (pixel) [trc]: [1023, 1023, 0, 0]
2014-10-14 16:43:49 INFO parallel_go::ImageStatsCalculator::statistics -- bottom-left corner (world) [blcf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 16:43:49 INFO parallel_go::ImageStatsCalculator::statistics -- top-right corner (world) [trcf]: 08:28:13.988, +57.15.03.217, I, 53513891.51Hz
2014-10-14 16:43:49 INFO parallel_go:::: Values ---
2014-10-14 16:43:49 INFO parallel_go:::: -- number of points [npts]: 1.04858e+06
2014-10-14 16:43:49 INFO parallel_go:::: -- maximum value [max]: 1.63222e+08
2014-10-14 16:43:49 INFO parallel_go:::: -- minimum value [min]: 1.63222e+08
2014-10-14 16:43:49 INFO parallel_go:::: -- position of max value (pixel) [maxpos]: [0, 0, 0, 0]
2014-10-14 16:43:49 INFO parallel_go:::: -- position of min value (pixel) [minpos]: [0, 0, 0, 0]
2014-10-14 16:43:49 INFO parallel_go:::: -- position of max value (world) [maxposf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 16:43:49 INFO parallel_go:::: -- position of min value (world) [minposf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 16:43:49 INFO parallel_go:::: -- Sum of pixel values [sum]: 1.7115e+14
2014-10-14 16:43:49 INFO parallel_go:::: -- Sum of squared pixel values [sumsq]: 2.79354e+22
2014-10-14 16:43:49 INFO parallel_go:::: Statistics ---
2014-10-14 16:43:49 INFO parallel_go:::: -- Mean of the pixel values [mean]: 1.63222e+08
2014-10-14 16:43:49 INFO parallel_go:::: -- Variance of the pixel values : 0 0
2014-10-14 16:43:49 INFO parallel_go:::: -- Standard deviation of the Mean [sigma]: 0
2014-10-14 16:43:49 INFO parallel_go:::: -- Root mean square [rms]: 1.63222e+08
2014-10-14 16:43:49 INFO parallel_go::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-14 16:43:49 INFO parallel_go::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-14 16:43:49 INFO parallel_go::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-14 16:43:49 INFO parallel_go::ImageRegion::fromRecord Selected bounding box :
2014-10-14 16:43:49 INFO parallel_go::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (10:02:38.073, +42.48.02.752, I, 53513891.51Hz to 08:28:13.988, +57.15.03.217, I, 53513891.51Hz)
2014-10-14 16:43:49 INFO parallel_go::ImageStatsCalculator::statistics # Npts Sum Mean Rms Std dev Minimum Maximum
2014-10-14 16:43:49 INFO parallel_go::ImageStatsCalculator::statistics+ 1.048576e+06 1.711503e+14 1.632216e+08 1.632216e+08 0.000000e+00 1.632216e+08 1.632216e+08
2014-10-14 16:46:16 INFO parallel_go::image::statistics Determining stats for image __sumweight_image
2014-10-14 16:46:16 INFO parallel_go::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-14 16:46:16 INFO parallel_go::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-14 16:46:16 INFO parallel_go::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-14 16:46:16 INFO parallel_go::ImageRegion::fromRecord Selected bounding box :
2014-10-14 16:46:16 INFO parallel_go::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (10:02:38.073, +42.48.02.752, I, 53513891.51Hz to 08:28:13.988, +57.15.03.217, I, 53513891.51Hz)
2014-10-14 16:46:16 INFO parallel_go::ImageStatsCalculator::statistics Regions ---
2014-10-14 16:46:16 INFO parallel_go::ImageStatsCalculator::statistics -- bottom-left corner (pixel) [blc]: [0, 0, 0, 0]
2014-10-14 16:46:16 INFO parallel_go::ImageStatsCalculator::statistics -- top-right corner (pixel) [trc]: [1023, 1023, 0, 0]
2014-10-14 16:46:16 INFO parallel_go::ImageStatsCalculator::statistics -- bottom-left corner (world) [blcf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 16:46:16 INFO parallel_go::ImageStatsCalculator::statistics -- top-right corner (world) [trcf]: 08:28:13.988, +57.15.03.217, I, 53513891.51Hz
2014-10-14 16:46:16 INFO parallel_go:::: Values ---
2014-10-14 16:46:16 INFO parallel_go:::: -- number of points [npts]: 1.04858e+06
2014-10-14 16:46:16 INFO parallel_go:::: -- maximum value [max]: 1.63222e+08
2014-10-14 16:46:16 INFO parallel_go:::: -- minimum value [min]: 1.63222e+08
2014-10-14 16:46:16 INFO parallel_go:::: -- position of max value (pixel) [maxpos]: [0, 0, 0, 0]
2014-10-14 16:46:16 INFO parallel_go:::: -- position of min value (pixel) [minpos]: [0, 0, 0, 0]
2014-10-14 16:46:16 INFO parallel_go:::: -- position of max value (world) [maxposf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 16:46:16 INFO parallel_go:::: -- position of min value (world) [minposf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 16:46:16 INFO parallel_go:::: -- Sum of pixel values [sum]: 1.7115e+14
2014-10-14 16:46:16 INFO parallel_go:::: -- Sum of squared pixel values [sumsq]: 2.79354e+22
2014-10-14 16:46:16 INFO parallel_go:::: Statistics ---
2014-10-14 16:46:16 INFO parallel_go:::: -- Mean of the pixel values [mean]: 1.63222e+08
2014-10-14 16:46:16 INFO parallel_go:::: -- Variance of the pixel values : 0 0
2014-10-14 16:46:16 INFO parallel_go:::: -- Standard deviation of the Mean [sigma]: 0
2014-10-14 16:46:16 INFO parallel_go:::: -- Root mean square [rms]: 1.63222e+08
2014-10-14 16:46:16 INFO parallel_go::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-14 16:46:16 INFO parallel_go::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-14 16:46:16 INFO parallel_go::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-14 16:46:16 INFO parallel_go::ImageRegion::fromRecord Selected bounding box :
2014-10-14 16:46:16 INFO parallel_go::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (10:02:38.073, +42.48.02.752, I, 53513891.51Hz to 08:28:13.988, +57.15.03.217, I, 53513891.51Hz)
2014-10-14 16:46:17 INFO parallel_go::ImageStatsCalculator::statistics # Npts Sum Mean Rms Std dev Minimum Maximum
2014-10-14 16:46:17 INFO parallel_go::ImageStatsCalculator::statistics+ 1.048576e+06 1.711503e+14 1.632216e+08 1.632216e+08 0.000000e+00 1.632216e+08 1.632216e+08
2014-10-14 16:48:34 INFO parallel_go::image::statistics Determining stats for image __sumweight_image
2014-10-14 16:48:34 INFO parallel_go::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-14 16:48:34 INFO parallel_go::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-14 16:48:34 INFO parallel_go::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-14 16:48:34 INFO parallel_go::ImageRegion::fromRecord Selected bounding box :
2014-10-14 16:48:34 INFO parallel_go::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (10:02:38.073, +42.48.02.752, I, 53513891.51Hz to 08:28:13.988, +57.15.03.217, I, 53513891.51Hz)
2014-10-14 16:48:34 INFO parallel_go::ImageStatsCalculator::statistics Regions ---
2014-10-14 16:48:34 INFO parallel_go::ImageStatsCalculator::statistics -- bottom-left corner (pixel) [blc]: [0, 0, 0, 0]
2014-10-14 16:48:34 INFO parallel_go::ImageStatsCalculator::statistics -- top-right corner (pixel) [trc]: [1023, 1023, 0, 0]
2014-10-14 16:48:34 INFO parallel_go::ImageStatsCalculator::statistics -- bottom-left corner (world) [blcf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 16:48:34 INFO parallel_go::ImageStatsCalculator::statistics -- top-right corner (world) [trcf]: 08:28:13.988, +57.15.03.217, I, 53513891.51Hz
2014-10-14 16:48:34 INFO parallel_go:::: Values ---
2014-10-14 16:48:34 INFO parallel_go:::: -- number of points [npts]: 1.04858e+06
2014-10-14 16:48:34 INFO parallel_go:::: -- maximum value [max]: 1.63222e+08
2014-10-14 16:48:34 INFO parallel_go:::: -- minimum value [min]: 1.63222e+08
2014-10-14 16:48:34 INFO parallel_go:::: -- position of max value (pixel) [maxpos]: [0, 0, 0, 0]
2014-10-14 16:48:34 INFO parallel_go:::: -- position of min value (pixel) [minpos]: [0, 0, 0, 0]
2014-10-14 16:48:34 INFO parallel_go:::: -- position of max value (world) [maxposf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 16:48:34 INFO parallel_go:::: -- position of min value (world) [minposf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 16:48:34 INFO parallel_go:::: -- Sum of pixel values [sum]: 1.7115e+14
2014-10-14 16:48:34 INFO parallel_go:::: -- Sum of squared pixel values [sumsq]: 2.79354e+22
2014-10-14 16:48:34 INFO parallel_go:::: Statistics ---
2014-10-14 16:48:34 INFO parallel_go:::: -- Mean of the pixel values [mean]: 1.63222e+08
2014-10-14 16:48:34 INFO parallel_go:::: -- Variance of the pixel values : 0 0
2014-10-14 16:48:34 INFO parallel_go:::: -- Standard deviation of the Mean [sigma]: 0
2014-10-14 16:48:34 INFO parallel_go:::: -- Root mean square [rms]: 1.63222e+08
2014-10-14 16:48:34 INFO parallel_go::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-14 16:48:34 INFO parallel_go::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-14 16:48:34 INFO parallel_go::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-14 16:48:34 INFO parallel_go::ImageRegion::fromRecord Selected bounding box :
2014-10-14 16:48:34 INFO parallel_go::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (10:02:38.073, +42.48.02.752, I, 53513891.51Hz to 08:28:13.988, +57.15.03.217, I, 53513891.51Hz)
2014-10-14 16:48:34 INFO parallel_go::ImageStatsCalculator::statistics # Npts Sum Mean Rms Std dev Minimum Maximum
2014-10-14 16:48:34 INFO parallel_go::ImageStatsCalculator::statistics+ 1.048576e+06 1.711503e+14 1.632216e+08 1.632216e+08 0.000000e+00 1.632216e+08 1.632216e+08
2014-10-14 16:50:53 INFO parallel_go::image::statistics Determining stats for image __sumweight_image
2014-10-14 16:50:53 INFO parallel_go::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-14 16:50:53 INFO parallel_go::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-14 16:50:53 INFO parallel_go::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-14 16:50:53 INFO parallel_go::ImageRegion::fromRecord Selected bounding box :
2014-10-14 16:50:53 INFO parallel_go::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (10:02:38.073, +42.48.02.752, I, 53513891.51Hz to 08:28:13.988, +57.15.03.217, I, 53513891.51Hz)
2014-10-14 16:50:53 INFO parallel_go::ImageStatsCalculator::statistics Regions ---
2014-10-14 16:50:53 INFO parallel_go::ImageStatsCalculator::statistics -- bottom-left corner (pixel) [blc]: [0, 0, 0, 0]
2014-10-14 16:50:53 INFO parallel_go::ImageStatsCalculator::statistics -- top-right corner (pixel) [trc]: [1023, 1023, 0, 0]
2014-10-14 16:50:53 INFO parallel_go::ImageStatsCalculator::statistics -- bottom-left corner (world) [blcf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 16:50:53 INFO parallel_go::ImageStatsCalculator::statistics -- top-right corner (world) [trcf]: 08:28:13.988, +57.15.03.217, I, 53513891.51Hz
2014-10-14 16:50:53 INFO parallel_go:::: Values ---
2014-10-14 16:50:53 INFO parallel_go:::: -- number of points [npts]: 1.04858e+06
2014-10-14 16:50:53 INFO parallel_go:::: -- maximum value [max]: 1.63222e+08
2014-10-14 16:50:53 INFO parallel_go:::: -- minimum value [min]: 1.63222e+08
2014-10-14 16:50:53 INFO parallel_go:::: -- position of max value (pixel) [maxpos]: [0, 0, 0, 0]
2014-10-14 16:50:53 INFO parallel_go:::: -- position of min value (pixel) [minpos]: [0, 0, 0, 0]
2014-10-14 16:50:53 INFO parallel_go:::: -- position of max value (world) [maxposf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 16:50:53 INFO parallel_go:::: -- position of min value (world) [minposf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 16:50:53 INFO parallel_go:::: -- Sum of pixel values [sum]: 1.7115e+14
2014-10-14 16:50:53 INFO parallel_go:::: -- Sum of squared pixel values [sumsq]: 2.79354e+22
2014-10-14 16:50:53 INFO parallel_go:::: Statistics ---
2014-10-14 16:50:53 INFO parallel_go:::: -- Mean of the pixel values [mean]: 1.63222e+08
2014-10-14 16:50:53 INFO parallel_go:::: -- Variance of the pixel values : 0 0
2014-10-14 16:50:53 INFO parallel_go:::: -- Standard deviation of the Mean [sigma]: 0
2014-10-14 16:50:53 INFO parallel_go:::: -- Root mean square [rms]: 1.63222e+08
2014-10-14 16:50:53 INFO parallel_go::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-14 16:50:53 INFO parallel_go::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-14 16:50:53 INFO parallel_go::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-14 16:50:53 INFO parallel_go::ImageRegion::fromRecord Selected bounding box :
2014-10-14 16:50:53 INFO parallel_go::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (10:02:38.073, +42.48.02.752, I, 53513891.51Hz to 08:28:13.988, +57.15.03.217, I, 53513891.51Hz)
2014-10-14 16:50:53 INFO parallel_go::ImageStatsCalculator::statistics # Npts Sum Mean Rms Std dev Minimum Maximum
2014-10-14 16:50:53 INFO parallel_go::ImageStatsCalculator::statistics+ 1.048576e+06 1.711503e+14 1.632216e+08 1.632216e+08 0.000000e+00 1.632216e+08 1.632216e+08
2014-10-14 16:53:17 INFO parallel_go::image::statistics Determining stats for image __sumweight_image
2014-10-14 16:53:17 INFO parallel_go::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-14 16:53:17 INFO parallel_go::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-14 16:53:17 INFO parallel_go::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-14 16:53:17 INFO parallel_go::ImageRegion::fromRecord Selected bounding box :
2014-10-14 16:53:17 INFO parallel_go::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (10:02:38.073, +42.48.02.752, I, 53513891.51Hz to 08:28:13.988, +57.15.03.217, I, 53513891.51Hz)
2014-10-14 16:53:17 INFO parallel_go::ImageStatsCalculator::statistics Regions ---
2014-10-14 16:53:17 INFO parallel_go::ImageStatsCalculator::statistics -- bottom-left corner (pixel) [blc]: [0, 0, 0, 0]
2014-10-14 16:53:17 INFO parallel_go::ImageStatsCalculator::statistics -- top-right corner (pixel) [trc]: [1023, 1023, 0, 0]
2014-10-14 16:53:17 INFO parallel_go::ImageStatsCalculator::statistics -- bottom-left corner (world) [blcf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 16:53:17 INFO parallel_go::ImageStatsCalculator::statistics -- top-right corner (world) [trcf]: 08:28:13.988, +57.15.03.217, I, 53513891.51Hz
2014-10-14 16:53:17 INFO parallel_go:::: Values ---
2014-10-14 16:53:17 INFO parallel_go:::: -- number of points [npts]: 1.04858e+06
2014-10-14 16:53:17 INFO parallel_go:::: -- maximum value [max]: 1.63222e+08
2014-10-14 16:53:17 INFO parallel_go:::: -- minimum value [min]: 1.63222e+08
2014-10-14 16:53:17 INFO parallel_go:::: -- position of max value (pixel) [maxpos]: [0, 0, 0, 0]
2014-10-14 16:53:17 INFO parallel_go:::: -- position of min value (pixel) [minpos]: [0, 0, 0, 0]
2014-10-14 16:53:17 INFO parallel_go:::: -- position of max value (world) [maxposf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 16:53:17 INFO parallel_go:::: -- position of min value (world) [minposf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 16:53:17 INFO parallel_go:::: -- Sum of pixel values [sum]: 1.7115e+14
2014-10-14 16:53:17 INFO parallel_go:::: -- Sum of squared pixel values [sumsq]: 2.79354e+22
2014-10-14 16:53:17 INFO parallel_go:::: Statistics ---
2014-10-14 16:53:17 INFO parallel_go:::: -- Mean of the pixel values [mean]: 1.63222e+08
2014-10-14 16:53:17 INFO parallel_go:::: -- Variance of the pixel values : 0 0
2014-10-14 16:53:17 INFO parallel_go:::: -- Standard deviation of the Mean [sigma]: 0
2014-10-14 16:53:17 INFO parallel_go:::: -- Root mean square [rms]: 1.63222e+08
2014-10-14 16:53:17 INFO parallel_go::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-14 16:53:17 INFO parallel_go::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-14 16:53:17 INFO parallel_go::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-14 16:53:17 INFO parallel_go::ImageRegion::fromRecord Selected bounding box :
2014-10-14 16:53:17 INFO parallel_go::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (10:02:38.073, +42.48.02.752, I, 53513891.51Hz to 08:28:13.988, +57.15.03.217, I, 53513891.51Hz)
2014-10-14 16:53:17 INFO parallel_go::ImageStatsCalculator::statistics # Npts Sum Mean Rms Std dev Minimum Maximum
2014-10-14 16:53:17 INFO parallel_go::ImageStatsCalculator::statistics+ 1.048576e+06 1.711503e+14 1.632216e+08 1.632216e+08 0.000000e+00 1.632216e+08 1.632216e+08
2014-10-14 16:53:17 INFO parallel_go::image::statistics Determining stats for image __sumweight_image
2014-10-14 16:53:17 INFO parallel_go::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-14 16:53:17 INFO parallel_go::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-14 16:53:17 INFO parallel_go::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-14 16:53:17 INFO parallel_go::ImageRegion::fromRecord Selected bounding box :
2014-10-14 16:53:17 INFO parallel_go::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (10:02:38.073, +42.48.02.752, I, 53513891.51Hz to 08:28:13.988, +57.15.03.217, I, 53513891.51Hz)
2014-10-14 16:53:17 INFO parallel_go::ImageStatsCalculator::statistics Regions ---
2014-10-14 16:53:17 INFO parallel_go::ImageStatsCalculator::statistics -- bottom-left corner (pixel) [blc]: [0, 0, 0, 0]
2014-10-14 16:53:17 INFO parallel_go::ImageStatsCalculator::statistics -- top-right corner (pixel) [trc]: [1023, 1023, 0, 0]
2014-10-14 16:53:17 INFO parallel_go::ImageStatsCalculator::statistics -- bottom-left corner (world) [blcf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 16:53:17 INFO parallel_go::ImageStatsCalculator::statistics -- top-right corner (world) [trcf]: 08:28:13.988, +57.15.03.217, I, 53513891.51Hz
2014-10-14 16:53:17 INFO parallel_go:::: Values ---
2014-10-14 16:53:17 INFO parallel_go:::: -- number of points [npts]: 1.04858e+06
2014-10-14 16:53:17 INFO parallel_go:::: -- maximum value [max]: 1.63222e+08
2014-10-14 16:53:17 INFO parallel_go:::: -- minimum value [min]: 1.63222e+08
2014-10-14 16:53:17 INFO parallel_go:::: -- position of max value (pixel) [maxpos]: [0, 0, 0, 0]
2014-10-14 16:53:17 INFO parallel_go:::: -- position of min value (pixel) [minpos]: [0, 0, 0, 0]
2014-10-14 16:53:17 INFO parallel_go:::: -- position of max value (world) [maxposf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 16:53:17 INFO parallel_go:::: -- position of min value (world) [minposf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 16:53:17 INFO parallel_go:::: -- Sum of pixel values [sum]: 1.7115e+14
2014-10-14 16:53:17 INFO parallel_go:::: -- Sum of squared pixel values [sumsq]: 2.79354e+22
2014-10-14 16:53:17 INFO parallel_go:::: Statistics ---
2014-10-14 16:53:17 INFO parallel_go:::: -- Mean of the pixel values [mean]: 1.63222e+08
2014-10-14 16:53:17 INFO parallel_go:::: -- Variance of the pixel values : 0 0
2014-10-14 16:53:17 INFO parallel_go:::: -- Standard deviation of the Mean [sigma]: 0
2014-10-14 16:53:17 INFO parallel_go:::: -- Root mean square [rms]: 1.63222e+08
2014-10-14 16:53:17 INFO parallel_go::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-14 16:53:17 INFO parallel_go::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-14 16:53:17 INFO parallel_go::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-14 16:53:17 INFO parallel_go::ImageRegion::fromRecord Selected bounding box :
2014-10-14 16:53:17 INFO parallel_go::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (10:02:38.073, +42.48.02.752, I, 53513891.51Hz to 08:28:13.988, +57.15.03.217, I, 53513891.51Hz)
2014-10-14 16:53:17 INFO parallel_go::ImageStatsCalculator::statistics # Npts Sum Mean Rms Std dev Minimum Maximum
2014-10-14 16:53:17 INFO parallel_go::ImageStatsCalculator::statistics+ 1.048576e+06 1.711503e+14 1.632216e+08 1.632216e+08 0.000000e+00 1.632216e+08 1.632216e+08
2014-10-14 16:53:18 INFO parallel_go::imager::setDataOnThisMS() Performing selection on MeasurementSet : /home/mknapp/L85562_all_flagged.MS
2014-10-14 16:53:18 INFO parallel_go::imager::setDataOnThisMS() Selecting on fields : 0
2014-10-14 16:53:18 INFO parallel_go::imager::setDataOnThisMS() Selecting on spectral windows expression :15~105
2014-10-14 17:01:20 INFO parallel_go::imager::setDataOnThisMS() Selected 137989761 out of 181964520 rows.
2014-10-14 17:01:20 INFO parallel_go::imager::setDataOnThisMS() 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-14 17:02:58 INFO parallel_go::imager::defineimage() Defining image properties:nx=128 ny=128 cellx='1arcsec' celly='1arcsec' stokes=I' mode=MFS nchan=-1 start=0 step=0 spwids=[0] fieldid=0 facets=1 frame=1 distance='0'
2014-10-14 17:02:58 INFO parallel_go::imager::defineimage() phaseCenter='field-0 ' mStart='Radialvelocity: 0' qStep='0 '' mFreqStart='Frequency: 0
2014-10-14 17:02:58 INFO parallel_go::imager::setoptions() Setting processing options
2014-10-14 17:02:58 INFO parallel_go::imager::ft() Fourier transforming: replacing visibility model header
2014-10-14 17:02:59 INFO parallel_go::imager::createFTMachine() Performing w-plane projection
2014-10-14 17:02:59 INFO parallel_go::WPConvFunc::findConvFunction W projection using 512 planes
2014-10-14 17:02:59 INFO parallel_go::WPConvFunc::findConvFunction Estimating maximum possible W = 1004.43 (wavelengths)
2014-10-14 17:02:59 INFO parallel_go::WPConvFunc::findConvFunction Typical wavelength = 8.34241 (m)
2014-10-14 17:02:59 INFO parallel_go::WPConvFunc::findConvFunction Scaling in W (at maximum W) = 0.0038466 wavelengths per pixel
2014-10-14 17:03:31 INFO parallel_go::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, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 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, 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, 36, 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, 40, 40, 44, 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, 48, 48, 52, 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, 56, 60, 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, 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, 72, 72, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 88, 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, 96, 96, 100, 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, 108, 108, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 124, 124, 124, 124, 124, 124, 124, 124, 124, 128, 128, 128, 128, 128, 128] pixels in Fourier plane
2014-10-14 17:03:31 INFO parallel_go::WPConvFunc::findConvFunction Memory used in gridding function = 71 MB from maximum 245997 MB
2014-10-14 17:04:29 INFO parallel_go::::casa ##### End Task: pclean #####
2014-10-14 17:04:29 INFO parallel_go::::casa+ ##########################################
2014-10-14 17:04:29 INFO imstat::::casa
2014-10-14 17:04:29 INFO imstat::::casa+ ##########################################
2014-10-14 17:04:29 INFO imstat::::casa+ ##### Begin Task: imstat #####
2014-10-14 17:04:29 INFO imstat::::casa imstat(imagename="timesteps_flg1_dt0-05-37.5_n1_it10000_wp512_facets8_npix1024.image",axes=-1,region="",box="",
2014-10-14 17:04:29 INFO imstat::::casa+ chans="",stokes="",listit=True,verbose=True,mask="",
2014-10-14 17:04:29 INFO imstat::::casa+ stretch=False,logfile="",append=True)
2014-10-14 17:04:29 INFO imstat::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-14 17:04:29 INFO imstat::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-14 17:04:29 INFO imstat::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-14 17:04:29 INFO imstat::image::statistics Determining stats for image timesteps_flg1_dt0-05-37.5_n1_it10000_wp512_facets8_npix1024.image
2014-10-14 17:04:29 INFO imstat::CasacRegionManager::fromBCS Set region from supplied region record
2014-10-14 17:04:29 INFO imstat::ImageRegion::fromRecord Selected bounding box :
2014-10-14 17:04:29 INFO imstat::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (10:02:38.073, +42.48.02.752, I, 53513891.51Hz to 08:28:13.988, +57.15.03.217, I, 53513891.51Hz)
2014-10-14 17:04:29 INFO imstat::ImageStatsCalculator::statistics Regions ---
2014-10-14 17:04:29 INFO imstat::ImageStatsCalculator::statistics -- bottom-left corner (pixel) [blc]: [0, 0, 0, 0]
2014-10-14 17:04:29 INFO imstat::ImageStatsCalculator::statistics -- top-right corner (pixel) [trc]: [1023, 1023, 0, 0]
2014-10-14 17:04:29 INFO imstat::ImageStatsCalculator::statistics -- bottom-left corner (world) [blcf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 17:04:29 INFO imstat::ImageStatsCalculator::statistics -- top-right corner (world) [trcf]: 08:28:13.988, +57.15.03.217, I, 53513891.51Hz
2014-10-14 17:04:29 INFO imstat:::: Values ---
2014-10-14 17:04:29 INFO imstat:::: -- flux density [flux]: 97.6431 Jy
2014-10-14 17:04:29 INFO imstat:::: -- number of points [npts]: 1.04858e+06
2014-10-14 17:04:29 INFO imstat:::: -- maximum value [max]: 5.37981 Jy/beam
2014-10-14 17:04:29 INFO imstat:::: -- minimum value [min]: -0.153347 Jy/beam
2014-10-14 17:04:29 INFO imstat:::: -- position of max value (pixel) [maxpos]: [467, 616, 0, 0]
2014-10-14 17:04:29 INFO imstat:::: -- position of min value (pixel) [minpos]: [622, 641, 0, 0]
2014-10-14 17:04:29 INFO imstat:::: -- position of max value (world) [maxposf]: 09:26:48.304, +52.05.57.053, I, 53513891.51Hz
2014-10-14 17:04:29 INFO imstat:::: -- position of min value (world) [minposf]: 09:12:19.857, +52.25.59.243, I, 53513891.51Hz
2014-10-14 17:04:29 INFO imstat:::: -- Sum of pixel values [sum]: 5902.61 Jy/beam
2014-10-14 17:04:29 INFO imstat:::: -- Sum of squared pixel values [sumsq]: 5755.45 Jy/beam.Jy/beam
2014-10-14 17:04:29 INFO imstat:::: Statistics ---
2014-10-14 17:04:29 INFO imstat:::: -- Mean of the pixel values [mean]: 0.00562917 Jy/beam
2014-10-14 17:04:29 INFO imstat:::: -- Variance of the pixel values : 0.00545714 Jy/beam0
2014-10-14 17:04:29 INFO imstat:::: -- Standard deviation of the Mean [sigma]: 0.0738725 Jy/beam
2014-10-14 17:04:29 INFO imstat:::: -- Root mean square [rms]: 0.0740866 Jy/beam
2014-10-14 17:04:29 INFO imstat:::: -- Median of the pixel values [median]: -0.000745106 Jy/beam
2014-10-14 17:04:29 INFO imstat:::: -- Median of the deviations [medabsdevmed]: 0.011705 Jy/beam
2014-10-14 17:04:29 INFO imstat:::: -- Quartile [quartile]: 0.0234428 Jy/beam
2014-10-14 17:04:29 INFO imstat::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-14 17:04:29 INFO imstat::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-14 17:04:29 INFO imstat::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-14 17:04:29 INFO imstat::ImageRegion::fromRecord Selected bounding box :
2014-10-14 17:04:29 INFO imstat::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (10:02:38.073, +42.48.02.752, I, 53513891.51Hz to 08:28:13.988, +57.15.03.217, I, 53513891.51Hz)
2014-10-14 17:04:29 INFO imstat::ImageStatsCalculator::statistics # Npts Sum Mean Rms Std dev Minimum Maximum
2014-10-14 17:04:29 INFO imstat::ImageStatsCalculator::statistics+ 1.048576e+06 5.902613e+03 5.629170e-03 7.408658e-02 7.387246e-02 -1.533472e-01 5.379808e+00
2014-10-14 17:04:29 INFO imstat::::casa ##### End Task: imstat #####
2014-10-14 17:04:29 INFO imstat::::casa+ ##########################################
2014-10-14 17:04:29 INFO pclean::::casa
2014-10-14 17:04:29 INFO pclean::::casa+ ##########################################
2014-10-14 17:04:29 INFO pclean::::casa+ ##### Begin Task: pclean #####
2014-10-14 17:04:29 INFO pclean::::casa pclean(vis="L85562_all_flagged.MS",imagename="timesteps_flg1_dt0-05-37.5_n2_it10000_wp512_facets8_npix1024",imsize=[1024, 1024],cell="51.3388700849arcsec",
2014-10-14 17:04:29 INFO pclean::::casa+ phasecenter="",stokes="I",mask="",field="0",spw="15~105",
2014-10-14 17:04:29 INFO pclean::::casa+ ftmachine="wproject",alg="multiscale",scales=[0],cyclefactor=1.5,majorcycles=5,
2014-10-14 17:04:29 INFO pclean::::casa+ niter=10000,gain=0.1,threshold="0.0Jy",weighting="natural",robust=0.0,
2014-10-14 17:04:29 INFO pclean::::casa+ npixels=0,mode="continuum",nterms=1,start=0,nchan=1,
2014-10-14 17:04:29 INFO pclean::::casa+ width=1,restfreq="",interactive=False,npercycle=100,wprojplanes=512,
2014-10-14 17:04:29 INFO pclean::::casa+ facets=8,overwrite=True,uvtaper=False,outertaper=[''],timerange="2013/01/24/21:48:26.000000+0:05:37.5",
2014-10-14 17:04:29 INFO pclean::::casa+ uvrange="",antenna="",scan="",observation="",pbcor=False,
2014-10-14 17:04:29 INFO pclean::::casa+ minpb=0.2,clusterdef="")
2014-10-14 17:09:24 INFO parallel_go::image::statistics Determining stats for image __sumweight_image
2014-10-14 17:09:24 INFO parallel_go::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-14 17:09:24 INFO parallel_go::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-14 17:09:24 INFO parallel_go::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-14 17:09:24 INFO parallel_go::ImageRegion::fromRecord Selected bounding box :
2014-10-14 17:09:24 INFO parallel_go::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (10:02:38.073, +42.48.02.752, I, 53513891.51Hz to 08:28:13.988, +57.15.03.217, I, 53513891.51Hz)
2014-10-14 17:09:24 INFO parallel_go::ImageStatsCalculator::statistics Regions ---
2014-10-14 17:09:24 INFO parallel_go::ImageStatsCalculator::statistics -- bottom-left corner (pixel) [blc]: [0, 0, 0, 0]
2014-10-14 17:09:24 INFO parallel_go::ImageStatsCalculator::statistics -- top-right corner (pixel) [trc]: [1023, 1023, 0, 0]
2014-10-14 17:09:24 INFO parallel_go::ImageStatsCalculator::statistics -- bottom-left corner (world) [blcf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 17:09:24 INFO parallel_go::ImageStatsCalculator::statistics -- top-right corner (world) [trcf]: 08:28:13.988, +57.15.03.217, I, 53513891.51Hz
2014-10-14 17:09:24 INFO parallel_go:::: Values ---
2014-10-14 17:09:24 INFO parallel_go:::: -- number of points [npts]: 1.04858e+06
2014-10-14 17:09:24 INFO parallel_go:::: -- maximum value [max]: 1.63222e+08
2014-10-14 17:09:24 INFO parallel_go:::: -- minimum value [min]: 1.63222e+08
2014-10-14 17:09:24 INFO parallel_go:::: -- position of max value (pixel) [maxpos]: [0, 0, 0, 0]
2014-10-14 17:09:24 INFO parallel_go:::: -- position of min value (pixel) [minpos]: [0, 0, 0, 0]
2014-10-14 17:09:24 INFO parallel_go:::: -- position of max value (world) [maxposf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 17:09:24 INFO parallel_go:::: -- position of min value (world) [minposf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 17:09:24 INFO parallel_go:::: -- Sum of pixel values [sum]: 1.7115e+14
2014-10-14 17:09:24 INFO parallel_go:::: -- Sum of squared pixel values [sumsq]: 2.79354e+22
2014-10-14 17:09:24 INFO parallel_go:::: Statistics ---
2014-10-14 17:09:24 INFO parallel_go:::: -- Mean of the pixel values [mean]: 1.63222e+08
2014-10-14 17:09:24 INFO parallel_go:::: -- Variance of the pixel values : 0 0
2014-10-14 17:09:24 INFO parallel_go:::: -- Standard deviation of the Mean [sigma]: 0
2014-10-14 17:09:24 INFO parallel_go:::: -- Root mean square [rms]: 1.63222e+08
2014-10-14 17:09:24 INFO parallel_go::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-14 17:09:24 INFO parallel_go::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-14 17:09:24 INFO parallel_go::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-14 17:09:24 INFO parallel_go::ImageRegion::fromRecord Selected bounding box :
2014-10-14 17:09:24 INFO parallel_go::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (10:02:38.073, +42.48.02.752, I, 53513891.51Hz to 08:28:13.988, +57.15.03.217, I, 53513891.51Hz)
2014-10-14 17:09:24 INFO parallel_go::ImageStatsCalculator::statistics # Npts Sum Mean Rms Std dev Minimum Maximum
2014-10-14 17:09:24 INFO parallel_go::ImageStatsCalculator::statistics+ 1.048576e+06 1.711503e+14 1.632216e+08 1.632216e+08 0.000000e+00 1.632216e+08 1.632216e+08
2014-10-14 17:09:24 WARN parallel_go::image::removefile /home/mknapp/timesteps_flg1_dt0-05-37.5_n2_it10000_wp512_facets8_npix1024.mask does not exist.
2014-10-14 17:09:24 INFO parallel_go::ImageAnalysis::imagefromimage Creating image '/home/mknapp/timesteps_flg1_dt0-05-37.5_n2_it10000_wp512_facets8_npix1024.mask' of shape [1024, 1024, 1, 1]
2014-10-14 17:09:24 INFO parallel_go::ImageAnalysis::imagefromimage Creating image '/home/mknapp/timesteps_flg1_dt0-05-37.5_n2_it10000_wp512_facets8_npix1024.model' of shape [1024, 1024, 1, 1]
2014-10-14 17:09:24 INFO parallel_go::image::statistics Determining stats for image __sumweight_image
2014-10-14 17:09:24 INFO parallel_go::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-14 17:09:24 INFO parallel_go::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-14 17:09:24 INFO parallel_go::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-14 17:09:24 INFO parallel_go::ImageRegion::fromRecord Selected bounding box :
2014-10-14 17:09:24 INFO parallel_go::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (10:02:38.073, +42.48.02.752, I, 53513891.51Hz to 08:28:13.988, +57.15.03.217, I, 53513891.51Hz)
2014-10-14 17:09:24 INFO parallel_go::ImageStatsCalculator::statistics Regions ---
2014-10-14 17:09:24 INFO parallel_go::ImageStatsCalculator::statistics -- bottom-left corner (pixel) [blc]: [0, 0, 0, 0]
2014-10-14 17:09:24 INFO parallel_go::ImageStatsCalculator::statistics -- top-right corner (pixel) [trc]: [1023, 1023, 0, 0]
2014-10-14 17:09:24 INFO parallel_go::ImageStatsCalculator::statistics -- bottom-left corner (world) [blcf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 17:09:24 INFO parallel_go::ImageStatsCalculator::statistics -- top-right corner (world) [trcf]: 08:28:13.988, +57.15.03.217, I, 53513891.51Hz
2014-10-14 17:09:25 INFO parallel_go:::: Values ---
2014-10-14 17:09:25 INFO parallel_go:::: -- number of points [npts]: 1.04858e+06
2014-10-14 17:09:25 INFO parallel_go:::: -- maximum value [max]: 1.63222e+08
2014-10-14 17:09:25 INFO parallel_go:::: -- minimum value [min]: 1.63222e+08
2014-10-14 17:09:25 INFO parallel_go:::: -- position of max value (pixel) [maxpos]: [0, 0, 0, 0]
2014-10-14 17:09:25 INFO parallel_go:::: -- position of min value (pixel) [minpos]: [0, 0, 0, 0]
2014-10-14 17:09:25 INFO parallel_go:::: -- position of max value (world) [maxposf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 17:09:25 INFO parallel_go:::: -- position of min value (world) [minposf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 17:09:25 INFO parallel_go:::: -- Sum of pixel values [sum]: 1.7115e+14
2014-10-14 17:09:25 INFO parallel_go:::: -- Sum of squared pixel values [sumsq]: 2.79354e+22
2014-10-14 17:09:25 INFO parallel_go:::: Statistics ---
2014-10-14 17:09:25 INFO parallel_go:::: -- Mean of the pixel values [mean]: 1.63222e+08
2014-10-14 17:09:25 INFO parallel_go:::: -- Variance of the pixel values : 0 0
2014-10-14 17:09:25 INFO parallel_go:::: -- Standard deviation of the Mean [sigma]: 0
2014-10-14 17:09:25 INFO parallel_go:::: -- Root mean square [rms]: 1.63222e+08
2014-10-14 17:09:25 INFO parallel_go::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-14 17:09:25 INFO parallel_go::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-14 17:09:25 INFO parallel_go::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-14 17:09:25 INFO parallel_go::ImageRegion::fromRecord Selected bounding box :
2014-10-14 17:09:25 INFO parallel_go::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (10:02:38.073, +42.48.02.752, I, 53513891.51Hz to 08:28:13.988, +57.15.03.217, I, 53513891.51Hz)
2014-10-14 17:09:25 INFO parallel_go::ImageStatsCalculator::statistics # Npts Sum Mean Rms Std dev Minimum Maximum
2014-10-14 17:09:25 INFO parallel_go::ImageStatsCalculator::statistics+ 1.048576e+06 1.711503e+14 1.632216e+08 1.632216e+08 0.000000e+00 1.632216e+08 1.632216e+08
2014-10-14 17:11:42 INFO parallel_go::image::statistics Determining stats for image __sumweight_image
2014-10-14 17:11:42 INFO parallel_go::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-14 17:11:42 INFO parallel_go::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-14 17:11:42 INFO parallel_go::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-14 17:11:42 INFO parallel_go::ImageRegion::fromRecord Selected bounding box :
2014-10-14 17:11:42 INFO parallel_go::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (10:02:38.073, +42.48.02.752, I, 53513891.51Hz to 08:28:13.988, +57.15.03.217, I, 53513891.51Hz)
2014-10-14 17:11:42 INFO parallel_go::ImageStatsCalculator::statistics Regions ---
2014-10-14 17:11:42 INFO parallel_go::ImageStatsCalculator::statistics -- bottom-left corner (pixel) [blc]: [0, 0, 0, 0]
2014-10-14 17:11:42 INFO parallel_go::ImageStatsCalculator::statistics -- top-right corner (pixel) [trc]: [1023, 1023, 0, 0]
2014-10-14 17:11:42 INFO parallel_go::ImageStatsCalculator::statistics -- bottom-left corner (world) [blcf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 17:11:42 INFO parallel_go::ImageStatsCalculator::statistics -- top-right corner (world) [trcf]: 08:28:13.988, +57.15.03.217, I, 53513891.51Hz
2014-10-14 17:11:42 INFO parallel_go:::: Values ---
2014-10-14 17:11:42 INFO parallel_go:::: -- number of points [npts]: 1.04858e+06
2014-10-14 17:11:42 INFO parallel_go:::: -- maximum value [max]: 1.63222e+08
2014-10-14 17:11:42 INFO parallel_go:::: -- minimum value [min]: 1.63222e+08
2014-10-14 17:11:42 INFO parallel_go:::: -- position of max value (pixel) [maxpos]: [0, 0, 0, 0]
2014-10-14 17:11:42 INFO parallel_go:::: -- position of min value (pixel) [minpos]: [0, 0, 0, 0]
2014-10-14 17:11:42 INFO parallel_go:::: -- position of max value (world) [maxposf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 17:11:42 INFO parallel_go:::: -- position of min value (world) [minposf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 17:11:42 INFO parallel_go:::: -- Sum of pixel values [sum]: 1.7115e+14
2014-10-14 17:11:42 INFO parallel_go:::: -- Sum of squared pixel values [sumsq]: 2.79354e+22
2014-10-14 17:11:42 INFO parallel_go:::: Statistics ---
2014-10-14 17:11:42 INFO parallel_go:::: -- Mean of the pixel values [mean]: 1.63222e+08
2014-10-14 17:11:42 INFO parallel_go:::: -- Variance of the pixel values : 0 0
2014-10-14 17:11:42 INFO parallel_go:::: -- Standard deviation of the Mean [sigma]: 0
2014-10-14 17:11:42 INFO parallel_go:::: -- Root mean square [rms]: 1.63222e+08
2014-10-14 17:11:42 INFO parallel_go::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-14 17:11:42 INFO parallel_go::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-14 17:11:42 INFO parallel_go::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-14 17:11:42 INFO parallel_go::ImageRegion::fromRecord Selected bounding box :
2014-10-14 17:11:42 INFO parallel_go::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (10:02:38.073, +42.48.02.752, I, 53513891.51Hz to 08:28:13.988, +57.15.03.217, I, 53513891.51Hz)
2014-10-14 17:11:42 INFO parallel_go::ImageStatsCalculator::statistics # Npts Sum Mean Rms Std dev Minimum Maximum
2014-10-14 17:11:42 INFO parallel_go::ImageStatsCalculator::statistics+ 1.048576e+06 1.711503e+14 1.632216e+08 1.632216e+08 0.000000e+00 1.632216e+08 1.632216e+08
2014-10-14 17:14:01 INFO parallel_go::image::statistics Determining stats for image __sumweight_image
2014-10-14 17:14:01 INFO parallel_go::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-14 17:14:01 INFO parallel_go::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-14 17:14:01 INFO parallel_go::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-14 17:14:01 INFO parallel_go::ImageRegion::fromRecord Selected bounding box :
2014-10-14 17:14:01 INFO parallel_go::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (10:02:38.073, +42.48.02.752, I, 53513891.51Hz to 08:28:13.988, +57.15.03.217, I, 53513891.51Hz)
2014-10-14 17:14:01 INFO parallel_go::ImageStatsCalculator::statistics Regions ---
2014-10-14 17:14:01 INFO parallel_go::ImageStatsCalculator::statistics -- bottom-left corner (pixel) [blc]: [0, 0, 0, 0]
2014-10-14 17:14:01 INFO parallel_go::ImageStatsCalculator::statistics -- top-right corner (pixel) [trc]: [1023, 1023, 0, 0]
2014-10-14 17:14:01 INFO parallel_go::ImageStatsCalculator::statistics -- bottom-left corner (world) [blcf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 17:14:01 INFO parallel_go::ImageStatsCalculator::statistics -- top-right corner (world) [trcf]: 08:28:13.988, +57.15.03.217, I, 53513891.51Hz
2014-10-14 17:14:01 INFO parallel_go:::: Values ---
2014-10-14 17:14:01 INFO parallel_go:::: -- number of points [npts]: 1.04858e+06
2014-10-14 17:14:01 INFO parallel_go:::: -- maximum value [max]: 1.63222e+08
2014-10-14 17:14:01 INFO parallel_go:::: -- minimum value [min]: 1.63222e+08
2014-10-14 17:14:01 INFO parallel_go:::: -- position of max value (pixel) [maxpos]: [0, 0, 0, 0]
2014-10-14 17:14:01 INFO parallel_go:::: -- position of min value (pixel) [minpos]: [0, 0, 0, 0]
2014-10-14 17:14:01 INFO parallel_go:::: -- position of max value (world) [maxposf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 17:14:01 INFO parallel_go:::: -- position of min value (world) [minposf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 17:14:01 INFO parallel_go:::: -- Sum of pixel values [sum]: 1.7115e+14
2014-10-14 17:14:01 INFO parallel_go:::: -- Sum of squared pixel values [sumsq]: 2.79354e+22
2014-10-14 17:14:01 INFO parallel_go:::: Statistics ---
2014-10-14 17:14:01 INFO parallel_go:::: -- Mean of the pixel values [mean]: 1.63222e+08
2014-10-14 17:14:01 INFO parallel_go:::: -- Variance of the pixel values : 0 0
2014-10-14 17:14:01 INFO parallel_go:::: -- Standard deviation of the Mean [sigma]: 0
2014-10-14 17:14:01 INFO parallel_go:::: -- Root mean square [rms]: 1.63222e+08
2014-10-14 17:14:01 INFO parallel_go::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-14 17:14:01 INFO parallel_go::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-14 17:14:01 INFO parallel_go::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-14 17:14:01 INFO parallel_go::ImageRegion::fromRecord Selected bounding box :
2014-10-14 17:14:01 INFO parallel_go::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (10:02:38.073, +42.48.02.752, I, 53513891.51Hz to 08:28:13.988, +57.15.03.217, I, 53513891.51Hz)
2014-10-14 17:14:01 INFO parallel_go::ImageStatsCalculator::statistics # Npts Sum Mean Rms Std dev Minimum Maximum
2014-10-14 17:14:01 INFO parallel_go::ImageStatsCalculator::statistics+ 1.048576e+06 1.711503e+14 1.632216e+08 1.632216e+08 0.000000e+00 1.632216e+08 1.632216e+08
2014-10-14 17:16:24 INFO parallel_go::image::statistics Determining stats for image __sumweight_image
2014-10-14 17:16:24 INFO parallel_go::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-14 17:16:24 INFO parallel_go::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-14 17:16:24 INFO parallel_go::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-14 17:16:24 INFO parallel_go::ImageRegion::fromRecord Selected bounding box :
2014-10-14 17:16:24 INFO parallel_go::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (10:02:38.073, +42.48.02.752, I, 53513891.51Hz to 08:28:13.988, +57.15.03.217, I, 53513891.51Hz)
2014-10-14 17:16:24 INFO parallel_go::ImageStatsCalculator::statistics Regions ---
2014-10-14 17:16:24 INFO parallel_go::ImageStatsCalculator::statistics -- bottom-left corner (pixel) [blc]: [0, 0, 0, 0]
2014-10-14 17:16:24 INFO parallel_go::ImageStatsCalculator::statistics -- top-right corner (pixel) [trc]: [1023, 1023, 0, 0]
2014-10-14 17:16:24 INFO parallel_go::ImageStatsCalculator::statistics -- bottom-left corner (world) [blcf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 17:16:24 INFO parallel_go::ImageStatsCalculator::statistics -- top-right corner (world) [trcf]: 08:28:13.988, +57.15.03.217, I, 53513891.51Hz
2014-10-14 17:16:24 INFO parallel_go:::: Values ---
2014-10-14 17:16:24 INFO parallel_go:::: -- number of points [npts]: 1.04858e+06
2014-10-14 17:16:24 INFO parallel_go:::: -- maximum value [max]: 1.63222e+08
2014-10-14 17:16:24 INFO parallel_go:::: -- minimum value [min]: 1.63222e+08
2014-10-14 17:16:24 INFO parallel_go:::: -- position of max value (pixel) [maxpos]: [0, 0, 0, 0]
2014-10-14 17:16:24 INFO parallel_go:::: -- position of min value (pixel) [minpos]: [0, 0, 0, 0]
2014-10-14 17:16:24 INFO parallel_go:::: -- position of max value (world) [maxposf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 17:16:24 INFO parallel_go:::: -- position of min value (world) [minposf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 17:16:24 INFO parallel_go:::: -- Sum of pixel values [sum]: 1.7115e+14
2014-10-14 17:16:24 INFO parallel_go:::: -- Sum of squared pixel values [sumsq]: 2.79354e+22
2014-10-14 17:16:24 INFO parallel_go:::: Statistics ---
2014-10-14 17:16:24 INFO parallel_go:::: -- Mean of the pixel values [mean]: 1.63222e+08
2014-10-14 17:16:24 INFO parallel_go:::: -- Variance of the pixel values : 0 0
2014-10-14 17:16:24 INFO parallel_go:::: -- Standard deviation of the Mean [sigma]: 0
2014-10-14 17:16:24 INFO parallel_go:::: -- Root mean square [rms]: 1.63222e+08
2014-10-14 17:16:24 INFO parallel_go::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-14 17:16:24 INFO parallel_go::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-14 17:16:24 INFO parallel_go::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-14 17:16:24 INFO parallel_go::ImageRegion::fromRecord Selected bounding box :
2014-10-14 17:16:24 INFO parallel_go::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (10:02:38.073, +42.48.02.752, I, 53513891.51Hz to 08:28:13.988, +57.15.03.217, I, 53513891.51Hz)
2014-10-14 17:16:24 INFO parallel_go::ImageStatsCalculator::statistics # Npts Sum Mean Rms Std dev Minimum Maximum
2014-10-14 17:16:24 INFO parallel_go::ImageStatsCalculator::statistics+ 1.048576e+06 1.711503e+14 1.632216e+08 1.632216e+08 0.000000e+00 1.632216e+08 1.632216e+08
2014-10-14 17:18:43 INFO parallel_go::image::statistics Determining stats for image __sumweight_image
2014-10-14 17:18:43 INFO parallel_go::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-14 17:18:43 INFO parallel_go::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-14 17:18:43 INFO parallel_go::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-14 17:18:43 INFO parallel_go::ImageRegion::fromRecord Selected bounding box :
2014-10-14 17:18:43 INFO parallel_go::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (10:02:38.073, +42.48.02.752, I, 53513891.51Hz to 08:28:13.988, +57.15.03.217, I, 53513891.51Hz)
2014-10-14 17:18:43 INFO parallel_go::ImageStatsCalculator::statistics Regions ---
2014-10-14 17:18:43 INFO parallel_go::ImageStatsCalculator::statistics -- bottom-left corner (pixel) [blc]: [0, 0, 0, 0]
2014-10-14 17:18:43 INFO parallel_go::ImageStatsCalculator::statistics -- top-right corner (pixel) [trc]: [1023, 1023, 0, 0]
2014-10-14 17:18:43 INFO parallel_go::ImageStatsCalculator::statistics -- bottom-left corner (world) [blcf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 17:18:43 INFO parallel_go::ImageStatsCalculator::statistics -- top-right corner (world) [trcf]: 08:28:13.988, +57.15.03.217, I, 53513891.51Hz
2014-10-14 17:18:43 INFO parallel_go:::: Values ---
2014-10-14 17:18:43 INFO parallel_go:::: -- number of points [npts]: 1.04858e+06
2014-10-14 17:18:43 INFO parallel_go:::: -- maximum value [max]: 1.63222e+08
2014-10-14 17:18:43 INFO parallel_go:::: -- minimum value [min]: 1.63222e+08
2014-10-14 17:18:43 INFO parallel_go:::: -- position of max value (pixel) [maxpos]: [0, 0, 0, 0]
2014-10-14 17:18:43 INFO parallel_go:::: -- position of min value (pixel) [minpos]: [0, 0, 0, 0]
2014-10-14 17:18:43 INFO parallel_go:::: -- position of max value (world) [maxposf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 17:18:43 INFO parallel_go:::: -- position of min value (world) [minposf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 17:18:43 INFO parallel_go:::: -- Sum of pixel values [sum]: 1.7115e+14
2014-10-14 17:18:43 INFO parallel_go:::: -- Sum of squared pixel values [sumsq]: 2.79354e+22
2014-10-14 17:18:43 INFO parallel_go:::: Statistics ---
2014-10-14 17:18:43 INFO parallel_go:::: -- Mean of the pixel values [mean]: 1.63222e+08
2014-10-14 17:18:43 INFO parallel_go:::: -- Variance of the pixel values : 0 0
2014-10-14 17:18:43 INFO parallel_go:::: -- Standard deviation of the Mean [sigma]: 0
2014-10-14 17:18:43 INFO parallel_go:::: -- Root mean square [rms]: 1.63222e+08
2014-10-14 17:18:43 INFO parallel_go::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-14 17:18:43 INFO parallel_go::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-14 17:18:43 INFO parallel_go::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-14 17:18:43 INFO parallel_go::ImageRegion::fromRecord Selected bounding box :
2014-10-14 17:18:43 INFO parallel_go::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (10:02:38.073, +42.48.02.752, I, 53513891.51Hz to 08:28:13.988, +57.15.03.217, I, 53513891.51Hz)
2014-10-14 17:18:43 INFO parallel_go::ImageStatsCalculator::statistics # Npts Sum Mean Rms Std dev Minimum Maximum
2014-10-14 17:18:43 INFO parallel_go::ImageStatsCalculator::statistics+ 1.048576e+06 1.711503e+14 1.632216e+08 1.632216e+08 0.000000e+00 1.632216e+08 1.632216e+08
2014-10-14 17:21:08 INFO parallel_go::image::statistics Determining stats for image __sumweight_image
2014-10-14 17:21:08 INFO parallel_go::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-14 17:21:08 INFO parallel_go::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-14 17:21:08 INFO parallel_go::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-14 17:21:08 INFO parallel_go::ImageRegion::fromRecord Selected bounding box :
2014-10-14 17:21:08 INFO parallel_go::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (10:02:38.073, +42.48.02.752, I, 53513891.51Hz to 08:28:13.988, +57.15.03.217, I, 53513891.51Hz)
2014-10-14 17:21:08 INFO parallel_go::ImageStatsCalculator::statistics Regions ---
2014-10-14 17:21:08 INFO parallel_go::ImageStatsCalculator::statistics -- bottom-left corner (pixel) [blc]: [0, 0, 0, 0]
2014-10-14 17:21:08 INFO parallel_go::ImageStatsCalculator::statistics -- top-right corner (pixel) [trc]: [1023, 1023, 0, 0]
2014-10-14 17:21:08 INFO parallel_go::ImageStatsCalculator::statistics -- bottom-left corner (world) [blcf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 17:21:08 INFO parallel_go::ImageStatsCalculator::statistics -- top-right corner (world) [trcf]: 08:28:13.988, +57.15.03.217, I, 53513891.51Hz
2014-10-14 17:21:08 INFO parallel_go:::: Values ---
2014-10-14 17:21:08 INFO parallel_go:::: -- number of points [npts]: 1.04858e+06
2014-10-14 17:21:08 INFO parallel_go:::: -- maximum value [max]: 1.63222e+08
2014-10-14 17:21:08 INFO parallel_go:::: -- minimum value [min]: 1.63222e+08
2014-10-14 17:21:08 INFO parallel_go:::: -- position of max value (pixel) [maxpos]: [0, 0, 0, 0]
2014-10-14 17:21:08 INFO parallel_go:::: -- position of min value (pixel) [minpos]: [0, 0, 0, 0]
2014-10-14 17:21:08 INFO parallel_go:::: -- position of max value (world) [maxposf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 17:21:08 INFO parallel_go:::: -- position of min value (world) [minposf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 17:21:08 INFO parallel_go:::: -- Sum of pixel values [sum]: 1.7115e+14
2014-10-14 17:21:08 INFO parallel_go:::: -- Sum of squared pixel values [sumsq]: 2.79354e+22
2014-10-14 17:21:08 INFO parallel_go:::: Statistics ---
2014-10-14 17:21:08 INFO parallel_go:::: -- Mean of the pixel values [mean]: 1.63222e+08
2014-10-14 17:21:08 INFO parallel_go:::: -- Variance of the pixel values : 0 0
2014-10-14 17:21:08 INFO parallel_go:::: -- Standard deviation of the Mean [sigma]: 0
2014-10-14 17:21:08 INFO parallel_go:::: -- Root mean square [rms]: 1.63222e+08
2014-10-14 17:21:08 INFO parallel_go::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-14 17:21:08 INFO parallel_go::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-14 17:21:08 INFO parallel_go::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-14 17:21:08 INFO parallel_go::ImageRegion::fromRecord Selected bounding box :
2014-10-14 17:21:08 INFO parallel_go::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (10:02:38.073, +42.48.02.752, I, 53513891.51Hz to 08:28:13.988, +57.15.03.217, I, 53513891.51Hz)
2014-10-14 17:21:08 INFO parallel_go::ImageStatsCalculator::statistics # Npts Sum Mean Rms Std dev Minimum Maximum
2014-10-14 17:21:08 INFO parallel_go::ImageStatsCalculator::statistics+ 1.048576e+06 1.711503e+14 1.632216e+08 1.632216e+08 0.000000e+00 1.632216e+08 1.632216e+08
2014-10-14 17:21:08 INFO parallel_go::image::statistics Determining stats for image __sumweight_image
2014-10-14 17:21:08 INFO parallel_go::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-14 17:21:08 INFO parallel_go::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-14 17:21:08 INFO parallel_go::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-14 17:21:08 INFO parallel_go::ImageRegion::fromRecord Selected bounding box :
2014-10-14 17:21:08 INFO parallel_go::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (10:02:38.073, +42.48.02.752, I, 53513891.51Hz to 08:28:13.988, +57.15.03.217, I, 53513891.51Hz)
2014-10-14 17:21:08 INFO parallel_go::ImageStatsCalculator::statistics Regions ---
2014-10-14 17:21:08 INFO parallel_go::ImageStatsCalculator::statistics -- bottom-left corner (pixel) [blc]: [0, 0, 0, 0]
2014-10-14 17:21:08 INFO parallel_go::ImageStatsCalculator::statistics -- top-right corner (pixel) [trc]: [1023, 1023, 0, 0]
2014-10-14 17:21:08 INFO parallel_go::ImageStatsCalculator::statistics -- bottom-left corner (world) [blcf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 17:21:08 INFO parallel_go::ImageStatsCalculator::statistics -- top-right corner (world) [trcf]: 08:28:13.988, +57.15.03.217, I, 53513891.51Hz
2014-10-14 17:21:08 INFO parallel_go:::: Values ---
2014-10-14 17:21:08 INFO parallel_go:::: -- number of points [npts]: 1.04858e+06
2014-10-14 17:21:08 INFO parallel_go:::: -- maximum value [max]: 1.63222e+08
2014-10-14 17:21:08 INFO parallel_go:::: -- minimum value [min]: 1.63222e+08
2014-10-14 17:21:08 INFO parallel_go:::: -- position of max value (pixel) [maxpos]: [0, 0, 0, 0]
2014-10-14 17:21:08 INFO parallel_go:::: -- position of min value (pixel) [minpos]: [0, 0, 0, 0]
2014-10-14 17:21:08 INFO parallel_go:::: -- position of max value (world) [maxposf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 17:21:08 INFO parallel_go:::: -- position of min value (world) [minposf]: 10:02:38.073, +42.48.02.752, I, 53513891.51Hz
2014-10-14 17:21:08 INFO parallel_go:::: -- Sum of pixel values [sum]: 1.7115e+14
2014-10-14 17:21:08 INFO parallel_go:::: -- Sum of squared pixel values [sumsq]: 2.79354e+22
2014-10-14 17:21:08 INFO parallel_go:::: Statistics ---
2014-10-14 17:21:08 INFO parallel_go:::: -- Mean of the pixel values [mean]: 1.63222e+08
2014-10-14 17:21:08 INFO parallel_go:::: -- Variance of the pixel values : 0 0
2014-10-14 17:21:08 INFO parallel_go:::: -- Standard deviation of the Mean [sigma]: 0
2014-10-14 17:21:08 INFO parallel_go:::: -- Root mean square [rms]: 1.63222e+08
2014-10-14 17:21:08 INFO parallel_go::CasacRegionManager::fromBCS No directional region specified. Using full positional plane.
2014-10-14 17:21:08 INFO parallel_go::CasacRegionManager::fromBCS Using all spectral channels.
2014-10-14 17:21:08 INFO parallel_go::CasacRegionManager::fromBCS Using polarizations ALL
2014-10-14 17:21:08 INFO parallel_go::ImageRegion::fromRecord Selected bounding box :
2014-10-14 17:21:08 INFO parallel_go::ImageRegion::fromRecord+ [0, 0, 0, 0] to [1023, 1023, 0, 0] (10:02:38.073, +42.48.02.752, I, 53513891.51Hz to 08:28:13.988, +57.15.03.217, I, 53513891.51Hz)
2014-10-14 17:21:08 INFO parallel_go::ImageStatsCalculator::statistics # Npts Sum Mean Rms Std dev Minimum Maximum
2014-10-14 17:21:08 INFO parallel_go::ImageStatsCalculator::statistics+ 1.048576e+06 1.711503e+14 1.632216e+08 1.632216e+08 0.000000e+00 1.632216e+08 1.632216e+08
2014-10-14 17:21:08 INFO parallel_go::imager::setDataOnThisMS() Performing selection on MeasurementSet : /home/mknapp/L85562_all_flagged.MS
2014-10-14 17:21:08 INFO parallel_go::imager::setDataOnThisMS() Selecting on fields : 0
2014-10-14 17:21:08 INFO parallel_go::imager::setDataOnThisMS() Selecting on spectral windows expression :15~105
2014-10-14 17:29:18 INFO parallel_go::imager::setDataOnThisMS() Selected 137989761 out of 181964520 rows.
2014-10-14 17:29:18 INFO parallel_go::imager::setDataOnThisMS() 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]