-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlog.HITtoRDO-bak
2350 lines (2350 loc) · 334 KB
/
log.HITtoRDO-bak
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
18:44:56 Setting up DBRelease /usr/database/DBRelease/300.0.1 environment
18:44:56 Mon Aug 17 18:44:55 CEST 2020
18:44:56 Preloading tcmalloc_minimal.so
18:44:56 Preloading /usr/AthenaExternals/21.0.77/InstallArea/x86_64-slc6-gcc62-opt/lib/libintlc.so.5:/usr/AthenaExternals/21.0.77/InstallArea/x86_64-slc6-gcc62-opt/lib/libimf.so
18:44:56 Py:Athena INFO including file "AthenaCommon/Preparation.py"
18:44:56 Py:Athena INFO using release [Athena-21.0.77] [x86_64-slc6-gcc62-opt] [21.0/e06ec93e5a] -- built on [2018-07-31T2205]
18:44:56 Py:Athena INFO including file "AthenaCommon/Bootstrap.py"
18:44:56 Py:Athena INFO including file "AthenaCommon/Atlas.UnixStandardJob.py"
18:44:56 Py:Athena INFO executing ROOT6Setup
18:44:56 [?1034hPy:Athena INFO including file "AthenaCommon/Execution.py"
18:44:56 Py:Athena INFO including file "runargs.HITtoRDO.py"
18:44:56 WARNING - AttributeError for beamGasHitsFile
18:44:56 WARNING - AttributeError for cavernHitsFile
18:44:56 WARNING - AttributeError for beamHaloHitsFile
18:44:56 Py:Athena INFO including file "SimuJobTransforms/skeleton.HITtoRDO.py"
18:44:56 Py:Athena INFO including file "SimuJobTransforms/CommonSkeletonJobOptions.py"
18:44:56 stripping _VALIDATION
18:44:56 Py:Digi_tf INFO ****************** STARTING DIGITIZATION *****************
18:44:56 Py:Digi_tf INFO **** Transformation run arguments
18:44:56 Py:Digi_tf INFO RunArguments:
18:44:56 AMITag = 'r10724'
18:44:56 HITSFileIO = 'input'
18:44:56 HighPtMinbiasHitsFile = ['/files/mc16_13TeV/HITS.10701335._000100.pool.root.1']
18:44:56 HighPtMinbiasHitsFileIO = 'input'
18:44:56 LowPtMinbiasHitsFile = ['/files/mc16_13TeV/HITS.10701323._000291.pool.root.1']
18:44:56 LowPtMinbiasHitsFileIO = 'input'
18:44:56 autoConfiguration = ['everything']
18:44:56 conditionsTag = 'OFLCOND-MC16-SDR-25'
18:44:56 digiSeedOffset1 = 17
18:44:56 digiSeedOffset2 = 17
18:44:56 digiSteeringConf = 'StandardSignalOnlyTruth'
18:44:56 geometryVersion = 'ATLAS-R2-2016-01-00-01'
18:44:56 inputHITSFile = ['/files/mc16_13TeV/HITS.22003048._000023.pool.root.1']
18:44:56 inputHITSFileNentries = 1000L
18:44:56 inputHITSFileType = 'HITS'
18:44:56 inputHighPtMinbiasHitsFile = ['/files/mc16_13TeV/HITS.10701335._000100.pool.root.1']
18:44:56 inputHighPtMinbiasHitsFileType = 'HighPtMinbiasHits'
18:44:56 inputLowPtMinbiasHitsFile = ['/files/mc16_13TeV/HITS.10701323._000291.pool.root.1']
18:44:56 inputLowPtMinbiasHitsFileType = 'LowPtMinbiasHits'
18:44:56 jobNumber = 17
18:44:56 maxEvents = 2
18:44:56 numberOfCavernBkg = 0
18:44:56 numberOfHighPtMinBias = 0.2595392
18:44:56 numberOfLowPtMinBias = 99.2404608
18:44:56 outputRDOFile = 'tmp.RDO'
18:44:56 outputRDOFileType = 'RDO'
18:44:56 pileupFinalBunch = 6
18:44:56 postExec = ['CfgMgr.MessageSvc().setError+=["HepMcParticleLink"]']
18:44:56 preExec = ['rec.Commissioning.set_Value_and_Lock(True);from AthenaCommon.BeamFlags import jobproperties;jobproperties.Beam.numberOfCollisions.set_Value_and_Lock(20.0);from LArROD.LArRODFlags import larRODFlags;larRODFlags.NumberOfCollisions.set_Value_and_Lock(20);larRODFlags.nSamples.set_Value_and_Lock(4);larRODFlags.doOFCPileupOptimization.set_Value_and_Lock(True);larRODFlags.firstSample.set_Value_and_Lock(0);larRODFlags.useHighestGainAutoCorr.set_Value_and_Lock(True); from LArDigitization.LArDigitizationFlags import jobproperties;jobproperties.LArDigitizationFlags.useEmecIwHighGain.set_Value_and_Lock(False)']
18:44:56 preInclude = ['Digitization/ForceUseOfPileUpTools.py', 'SimulationJobOptions/preInlcude.PileUpBunchTrainsMC16c_2017_Config1.py', 'RunDependentSimData/configLumi_run310000.py']
18:44:56 runNumber = 313397
18:44:56 skipEvents = 0
18:44:56 trfSubstepName = 'HITtoRDO'
18:44:56 valid = True
18:44:56 Py:Digi_tf INFO transform pre-exec
18:44:56 Py:Digi_tf INFO rec.Commissioning.set_Value_and_Lock(True);from AthenaCommon.BeamFlags import jobproperties;jobproperties.Beam.numberOfCollisions.set_Value_and_Lock(20.0);from LArROD.LArRODFlags import larRODFlags;larRODFlags.NumberOfCollisions.set_Value_and_Lock(20);larRODFlags.nSamples.set_Value_and_Lock(4);larRODFlags.doOFCPileupOptimization.set_Value_and_Lock(True);larRODFlags.firstSample.set_Value_and_Lock(0);larRODFlags.useHighestGainAutoCorr.set_Value_and_Lock(True); from LArDigitization.LArDigitizationFlags import jobproperties;jobproperties.LArDigitizationFlags.useEmecIwHighGain.set_Value_and_Lock(False)
18:44:56 Py:Athena INFO including file "Digitization/ForceUseOfPileUpTools.py"
18:44:56 Py:Athena INFO including file "SimulationJobOptions/preInlcude.PileUpBunchTrainsMC16c_2017_Config1.py"
18:44:56 Py:Athena INFO including file "RunDependentSimData/configLumi_run310000.py"
18:44:56 Py:Digi_trf INFO doing RunLumiOverride configuration from file.
18:44:56 Py:Athena INFO including file "RunDependentSimData/configCommon.py"
18:44:56 Py:Digi_trf INFO There are 2000 events in this run.
18:44:56 Py:Digi_trf INFO Assuming there are usually 100 events per job. (Based on 2 events in this job.)
18:44:56 Py:Digi_trf INFO There must be 20 jobs per run.
18:44:56 Py:Digi_trf INFO Writing RunDMC trigger configuration fragment to file. listOfRunsEvents = [{'evts': 2, 'run': 310000}]
18:44:56 Py:Digi_trf INFO Changing digitizationFlags.numberOfLowPtMinBias from 0.0 to 99.2404608
18:44:56 Py:Digi_trf INFO Changing digitizationFlags.numberOfHighPtMinBias from 0.0 to 0.2595392
18:44:56 Py:Digi_trf INFO Changing digitizationFlags.digiSteeringConf from StandardPileUpToolsAlg to StandardSignalOnlyTruth
18:44:56 Py:Digi_trf INFO NB Some pile-up (re-)configuration was done on the command-line.
18:44:56 Py:Digi_trf INFO Number of signal events (from athenaCommonFlags.EvtMax) = 2.
18:44:56 Py:AthFile INFO loading cache from [athfile-cache.ascii.gz]...
18:44:56 Py:AthFile INFO loading cache from [athfile-cache.ascii.gz]... [done]
18:44:56 Py:Digi_trf INFO Number of background events per file (read from file) = 20000.
18:44:56 Py:Digi_trf INFO Simulating a maximum of 39 colliding-bunch crossings (39 colliding+non-colliding total) per signal event
18:44:56 Py:Digi_trf INFO Number of background events required: 11611.1339136. Number of background events in input files: 20000
18:44:56 Py:Digi_trf INFO Expanding input list from 1 to 2
18:44:56 Py:Digi_trf INFO Number of signal events (from athenaCommonFlags.EvtMax) = 2.
18:44:56 Py:AthFile INFO opening [/files/mc16_13TeV/HITS.10701335._000100.pool.root.1]...
18:45:05 Py:Digi_trf INFO Number of background events per file (read from file) = 4000.
18:45:05 Py:Digi_trf INFO Simulating a maximum of 39 colliding-bunch crossings (39 colliding+non-colliding total) per signal event
18:45:05 Py:Digi_trf INFO Number of background events required: 30.3660864. Number of background events in input files: 4000
18:45:05 Py:Digi_trf INFO Expanding input list from 1 to 2
18:45:05 : bpipe pixel SCT TRT BCM DBM Lucid ZDC ALFA AFP FwdRegion em HEC FCal Tile MDT CSC TGC RPC sTGC Micromegas Truth LVL1 BField FTK
18:45:05 dcs : ON ON ON ON ON ON ON -- -- ON ON ON ON ON ON ON ON ON ON ON ON ON -- ON ON
18:45:05 detdescr : ON ON ON ON ON ON ON -- -- ON ON ON ON ON ON ON ON ON ON ON ON ON -- ON ON
18:45:05 digitize : ON ON ON ON ON ON ON -- -- ON ON ON ON ON ON ON ON ON ON ON ON ON -- ON ON
18:45:05 geometry : ON ON ON ON ON ON ON -- -- ON ON ON ON ON ON ON ON ON ON ON ON ON -- ON ON
18:45:05 haveRDO : ON ON ON ON ON ON ON -- -- ON ON ON ON ON ON ON ON ON ON ON ON ON -- ON ON
18:45:05 haveRIO : ON ON ON ON ON ON ON -- -- ON ON ON ON ON ON ON ON ON ON ON ON ON -- ON ON
18:45:05 makeRIO : ON ON ON ON ON ON ON -- -- ON ON ON ON ON ON ON ON ON ON ON ON ON -- ON ON
18:45:05 overlay : ON ON ON ON ON ON ON -- -- ON ON ON ON ON ON ON ON ON ON ON ON ON -- ON ON
18:45:05 pileup : ON ON ON ON ON ON ON -- -- ON ON ON ON ON ON ON ON ON ON ON ON ON -- ON ON
18:45:05 readRDOBS : ON ON ON ON ON ON ON -- -- ON ON ON ON ON ON ON ON ON ON ON ON ON -- ON ON
18:45:05 readRDOPool : ON ON ON ON ON ON ON -- -- ON ON ON ON ON ON ON ON ON ON ON ON ON -- ON ON
18:45:05 readRIOBS : ON ON ON ON ON ON ON -- -- ON ON ON ON ON ON ON ON ON ON ON ON ON -- ON ON
18:45:05 readRIOPool : ON ON ON ON ON ON ON -- -- ON ON ON ON ON ON ON ON ON ON ON ON ON -- ON ON
18:45:05 simulate : ON ON ON ON ON ON ON -- -- ON ON ON ON ON ON ON ON ON ON ON ON ON -- ON ON
18:45:05 simulateLVL1 : ON ON ON ON ON ON ON -- -- ON ON ON ON ON ON ON ON ON ON ON ON ON -- ON ON
18:45:05 writeBS : ON ON ON ON ON ON ON -- -- ON ON ON ON ON ON ON ON ON ON ON ON ON -- ON ON
18:45:05 writeRDOPool : ON ON ON ON ON ON ON -- -- ON ON ON ON ON ON ON ON ON ON ON ON ON -- ON ON
18:45:05 writeRIOPool : ON ON ON ON ON ON ON -- -- ON ON ON ON ON ON ON ON ON ON ON ON ON -- ON ON
18:45:05 Py:Athena INFO including file "Digitization/Digitization.py"
18:45:05 Py:JobProperty :: INFO The JobProperty InputFormat is blocked
18:45:05 Py:Digitization WARNING DetFlags already defined! This means DetFlags should have been fully configured already..
18:45:05 : bpipe pixel SCT TRT BCM DBM Lucid ZDC ALFA AFP FwdRegion em HEC FCal Tile MDT CSC TGC RPC sTGC Micromegas Truth LVL1 BField FTK
18:45:05 dcs : ON ON ON ON ON ON ON -- -- ON ON ON ON ON ON ON ON ON ON ON ON ON -- ON ON
18:45:05 detdescr : ON ON ON ON ON ON ON -- -- ON ON ON ON ON ON ON ON ON ON ON ON ON -- ON ON
18:45:05 digitize : ON ON ON ON ON ON ON -- -- ON ON ON ON ON ON ON ON ON ON ON ON ON -- ON ON
18:45:05 geometry : ON ON ON ON ON ON ON -- -- ON ON ON ON ON ON ON ON ON ON ON ON ON -- ON ON
18:45:05 haveRDO : ON ON ON ON ON ON ON -- -- ON ON ON ON ON ON ON ON ON ON ON ON ON -- ON ON
18:45:05 haveRIO : ON ON ON ON ON ON ON -- -- ON ON ON ON ON ON ON ON ON ON ON ON ON -- ON ON
18:45:05 makeRIO : ON ON ON ON ON ON ON -- -- ON ON ON ON ON ON ON ON ON ON ON ON ON -- ON ON
18:45:05 overlay : ON ON ON ON ON ON ON -- -- ON ON ON ON ON ON ON ON ON ON ON ON ON -- ON ON
18:45:05 pileup : ON ON ON ON ON ON ON -- -- ON ON ON ON ON ON ON ON ON ON ON ON ON -- ON ON
18:45:05 readRDOBS : ON ON ON ON ON ON ON -- -- ON ON ON ON ON ON ON ON ON ON ON ON ON -- ON ON
18:45:05 readRDOPool : ON ON ON ON ON ON ON -- -- ON ON ON ON ON ON ON ON ON ON ON ON ON -- ON ON
18:45:05 readRIOBS : ON ON ON ON ON ON ON -- -- ON ON ON ON ON ON ON ON ON ON ON ON ON -- ON ON
18:45:05 readRIOPool : ON ON ON ON ON ON ON -- -- ON ON ON ON ON ON ON ON ON ON ON ON ON -- ON ON
18:45:05 simulate : ON ON ON ON ON ON ON -- -- ON ON ON ON ON ON ON ON ON ON ON ON ON -- ON ON
18:45:05 simulateLVL1 : ON ON ON ON ON ON ON -- -- ON ON ON ON ON ON ON ON ON ON ON ON ON -- ON ON
18:45:05 writeBS : ON ON ON ON ON ON ON -- -- ON ON ON ON ON ON ON ON ON ON ON ON ON -- ON ON
18:45:05 writeRDOPool : ON ON ON ON ON ON ON -- -- ON ON ON ON ON ON ON ON ON ON ON ON ON -- ON ON
18:45:05 writeRIOPool : ON ON ON ON ON ON ON -- -- ON ON ON ON ON ON ON ON ON ON ON ON ON -- ON ON
18:45:05 : bpipe pixel SCT TRT BCM DBM Lucid ZDC ALFA AFP FwdRegion em HEC FCal Tile MDT CSC TGC RPC sTGC Micromegas Truth LVL1 BField FTK
18:45:05 dcs : ON ON ON ON ON ON ON -- -- ON ON ON ON ON ON ON ON ON ON ON ON ON -- ON ON
18:45:05 detdescr : ON ON ON ON ON ON ON -- -- ON ON ON ON ON ON ON ON ON ON ON ON ON -- ON ON
18:45:05 digitize : ON ON ON ON ON ON ON -- -- ON ON ON ON ON ON ON ON ON ON ON ON ON -- ON ON
18:45:05 geometry : ON ON ON ON ON ON ON -- -- ON ON ON ON ON ON ON ON ON ON ON ON ON -- ON ON
18:45:05 haveRDO : ON ON ON ON ON ON ON -- -- ON ON ON ON ON ON ON ON ON ON ON ON ON -- ON ON
18:45:05 haveRIO : -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
18:45:05 makeRIO : -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
18:45:05 overlay : -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
18:45:05 pileup : ON ON ON ON ON ON ON -- -- ON ON ON ON ON ON ON ON ON ON ON ON ON -- ON ON
18:45:05 readRDOBS : -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
18:45:05 readRDOPool : ON ON ON ON ON ON ON -- -- ON ON ON ON ON ON ON ON ON ON ON ON ON -- ON ON
18:45:05 readRIOBS : -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
18:45:05 readRIOPool : -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
18:45:05 simulate : -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
18:45:05 simulateLVL1 : ON ON ON ON ON ON ON -- -- ON ON ON ON ON ON ON ON ON ON ON ON ON -- ON ON
18:45:05 writeBS : -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
18:45:05 writeRDOPool : ON ON ON ON ON ON ON -- -- ON ON ON ON ON ON ON ON ON ON ON ON ON -- ON ON
18:45:05 writeRIOPool : -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
18:45:05 Py:Digitization INFO Global jobProperties values:
18:45:05 Py:JobProperty :: INFO x-> JobProperties.Global.ConditionsTag = 'OFLCOND-MC16-SDR-25'
18:45:05 Py:JobProperty :: INFO --> JobProperties.Global.DataSource = 'geant4'
18:45:05 Py:JobProperty :: INFO --> JobProperties.Global.DatabaseInstance = 'auto'
18:45:05 Py:JobProperty :: INFO x-> JobProperties.Global.DetDescrVersion = 'ATLAS-R2-2016-01-00-01'
18:45:05 Py:JobProperty :: INFO --> JobProperties.Global.DetGeo = 'atlas'
18:45:05 Py:JobProperty :: INFO x-> JobProperties.Global.InputFormat = 'pool'
18:45:05 Py:JobProperty :: INFO --> JobProperties.Global.Luminosity = None
18:45:05 Py:JobProperty :: INFO --> JobProperties.Global.isOverlay = False
18:45:05 Py:Digitization INFO Digitization jobProperties values:
18:45:05 Py:JobProperty :: INFO --> JobProperties.Digitization.BeamIntensityPattern = '[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]'
18:45:05 Py:JobProperty :: INFO --> JobProperties.Digitization.FixedT0BunchCrossing = None
18:45:05 Py:JobProperty :: INFO --> JobProperties.Digitization.HighPtMinBiasInputCols = ['/files/mc16_13TeV/HITS.10701335._000100.pool.root.1',
18:45:05 '/files/mc16_13TeV/HITS.10701335._000100.pool.root.1']
18:45:05 Py:JobProperty :: INFO --> JobProperties.Digitization.IOVDbGlobalTag = 'OFLCOND-MC16-SDR-25'
18:45:05 Py:JobProperty :: INFO --> JobProperties.Digitization.LowPtMinBiasInputCols = ['/files/mc16_13TeV/HITS.10701323._000291.pool.root.1',
18:45:05 '/files/mc16_13TeV/HITS.10701323._000291.pool.root.1']
18:45:05 Py:JobProperty :: INFO --> JobProperties.Digitization.PileUpPremixing = False
18:45:05 Py:JobProperty :: INFO --> JobProperties.Digitization.RunAndLumiOverrideList = "[{'mu': 83.5, 'lb': 84, 'run': 310000, 'evts': 1, 'dt': 0.0, 'starttstamp': 1550004980, 'force_new': False}, {'mu': 13.5, 'lb': 14, 'run': 310000, 'evts': 1, 'dt': 0.0, 'starttstamp': 1550000780, 'force_new': False}]"
18:45:05 Py:JobProperty :: INFO --> JobProperties.Digitization.SignalPatternForSteppingCache = 'None'
18:45:05 Py:JobProperty :: INFO --> JobProperties.Digitization.SimG4VersionUsed = 'not_specified'
18:45:05 Py:JobProperty :: INFO --> JobProperties.Digitization.TRTRangeCut = 0.05
18:45:05 Py:JobProperty :: INFO --> JobProperties.Digitization.beamGasInputCols = None
18:45:05 Py:JobProperty :: INFO --> JobProperties.Digitization.beamHaloInputCols = None
18:45:05 Py:JobProperty :: INFO --> JobProperties.Digitization.bunchSpacing = 25
18:45:05 Py:JobProperty :: INFO --> JobProperties.Digitization.cavernIgnoresBeamInt = True
18:45:05 Py:JobProperty :: INFO --> JobProperties.Digitization.cavernInputCols = None
18:45:05 Py:JobProperty :: INFO --> JobProperties.Digitization.dataRunNumber = None
18:45:05 Py:JobProperty :: INFO --> JobProperties.Digitization.digiSteeringConf = 'StandardSignalOnlyTruthPileUpToolsAlg'
18:45:05 Py:JobProperty :: INFO --> JobProperties.Digitization.doBeamGas = False
18:45:05 Py:JobProperty :: INFO --> JobProperties.Digitization.doBeamHalo = False
18:45:05 Py:JobProperty :: INFO --> JobProperties.Digitization.doBichselSimulation = True
18:45:05 Py:JobProperty :: INFO --> JobProperties.Digitization.doCaloNoise = True
18:45:05 Py:JobProperty :: INFO --> JobProperties.Digitization.doCavern = False
18:45:05 Py:JobProperty :: INFO --> JobProperties.Digitization.doDigiTruth = None
18:45:05 Py:JobProperty :: INFO --> JobProperties.Digitization.doFwdNoise = True
18:45:05 Py:JobProperty :: INFO --> JobProperties.Digitization.doHighPtMinBias = True
18:45:05 Py:JobProperty :: INFO --> JobProperties.Digitization.doInDetNoise = True
18:45:05 Py:JobProperty :: INFO --> JobProperties.Digitization.doLowPtMinBias = True
18:45:05 Py:JobProperty :: INFO --> JobProperties.Digitization.doMuonNoise = True
18:45:05 Py:JobProperty :: INFO --> JobProperties.Digitization.doRadiationDamage = False
18:45:05 Py:JobProperty :: INFO --> JobProperties.Digitization.doXingByXingPileUp = True
18:45:05 Py:JobProperty :: INFO --> JobProperties.Digitization.experimentalDigi = []
18:45:05 Py:JobProperty :: INFO --> JobProperties.Digitization.finalBunchCrossing = 6
18:45:05 Py:JobProperty :: INFO --> JobProperties.Digitization.initialBunchCrossing = -32
18:45:05 Py:JobProperty :: INFO --> JobProperties.Digitization.numberOfBeamGas = 0.0
18:45:05 Py:JobProperty :: INFO --> JobProperties.Digitization.numberOfBeamHalo = 0.0
18:45:05 Py:JobProperty :: INFO --> JobProperties.Digitization.numberOfCavern = 0
18:45:05 Py:JobProperty :: INFO --> JobProperties.Digitization.numberOfCollisions = 0.0
18:45:05 Py:JobProperty :: INFO --> JobProperties.Digitization.numberOfHighPtMinBias = 0.2595392
18:45:05 Py:JobProperty :: INFO --> JobProperties.Digitization.numberOfLowPtMinBias = 99.2404608
18:45:05 Py:JobProperty :: INFO --> JobProperties.Digitization.overrideMetadata = []
18:45:05 Py:JobProperty :: INFO --> JobProperties.Digitization.physicsList = 'QGSP_BERT'
18:45:05 Py:JobProperty :: INFO --> JobProperties.Digitization.pileupDSID = {'High Pt Minimum Bias': 361035, 'Low Pt Minimum Bias': 361034}
18:45:05 Py:JobProperty :: INFO --> JobProperties.Digitization.readSeedsFromFile = False
18:45:05 Py:JobProperty :: INFO --> JobProperties.Digitization.rndmSeedInputFile = 'AtRanluxGenSvc.in'
18:45:05 Py:JobProperty :: INFO --> JobProperties.Digitization.rndmSeedList = []
18:45:05 Py:JobProperty :: INFO --> JobProperties.Digitization.rndmSeedOffset1 = 17
18:45:05 Py:JobProperty :: INFO --> JobProperties.Digitization.rndmSeedOffset2 = 17
18:45:05 Py:JobProperty :: INFO --> JobProperties.Digitization.rndmSvc = 'AtDSFMTGenSvc'
18:45:05 Py:JobProperty :: INFO --> JobProperties.Digitization.simRunNumber = None
18:45:05 Py:JobProperty :: INFO --> JobProperties.Digitization.specialConfiguration = None
18:45:05 Py:DigitizationReadMetadata INFO Checking for Signal Simulation MetaData...
18:45:06 Py:AthFile INFO opening [/files/mc16_13TeV/HITS.22003048._000023.pool.root.1]...
18:45:14 Py:DigitizationReadMetadata INFO specialConfiguration directive: NONE
18:45:14 Py:DigitizationReadMetadata INFO Checking Digitization properties against Signal Simulation MetaData...
18:45:14 Py:DigitizationReadMetadata WARNING Digitization properties PhysicsList does not match the PhysicsList used in the Simulation step! Assume the PhysicsList from the Simulation step is correct!
18:45:14 Py:DigitizationReadMetadata INFO Set digitizationFlags.physicsList = FTFP_BERT_ATL
18:45:14 Py:DigitizationReadMetadata INFO Digitization properties: [IOVDbGlobalTag = OFLCOND-MC16-SDR-25], Signal Simulation MetaData: [IOVDbGlobalTag = OFLCOND-MC16-SDR-14]
18:45:14 Py:DigitizationReadMetadata INFO Ensured 8 sub-detectors which were not simulated were switched off: ['Lucid', 'ZDC', 'ALFA', 'AFP', 'FwdRegion', 'HGTD', 'Micromegas', 'sTGC']
18:45:14 : bpipe pixel SCT TRT BCM DBM Lucid ZDC ALFA AFP FwdRegion em HEC FCal Tile MDT CSC TGC RPC sTGC Micromegas Truth LVL1 BField FTK
18:45:14 dcs : ON ON ON ON ON ON -- -- -- -- -- ON ON ON ON ON ON ON ON -- -- ON -- ON ON
18:45:14 detdescr : ON ON ON ON ON ON -- -- -- -- -- ON ON ON ON ON ON ON ON -- -- ON -- ON ON
18:45:14 digitize : ON ON ON ON ON ON -- -- -- -- -- ON ON ON ON ON ON ON ON -- -- ON -- ON ON
18:45:14 geometry : ON ON ON ON ON ON -- -- -- -- -- ON ON ON ON ON ON ON ON -- -- ON -- ON ON
18:45:14 haveRDO : ON ON ON ON ON ON -- -- -- -- -- ON ON ON ON ON ON ON ON -- -- ON -- ON ON
18:45:14 haveRIO : -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
18:45:14 makeRIO : -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
18:45:14 overlay : -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
18:45:14 pileup : ON ON ON ON ON ON -- -- -- -- -- ON ON ON ON ON ON ON ON -- -- ON -- ON ON
18:45:14 readRDOBS : -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
18:45:14 readRDOPool : ON ON ON ON ON ON -- -- -- -- -- ON ON ON ON ON ON ON ON -- -- ON -- ON ON
18:45:14 readRIOBS : -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
18:45:14 readRIOPool : -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
18:45:14 simulate : -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
18:45:14 simulateLVL1 : ON ON ON ON ON ON -- -- -- -- -- ON ON ON ON ON ON ON ON -- -- ON -- ON ON
18:45:14 writeBS : -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
18:45:14 writeRDOPool : ON ON ON ON ON ON -- -- -- -- -- ON ON ON ON ON ON ON ON -- -- ON -- ON ON
18:45:14 writeRIOPool : -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
18:45:14 Py:DigitizationReadMetadata INFO Completed checks of Digitization properties against Signal Simulation MetaData.
18:45:14 Py:DigitizationReadMetadata INFO Checking Low Pt Minimum Bias MetaData against Signal Simulation MetaData...
18:45:14 Py:AthFile INFO opening [/files/mc16_13TeV/HITS.10701323._000291.pool.root.1]...
18:45:23 Py:DigitizationReadMetadata INFO specialConfiguration directive: NONE
18:45:23 Py:DigitizationReadMetadata INFO some spcialConfiguration metadata already exists: {}
18:45:23 Py:DigitizationReadMetadata INFO Low Pt Minimum Bias Simulation MetaData matches Signal Simulation MetaData.
18:45:23 Py:DigitizationReadMetadata INFO Checking High Pt Minimum Bias MetaData against Signal Simulation MetaData...
18:45:23 Py:AthFile INFO opening [/files/mc16_13TeV/HITS.10701335._000100.pool.root.1]...
18:45:32 Py:DigitizationReadMetadata INFO specialConfiguration directive: NONE
18:45:32 Py:DigitizationReadMetadata INFO some spcialConfiguration metadata already exists: {}
18:45:32 Py:DigitizationReadMetadata INFO High Pt Minimum Bias Simulation MetaData matches Signal Simulation MetaData.
18:45:32 Py:DigitizationReadMetadata INFO Completed all checks against Signal Simulation MetaData.
18:45:32 Py:Athena INFO including file "Digitization/ConfigDigitization.py"
18:45:32 Py:ConfigurableDb INFO Read module info for 5296 configurables from 2 genConfDb files
18:45:32 Py:ConfigurableDb INFO No duplicates have been found: that's good !
18:45:32 SetGeometryVersion.py obtained major release version 21
18:45:32 Py:Athena INFO including file "IdDictDetDescrCnv/IdDictDetDescrCnv_joboptions.py"
18:45:32 EventInfoMgtInit: Got release version Unknown-Unknown
18:45:32 Py:IOVDbSvc.CondDB INFO Setting up conditions DB access to instance OFLP200
18:45:32 Py:ConfiguredFactory INFO imported 122 confDb modules in 0.23 seconds
18:45:32 Py:Athena INFO Importing MagFieldServices.SetupField
18:45:32 Py:Athena INFO Importing MagFieldServices.MagFieldServicesConfig
18:45:32 Py:DigiConfigChecker INFO Setting numberOfCollisions=numberOfLowPtMinBias+numberOfHighPtMinBias.
18:45:32 Py:Athena INFO including file "Digitization/LumiBlockOverrides.py"
18:45:32 Py:DigitizationFlags INFO setting Digitization data run,lb info:
18:45:32 Py:DigitizationFlags INFO {'mu': 83.5, 'lb': 84, 'run': 310000, 'evts': 1, 'dt': 0.0, 'starttstamp': 1550004980, 'force_new': False}
18:45:32 Py:DigitizationFlags INFO {'mu': 13.5, 'lb': 14, 'run': 310000, 'evts': 1, 'dt': 0.0, 'starttstamp': 1550000780, 'force_new': False}
18:45:32 Py:JobProperty :: WARNING The property JobProperties.AthenaCommonFlags.EvtMax is being unlocked
18:45:32 Py:Digi_trf INFO now evtmax is: 2
18:45:32 Py:Digi_trf INFO Your pileup configuration file determined the scalefactor: 99.5
18:45:32 Py:DigitizationFlags INFO RunAndLumiOverrideList.ScaleNumberOfCollisions: Changing jobproperties.Digitization.numberOfCollisions from 99.5 to 83.5
18:45:32 Py:DigitizationFlags INFO RunAndLumiOverrideList.ScaleNumberOfCollisions: Changing jobproperties.Digitization.numberOfLowPtMinBias from 99.2404608 to 83.2821957467
18:45:32 Py:DigitizationFlags INFO RunAndLumiOverrideList.ScaleNumberOfCollisions: Changing jobproperties.Digitization.numberOfHighPtMinBias from 0.2595392 to 0.217804253266
18:45:32 Py:DigiConfigChecker INFO Beam jobProperties values:
18:45:32 Py:JobProperty :: INFO --> JobProperties.Beam.beamType = 'collisions'
18:45:32 Py:JobProperty :: INFO --> JobProperties.Beam.bunchSpacing = 25
18:45:32 Py:JobProperty :: INFO --> JobProperties.Beam.energy = 7000000.0
18:45:32 Py:JobProperty :: INFO x-> JobProperties.Beam.numberOfCollisions = 20.0
18:45:32 Py:JobProperty :: INFO --> JobProperties.Beam.override = True
18:45:32 Py:DigiConfigChecker INFO Setting jobproperties.Beam.numberOfCollisions equal to digitizationFlags.numberOfCollisions.
18:45:32 Py:JobProperty :: INFO The JobProperty numberOfCollisions is blocked
18:45:32 Py:DigiConfigChecker INFO Using Bunch Structure, so jobproperties.Beam.bunchSpacing does not need to match digitizationFlags.bunchSpacing.
18:45:32 Py:JobPropertyContainer:: INFO Locked all Digitization JobProperties except ['rndmSeedList'].
18:45:32 Py:Athena INFO including file "Digitization/ConfigPileUpEventLoopMgr.py"
18:45:32 Py:DigitizationFlags INFO Adding Digitization random number seed 'PileUpCollXingStream OFFSET 34 123 345'
18:45:32 Py:DigitizationFlags INFO Adding Digitization random number seed 'BEAMINT OFFSET 34 678 91011'
18:45:32 Py:ConfigDigitization INFO PILEUP CONFIGURATION:
18:45:32 Py:ConfigDigitization INFO -----> Luminosity = 8.69565217391e+33 cm^-2 s^-1
18:45:32 Py:ConfigDigitization INFO -----> Bunch Spacing = 25 ns
18:45:32 Py:Athena INFO including file "Digitization/DetectorDigitization.py"
18:45:32 Py:DigitizationFlags INFO Adding Digitization random number seed 'BCM_Digitization OFFSET 34 49261510 105132394'
18:45:32 Py:DigitizationFlags INFO Adding Digitization random number seed 'PixelDigitization OFFSET 34 10513239 492615104'
18:45:32 Py:Athena INFO including file "PixelConditionsServices/SpecialPixelMapSvc_jobOptions.py"
18:45:32 Py:Athena INFO including file "PixelConditionsServices/PixelDCSSvc_jobOptions.py"
18:45:32 Py:Athena INFO including file "PixelConditionsServices/PixelCalibSvc_jobOptions.py"
18:45:32 Py:DigitizationFlags INFO Adding Digitization random number seed 'SCT_Digitization OFFSET 34 49261510 105132394'
18:45:32 Py:Athena INFO including file "TRT_Digitization/TRT_Digitization_CommonOptions.py"
18:45:32 Py:Athena INFO including file "PartPropSvc/PartPropSvc.py"
18:45:32 Py:Athena INFO including file "TRT_PAI_Process/TRT_PAI_Process.py"
18:45:32 Py:DigitizationFlags INFO Adding Digitization random number seed 'TRT_DigitizationTool OFFSET 34 123456 345123'
18:45:32 Py:DigitizationFlags INFO Adding Digitization random number seed 'TRT_ElectronicsNoise OFFSET 34 123 345'
18:45:32 Py:DigitizationFlags INFO Adding Digitization random number seed 'TRT_Noise OFFSET 34 1234 3456'
18:45:32 Py:DigitizationFlags INFO Adding Digitization random number seed 'TRT_ThresholdFluctuations OFFSET 34 12345 34567'
18:45:32 Py:DigitizationFlags INFO Adding Digitization random number seed 'TRT_ProcessStraw OFFSET 34 123456 345678'
18:45:32 Py:DigitizationFlags INFO Adding Digitization random number seed 'TRT_PAI OFFSET 34 12345678 34567890'
18:45:32 Py:DigitizationFlags INFO Adding Digitization random number seed 'TRT_FakeConditions OFFSET 34 123456789 345678901'
18:45:32 Py:LArPileUpToolDefault: INFO ---- in getLArPileUpTool
18:45:32 Py:Athena INFO including file "CaloDetMgrDetDescrCnv/CaloDetMgrDetDescrCnv_joboptions.py"
18:45:32 Py:Athena INFO including file "CaloConditions/CaloConditions_jobOptions.py"
18:45:32 Py:Athena INFO including file "CaloConditions/LArTTCellMap_ATLAS_jobOptions.py"
18:45:32 Py:Athena INFO including file "CaloConditions/CaloTTIdMap_ATLAS_jobOptions.py"
18:45:33 Py:Athena INFO including file "LArDetDescr/LArDetDescr_joboptions.py"
18:45:33 now initializing the LAr readout geometry : standard Atlas flavour
18:45:33 Py:Athena INFO including file "LArConditionsCommon/LArConditionsCommon_MC_jobOptions.py"
18:45:33 ATLAS-R2-2016-01-00-01
18:45:33 Py:JobPropertyContainer:: INFO use global tag for all LArElecCalibMC constants
18:45:33 Py:Athena INFO including file "LArConditionsCommon/LArIdMap_MC_jobOptions.py"
18:45:33 Py:JobPropertyContainer:: INFO setting folder /LAR/Identifier/OnOffIdMap with tag LARIdentifierOnOffIdMap-012
18:45:33 Py:JobPropertyContainer:: INFO setting folder /LAR/Identifier/CalibIdMap with tag LARIdentifierCalibIdMap-012
18:45:33 Py:JobPropertyContainer:: INFO setting folder /LAR/Identifier/FebRodMap with tag LARIdentifierFebRodMap-005
18:45:33 Py:DigitizationFlags INFO Adding Digitization random number seed 'LArDigitization OFFSET 34 1234 5678'
18:45:33 Py:LArPileUpToolDefault: INFO do not use high gain in Fcal digitization
18:45:33 Py:LArPileUpToolDefault: INFO do not use high gain in EMEC IW digitization
18:45:33 Py:LArPileUpToolDefault: INFO ---- set LArADC2MeVToolDefault
18:45:33 Py:LArADC2MeVToolDefault::__init__ INFO entering
18:45:33 Py:LArADC2MeVToolDefault::__init__ INFO in MC case
18:45:33 Py:LArADC2MeVToolDefault::__init__ INFO MphysOverMcal found
18:45:33 Py:LArADC2MeVToolDefault::__init__ INFO HVScaleCorr found
18:45:33 Py:LArAutoCorrNoiseToolDefault::__init__ INFO entering
18:45:33 Py:Athena INFO including file "CaloDetMgrDetDescrCnv/CaloDetMgrDetDescrCnv_joboptions.py"
18:45:33 Py:Athena INFO including file "TileConditions/TileConditions_jobOptions.py"
18:45:33 Py:TileInfoConf. INFO Adding TileCablingSvc to ServiceMgr
18:45:33 Py:TileInfoConf. INFO Adding default TileBadChanTool to ToolSvc
18:45:33 Py:TileInfoConf. INFO Adding default TileCondToolOfc to ToolSvc
18:45:33 Py:TileInfoConf. INFO Adding default TileCondToolEmscale to ToolSvc
18:45:33 Py:TileInfoConf. INFO Adding default TileCondToolNoiseSample to ToolSvc
18:45:33 Py:TileInfoConf. INFO Adding default TileCondToolTiming to ToolSvc
18:45:33 Py:inputFilePeeker INFO Executing inputFilePeeker.py
18:45:33 Py:AthFile INFO opening [/files/mc16_13TeV/HITS.22003048._000023.pool.root.1]...
18:45:41 Py:inputFilePeeker INFO Successfully filled inputFileSummary from file /files/mc16_13TeV/HITS.22003048._000023.pool.root.1
18:45:41 Py:inputFilePeeker INFO Extracted streams ['StreamHITS'] from input file
18:45:41 Py:TileConditions_jobOptions.py INFO Forcing RUN2 (2014-2017) cabling for run 284500 with geometry ATLAS-R2-2016-01-00-01
18:45:41 Py:TileConditions_jobOptions.py INFO Adjusting TileInfo for 7 samples
18:45:41 Py:TileConditions_jobOptions.py INFO setting up COOL for TileCal conditions data
18:45:41 Py:TileInfoConf. INFO Changing default TileBadChanTool configuration to COOL source
18:45:41 Py:TileInfoConf. INFO Changing default TileCondToolEmscale configuration to COOL source
18:45:41 Py:TileInfoConf. INFO Changing default TileCondToolNoiseSample configuration to COOL source
18:45:41 Py:TileInfoConf. INFO Changing default TileCondToolTiming configuration to COOL source
18:45:41 Py:TileConditions_jobOptions.py INFO Adjusting TileInfo to return cell noise for Opt.Filter with iterations
18:45:41 Py:DigitizationFlags INFO Adding Digitization random number seed 'Tile_HitVecToCnt OFFSET 34 4789899 989240512'
18:45:41 Py:DigitizationFlags INFO Adding Digitization random number seed 'CSC_Digitization OFFSET 34 49261510 105132394'
18:45:41 Py:Athena INFO Importing MuonCnvExample.MuonCalibConfig
18:45:41 Py:Athena INFO Importing MuonCnvExample.MuonCnvUtils
18:45:41 Py:Athena INFO Importing module MuonCnvExample.MuonCalibFlags
18:45:41 Py:MuonCnvExample.MuonCalibFlags INFO Changing default mdtPropagationSpeedBeta = 1.0
18:45:41 Py:MuonCnvExample.MuonCalibConfig.setupCscCondDB() INFO This is for OffLine so T0Base and T0Phase folders are added!!
18:45:41 Py:DigitizationFlags INFO Adding Digitization random number seed 'MDT_Digitization OFFSET 34 49261510 105132394'
18:45:41 Py:DigitizationFlags INFO Adding Digitization random number seed 'MDT_DigitizationTwin OFFSET 34 393242561 857132381'
18:45:41 Py:DigitizationFlags INFO Adding Digitization random number seed 'MDTResponse OFFSET 34 49261510 105132394'
18:45:41 non-online auto |- DatabaseInstance = 'auto' |- DataSource = 'geant4' |x ConditionsTag = 'OFLCOND-MC16-SDR-25' (Default: 'OFLCOND-RUN12-SDR-31')
18:45:41 Py:MDT_DCSConditionsTool INFO Adding folder DCS_OFL:/MDT/DCS/DROPPEDCH to IOVDbSvc
18:45:41 Py:MDT_DCSConditionsTool INFO Adding folder DCS_OFL:/MDT/DCS/PSLVCHSTATE to IOVDbSvc
18:45:41 Py:DigitizationFlags INFO Adding Digitization random number seed 'RPC_Digitization OFFSET 34 49261510 105132394'
18:45:41 Py:RpcDetectorStatusDbTool INFO Adding folder RPC_OFL:/RPC/DQMF/ELEMENT_STATUS to IOVDbSvc
18:45:41 Py:DigitizationFlags INFO Adding Digitization random number seed 'TGC_Digitization OFFSET 34 49261510 105132394'
18:45:41 Py:Athena INFO including file "Digitization/InDetDigitization.py"
18:45:41 Py:DigiConfigChecker INFO Switching DetFlags.simulateLVL1.TRT_setOff()
18:45:41 Py:DigiConfigChecker INFO Experts may enable LVL1 TrigT1TRT simulation by setting RUNTRTLVL1=True in a preExec or in their main job options.
18:45:41 Py:Athena INFO including file "Digitization/CaloDigitization.py"
18:45:41 Py:LArOFCToolDefault::__init__ INFO entering
18:45:41 Py:LArOFCToolDefault::__init__ INFO Standard OFC optimization computation
18:45:41 Py:LArAutoCorrTotalToolDefault::__init__ INFO entering
18:45:41 Py:LArAutoCorrTotalToolDefault::__init__ INFO setup for Ncollisions 20.000000 deltaBunch 25.000000
18:45:41 Py:LArADC2MeVToolDefault::__init__ INFO LArADC2MeV Tool with nameLArADC2MeVToolDefaultalready known to ToolSvc
18:45:41 Py:Athena INFO including file "TileSimAlgs/TileDigiCommon_jobOptions.py"
18:45:41 Py:Configured::existingOutput:TileDigitsGetter: INFO one object not in output TileDigitsContainer:TileDigitsCnt
18:45:41 Py:Configured::existingOutput:TileDigitsGetter: INFO No output objects already available. Continue.
18:45:41 Py:TileDigitsGetter::configure: INFO entering
18:45:41 Py:TileInfoConf. INFO Changing default TileCondToolPHYPULSECool configuration to COOL source
18:45:41 Py:DigitizationFlags INFO Adding Digitization random number seed 'Tile_DigitsMaker OFFSET 34 4789899 989240512'
18:45:41 Py:TileDigitsGetter::configure: INFO now adding to topSequence
18:45:41 Py:Configured::__init__:TileDigitsGetter: INFO Configured/Enabled
18:45:41 Py:TileDigitiization INFO Setting max/min time for parabolic correction to +/- 12.5 ns
18:45:41 Py:Configured::existingOutput:TileRawChannelGetter: INFO No output objects already available. Continue.
18:45:41 Py:TileRawChannelGetter::configure: INFO entering
18:45:41 |- AmpMinForAmpCorrection = 15.0
18:45:41 |- BestPhaseFromCOOL = False
18:45:41 |- OfcFromCOOL = True
18:45:41 |- TileDigitsContainer = 'TileDigitsCnt'
18:45:41 |- TileRawChannelContainer = 'TileRawChannelCnt'
18:45:41 |- TileRunType = 0
18:45:41 |- TimeMaxForAmpCorrection = 12.5 (Default: -999.0)
18:45:41 |- TimeMinForAmpCorrection = -12.5 (Default: 1000.0)
18:45:41 |- calibrateEnergy = False
18:45:41 |- correctAmplitude = True
18:45:41 |- correctPedestalDifference = True
18:45:41 |- correctTime = False
18:45:41 |- correctTimeNI = True
18:45:41 |- doTileFit = False
18:45:41 |- doTileFitCool = False
18:45:41 |- doTileFlat = False
18:45:41 |- doTileMF = False
18:45:41 |- doTileManyAmps = False
18:45:41 |- doTileOF1 = False
18:45:41 |- doTileOpt = False
18:45:41 |- doTileOpt2 = False
18:45:41 |- doTileOptATLAS = True (Default: False)
18:45:41 |- doTileOverflowFit = True
18:45:41 |- doTileQIE = False
18:45:41 |- noiseFilter = -1
18:45:41 |- readDigits = True
18:45:41 |- simulateTrips = False
18:45:41 |- zeroAmplitudeWithoutDigits = True
18:45:41 Py:TileInfoConf. INFO Changing default TileCondToolOfcCool configuration to COOL source for OF2
18:45:41 Py:TileRawChannelGetter::configure: INFO adding now TileRawChannelBuilderFitFilter to ToolSvc
18:45:41 Py:TileRawChannelGetter::configure: INFO set up TileRawChannelBuilderFitOverflow to TileRawChannelBuilderFitFilter
18:45:41 Py:TileRawChannelGetter::configure: INFO adding now TileRawChannelBuilderOpt2Filter with name TileRawChannelBuilderOptATLAS to ToolSvc
18:45:41 Py:TileRawChannelGetter::configure: INFO now adding to topSequence
18:45:41 |- AmpMinForAmpCorrection = 15.0
18:45:41 |- BestPhaseFromCOOL = False
18:45:41 |- OfcFromCOOL = True
18:45:41 |- TileDigitsContainer = 'TileDigitsCnt'
18:45:41 |- TileRawChannelContainer = 'TileRawChannelCnt'
18:45:41 |- TileRunType = 0
18:45:41 |- TimeMaxForAmpCorrection = 12.5 (Default: -999.0)
18:45:41 |- TimeMinForAmpCorrection = -12.5 (Default: 1000.0)
18:45:41 |- calibrateEnergy = False
18:45:41 |- correctAmplitude = True
18:45:41 |- correctPedestalDifference = True
18:45:41 |- correctTime = False
18:45:41 |- correctTimeNI = True
18:45:41 |- doTileFit = False
18:45:41 |- doTileFitCool = False
18:45:41 |- doTileFlat = False
18:45:41 |- doTileMF = False
18:45:41 |- doTileManyAmps = False
18:45:41 |- doTileOF1 = False
18:45:41 |- doTileOpt = False
18:45:41 |- doTileOpt2 = False
18:45:41 |- doTileOptATLAS = True (Default: False)
18:45:41 |- doTileOverflowFit = True
18:45:41 |- doTileQIE = False
18:45:41 |- noiseFilter = -1
18:45:41 |- readDigits = True
18:45:41 |- simulateTrips = False
18:45:41 |- zeroAmplitudeWithoutDigits = True
18:45:41 Py:Configured::__init__:TileRawChannelGetter: INFO Configured/Enabled
18:45:41 Py:Athena INFO including file "TileSimAlgs/TileSamplingFraction_jobOptions.py"
18:45:41 Py:TileSamplingFraction_jobOptions.py INFO Using 1/s.f. = 33.7 for FTFP_BERT_ATL physics list and G4version 10.01 (geant4.10.1.patch03.atlas02)
18:45:41 Py:TileSamplingFraction_jobOptions.py INFO Switching ON noise in Tile Digitization
18:45:41 /***** Service TileInfoLoader/TileInfoLoader *******************************************************
18:45:41 |-AuditFinalize = False
18:45:41 |-AuditInitialize = False
18:45:41 |-AuditReInitialize = False
18:45:41 |-AuditReStart = False
18:45:41 |-AuditServices = False
18:45:41 |-AuditStart = False
18:45:41 |-AuditStop = False
18:45:41 |-DeltaConf = True
18:45:41 |-DigitsShapeFileHi = 'pulsehi_physics.dat'
18:45:41 |-DigitsShapeFileLo = 'pulselo_physics.dat'
18:45:41 |-EmScaleA = 33.7 (default: 34.0)
18:45:41 |-EmScaleC10sp = 45.0
18:45:41 |-EmScaleE1 = 125.0
18:45:41 |-EmScaleE2 = 107.0
18:45:41 |-EmScaleE3 = 97.0
18:45:41 |-EmScaleE4 = 75.0
18:45:41 |-EmScaleE4prime = -1.0
18:45:41 |-EmScaleMBTSinner = 1.0
18:45:41 |-EmScaleMBTSouter = 1.0
18:45:41 |-LoadOptFilterCorrelation = False
18:45:41 |-LoadOptFilterWeights = False
18:45:41 |-MBTSL1Calib = 222.0
18:45:41 |-MBTSL1Max = 1850.0
18:45:41 |-MBTSL1NoiseSigma = 0.6
18:45:41 |-MBTSL1Ped = 0.0
18:45:41 |-MBTSL1Thresh = 5.0
18:45:41 |-MuL1Calib = 204.2
18:45:41 |-MuL1Max = 1850.0
18:45:41 |-MuL1NoiseSigma = 15.6
18:45:41 |-MuL1Ped = 0.0
18:45:41 |-MuL1Thresh = 5.0
18:45:41 |-MuRcvCalib = 14.2
18:45:41 |-MuRcvMax = 255.0
18:45:41 |-MuRcvNoiseSigma = 2.0
18:45:41 |-MuRcvPed = 11.73
18:45:41 |-MuRcvThresh = 5.0
18:45:41 |-NPhElec = 70
18:45:41 |-NPhElecA = 70
18:45:41 |-NPhElecC = 70
18:45:41 |-NPhElecD = 70
18:45:41 |-NPhElecE = 70
18:45:41 |-NPhElecE4prime = -1
18:45:41 |-NPhElecMBTSinner = 1500
18:45:41 |-NPhElecMBTSouter = 1070
18:45:41 |-NSamples = 7 (default: 7)
18:45:41 |-NoiseScaleIndex = 2 (default: 1)
18:45:41 |-OFPhysicsNSamples = 7 (default: 7)
18:45:41 |-OutputLevel = 7
18:45:41 |-TTL1Calib = 4.1
18:45:41 |-TTL1CosmicsGain = 5.0
18:45:41 |-TTL1CosmicsThresh = 5.0
18:45:41 |-TTL1Max = 1850.0
18:45:41 |-TTL1NoiseSigma = 2.5
18:45:41 |-TTL1Ped = 0.0
18:45:41 |-TTL1Thresh = 5.0
18:45:41 |-ThresholdDigits = -2.0
18:45:41 |-ThresholdRawChannel = -3.0
18:45:41 |-TileCoherNoise = False
18:45:41 |-TileCondToolEmscale = PublicToolHandle('TileCondToolEmscale')
18:45:41 |-TileCondToolNoiseSample = PublicToolHandle('TileCondToolNoiseSample')
18:45:41 |-TileCondToolTiming = PublicToolHandle('TileCondToolTiming')
18:45:41 |-TileNoise = True (default: True)
18:45:41 |-TileZeroSuppress = False
18:45:41 |-TrigSample = 3 (default: 3)
18:45:41 |-filenameDeltaCISSuffix = 'of2_Delta_CIS_7Samples'
18:45:41 |-filenameDeltaCorrSuffix = 'Delta_Phys_9Samples'
18:45:41 |-filenameDeltaPhysicsSuffix = 'of2_Delta_Phys_7Samples'
18:45:41 |-filenameNoiseCISSuffix = '510082_CIS'
18:45:41 |-filenameNoiseCorrSuffix = '520020_Phys'
18:45:41 |-filenameNoisePhysicsSuffix = '520020_Phys'
18:45:41 |-filename_DecoCovaFilePrefix = 'DecoCovaMatrix'
18:45:41 |-filename_MuL1ShapeFile = 'pulse_adder_muon_physics.dat'
18:45:41 |-filename_MuRcvShapeFile = 'pulse_adder_muonRcv_physics.dat'
18:45:41 |-filename_TTL1ShapeFile = 'pulse_adder_tower_physics.dat'
18:45:41 |-filename_dleakhi = 'dleakhi_100.dat'
18:45:41 |-filename_dleaklo = 'dleaklo_100.dat'
18:45:41 |-filename_dsleakhi = 'dsleakhi.0230055.12.cap.5.2.dat'
18:45:41 |-filename_dsleaklo = 'dsleaklo.0230055.12.cap.5.2.dat'
18:45:41 |-filename_hi_cis = 'pulsehi_cis_100.dat'
18:45:41 |-filename_hi_cis_der = 'dpulsehi_cis_100.dat'
18:45:41 |-filename_hi_las = 'pulsehi_laser.dat'
18:45:41 |-filename_hi_las_der = 'dpulsehi_laser.dat'
18:45:41 |-filename_hi_phys = 'pulsehi_physics.dat'
18:45:41 |-filename_hi_phys_der = 'dpulsehi_physics.dat'
18:45:41 |-filename_leakhi = 'leakhi_100.dat'
18:45:41 |-filename_leaklo = 'leaklo_100.dat'
18:45:41 |-filename_lo_cis = 'pulselo_cis_100.dat'
18:45:41 |-filename_lo_cis_der = 'dpulselo_cis_100.dat'
18:45:41 |-filename_lo_las = 'pulselo_laser.dat'
18:45:41 |-filename_lo_las_der = 'dpulselo_laser.dat'
18:45:41 |-filename_lo_phys = 'pulselo_physics.dat'
18:45:41 |-filename_lo_phys_der = 'dpulselo_physics.dat'
18:45:41 |-filename_nk_noise = 'noise_digi_nk.dat'
18:45:41 |-filename_orig_noise = 'noise_digi_orig.dat'
18:45:41 |-filename_shi_cis = 'pulsehi.0230055.12.cap.5.2.dat'
18:45:41 |-filename_shi_cis_der = 'dpulsehi.0230055.12.cap.5.2.dat'
18:45:41 |-filename_sleakhi = 'leakhi.0230055.12.cap.5.2.dat'
18:45:41 |-filename_sleaklo = 'leaklo.0230055.12.cap.5.2.dat'
18:45:41 |-filename_slo_cis = 'pulselo.0230055.12.cap.5.2.dat'
18:45:41 |-filename_slo_cis_der = 'dpulselo.0230055.12.cap.5.2.dat'
18:45:41 \----- (End of Service TileInfoLoader/TileInfoLoader) ----------------------------------------------
18:45:41 /***** Public AlgTool TileRawChannelBuilderOpt2Filter/TileRawChannelBuilderOptATLAS ****************
18:45:41 |-AmpMinForAmpCorrection = 15.0 (default: 15.0)
18:45:41 |-AmplitudeCorrection = True (default: False)
18:45:41 |-AuditFinalize = False
18:45:41 |-AuditInitialize = False
18:45:41 |-AuditStart = False
18:45:41 |-AuditStop = False
18:45:41 |-AuditTools = False
18:45:41 |-BeamInfo = PublicToolHandle('TileBeamInfoProvider/TileBeamInfoProvider')
18:45:41 |-BestPhase = False (default: False)
18:45:41 |-ConfTB = False
18:45:41 |-DataPoolSize = -1
18:45:41 |-DetStore = ServiceHandle('StoreGateSvc/DetectorStore')
18:45:41 |-EmulateDSP = False
18:45:41 |-EvtStore = ServiceHandle('StoreGateSvc')
18:45:41 |-ExtraInputs = [] (default: [])
18:45:41 |-ExtraOutputs = [] (default: [])
18:45:41 |-MaxIterations = 1 (default: 5)
18:45:41 |-Minus1Iteration = False (default: False)
18:45:41 |-MonitorService = 'MonitorSvc'
18:45:41 |-NoiseFilterTools = PublicToolHandleArray([])
18:45:41 |-OF2 = True (default: True)
18:45:41 |-OutputLevel = 7
18:45:41 |-PedestalMode = 17
18:45:41 |-RunType = 0 (default: 0)
18:45:41 |-TileCondToolNoiseSample = PublicToolHandle('TileCondToolNoiseSample')
18:45:41 |-TileCondToolOfc = PublicToolHandle('TileCondToolOfcCool/TileCondToolOfcCool')
18:45:41 | (default: 'TileCondToolOfc')
18:45:41 |-TileCondToolTiming = PublicToolHandle('TileCondToolTiming')
18:45:41 |-TileRawChannelContainer = 'TileRawChannelCnt' (default: 'TileRawChannelOpt2')
18:45:41 |-TimeCorrection = True (default: False)
18:45:41 |-TimeForConvergence = 0.5
18:45:41 |-TimeMaxForAmpCorrection = 12.5 (default: 25.0)
18:45:41 |-TimeMinForAmpCorrection = -12.5 (default: -25.0)
18:45:41 |-UseDSPCorrection = True
18:45:41 |-UserStore = ServiceHandle('UserDataSvc/UserDataSvc')
18:45:41 |-calibrateEnergy = False (default: False)
18:45:41 |-correctTime = False (default: False)
18:45:41 \----- (End of Public AlgTool TileRawChannelBuilderOpt2Filter/TileRawChannelBuilderOptATLAS) -------
18:45:41 Py:Athena INFO including file "TileL2Algs/TileL2Algs_jobOptions.py"
18:45:41 Py:Configured::existingOutput:TileL2FromRawChGetter: INFO one object not in output TileL2Container:TileL2Cnt
18:45:41 Py:Configured::existingOutput:TileL2FromRawChGetter: INFO No output objects already available. Continue.
18:45:41 Py:TileL2FromRawChGetter::configure: INFO entering
18:45:41 Py:TileL2FromRawChGetter::configure: INFO now adding to topSequence
18:45:41 Py:Configured::__init__:TileL2FromRawChGetter: INFO Configured/Enabled
18:45:41 Py:Athena INFO including file "Digitization/MuonDigitization.py"
18:45:41 Py:Athena INFO importing module 'MuonCnvExample.MuonCablingConfig'
18:45:41 Py:Athena INFO Importing MuonCnvExample.MuonCnvFlags
18:45:41 Py:MuonCnvExample.MuonCnvFlags INFO Changing default TgcCablingMode = '12-fold'
18:45:41 Py:MuonCnvExample.MuonCnvFlags INFO Changing default TgcCablingMode = 'auto'
18:45:41 Py:MuonCnvExample.MuonCnvFlags INFO Changing default TgcCablingMode = '12-fold'
18:45:41 Py:Athena INFO configuring Muon cabling in MuonCablingConfig
18:45:41 Py:Athena INFO importing the InputFilePeeker from MuoncablingConfig
18:45:41 Py:Athena INFO No RPC cabling taginfo found. Using normal configuration.
18:45:41 Py:Athena INFO RPC cabling is using mode: new
18:45:41 Py:Athena INFO TGC cabling is using mode: 12-fold
18:45:41 Py:Athena INFO MDT cabling is using mode: new
18:45:41 Py:Athena INFO Adding MDT/CABLING folders to conddb
18:45:41 Py:DigitizationFlags INFO Adding Digitization random number seed 'CscDigitToCscRDOTool OFFSET 34 49261510 105132394'
18:45:41 Py:Athena INFO including file "Digitization/LVL1Digitization.py"
18:45:41 Py:Athena INFO including file "LArL1Sim/LArL1Sim_G4_jobOptions.py"
18:45:41 Py:Configured::existingOutput:LArTTL1Getter: INFO No output objects already available. Continue.
18:45:41 Py:LArTTL1Getter::configure: INFO entering
18:45:41 Py:LArTTL1Getter::configure: INFO Using hit map from LArDigitMaker algoritm
18:45:41 Py:LArTTL1Getter::configure: INFO now adding to topSequence
18:45:41 Py:Configured::__init__:LArTTL1Getter: INFO Configured/Enabled
18:45:41 Py:DigitizationFlags INFO Adding Digitization random number seed 'LArTTL1Maker OFFSET 34 335242 7306589'
18:45:41 Py:Athena INFO including file "TileSimAlgs/TileTTL1_jobOptions.py"
18:45:41 Py:Configured::existingOutput:TileTTL1FromHitsGetter: INFO one object not in output TileTTL1Container:TileTTL1Cnt
18:45:41 Py:Configured::existingOutput:TileTTL1FromHitsGetter: INFO No output objects already available. Continue.
18:45:41 Py:TileTTL1FromHitsGetter::configure: INFO entering
18:45:41 Py:TileTTL1FromHitsGetter::configure: INFO now adding to topSequence
18:45:41 Py:Configured::__init__:TileTTL1FromHitsGetter: INFO Configured/Enabled
18:45:41 Py:DigitizationFlags INFO Adding Digitization random number seed 'Tile_HitToTTL1 OFFSET 34 4789899 989240512'
18:45:41 Py:Athena INFO including file "TileSimAlgs/TileMuonReceiver_jobOptions.py"
18:45:41 Py:DigitizationFlags INFO Adding Digitization random number seed 'Tile_PulseForTileMuonReceiver OFFSET 34 4789899 989240512'
18:45:42 Py:DigitizationFlags INFO Adding Digitization random number seed stored in jobProperties to Random Number Service 'AtDSFMTGenSvc'
18:45:42 Py:DigitizationFlags INFO Random Number Seeds stored in digitization jobProperty: ['PileUpCollXingStream OFFSET 34 123 345', 'BEAMINT OFFSET 34 678 91011', 'BCM_Digitization OFFSET 34 49261510 105132394', 'PixelDigitization OFFSET 34 10513239 492615104', 'SCT_Digitization OFFSET 34 49261510 105132394', 'TRT_DigitizationTool OFFSET 34 123456 345123', 'TRT_ElectronicsNoise OFFSET 34 123 345', 'TRT_Noise OFFSET 34 1234 3456', 'TRT_ThresholdFluctuations OFFSET 34 12345 34567', 'TRT_ProcessStraw OFFSET 34 123456 345678', 'TRT_PAI OFFSET 34 12345678 34567890', 'TRT_FakeConditions OFFSET 34 123456789 345678901', 'LArDigitization OFFSET 34 1234 5678', 'Tile_HitVecToCnt OFFSET 34 4789899 989240512', 'CSC_Digitization OFFSET 34 49261510 105132394', 'MDT_Digitization OFFSET 34 49261510 105132394', 'MDT_DigitizationTwin OFFSET 34 393242561 857132381', 'MDTResponse OFFSET 34 49261510 105132394', 'RPC_Digitization OFFSET 34 49261510 105132394', 'TGC_Digitization OFFSET 34 49261510 105132394', 'Tile_DigitsMaker OFFSET 34 4789899 989240512', 'CscDigitToCscRDOTool OFFSET 34 49261510 105132394', 'LArTTL1Maker OFFSET 34 335242 7306589', 'Tile_HitToTTL1 OFFSET 34 4789899 989240512', 'Tile_PulseForTileMuonReceiver OFFSET 34 4789899 989240512']
18:45:42 Py:DigitizationFlags INFO Random Number Seeds attached to Service 'AtDSFMTGenSvc': ['PileUpCollXingStream OFFSET 34 123 345', 'BEAMINT OFFSET 34 678 91011', 'BCM_Digitization OFFSET 34 49261510 105132394', 'PixelDigitization OFFSET 34 10513239 492615104', 'SCT_Digitization OFFSET 34 49261510 105132394', 'TRT_DigitizationTool OFFSET 34 123456 345123', 'TRT_ElectronicsNoise OFFSET 34 123 345', 'TRT_Noise OFFSET 34 1234 3456', 'TRT_ThresholdFluctuations OFFSET 34 12345 34567', 'TRT_ProcessStraw OFFSET 34 123456 345678', 'TRT_PAI OFFSET 34 12345678 34567890', 'TRT_FakeConditions OFFSET 34 123456789 345678901', 'LArDigitization OFFSET 34 1234 5678', 'Tile_HitVecToCnt OFFSET 34 4789899 989240512', 'CSC_Digitization OFFSET 34 49261510 105132394', 'MDT_Digitization OFFSET 34 49261510 105132394', 'MDT_DigitizationTwin OFFSET 34 393242561 857132381', 'MDTResponse OFFSET 34 49261510 105132394', 'RPC_Digitization OFFSET 34 49261510 105132394', 'TGC_Digitization OFFSET 34 49261510 105132394', 'Tile_DigitsMaker OFFSET 34 4789899 989240512', 'CscDigitToCscRDOTool OFFSET 34 49261510 105132394', 'LArTTL1Maker OFFSET 34 335242 7306589', 'Tile_HitToTTL1 OFFSET 34 4789899 989240512', 'Tile_PulseForTileMuonReceiver OFFSET 34 4789899 989240512']
18:45:42 Py:Digitization INFO Digitization Configured Successfully.
18:45:42 Py:JobPropertyContainer:: INFO The JobProperty Container Digitization is locked
18:45:44 Py:AthFile INFO opening [/files/mc16_13TeV/HITS.22003048._000023.pool.root.1]...
18:45:52 Py:DigitizationFlags INFO Found Run Number 284500 in hits file metadata.
18:45:52 Py:DigitizationWriteMetadata INFO Setting the Digitization MetaData IOV from the IOVDbMetaDataTool
18:45:52 Py:DigitizationWriteMetadata INFO Filling Digitization MetaData
18:45:52 Py:DigitizationWriteMetadata INFO DigitizationMetaData: setting "doInDetNoise" to be True
18:45:52 Py:DigitizationWriteMetadata INFO DigitizationMetaData: setting "doCaloNoise" to be True
18:45:52 Py:DigitizationWriteMetadata INFO DigitizationMetaData: setting "doMuonNoise" to be True
18:45:52 Py:DigitizationWriteMetadata INFO DigitizationMetaData: setting "bunchSpacing" to be 25
18:45:52 Py:DigitizationWriteMetadata INFO DigitizationMetaData: setting "initialBunchCrossing" to be -32
18:45:52 Py:DigitizationWriteMetadata INFO DigitizationMetaData: setting "finalBunchCrossing" to be 6
18:45:52 Py:DigitizationWriteMetadata INFO DigitizationMetaData: setting "doCavern" to be False
18:45:52 Py:DigitizationWriteMetadata INFO DigitizationMetaData: setting "doBeamGas" to be False
18:45:52 Py:DigitizationWriteMetadata INFO DigitizationMetaData: setting "doBeamHalo" to be False
18:45:52 Py:DigitizationWriteMetadata INFO DigitizationMetaData: setting "rndmSvc" to be AtDSFMTGenSvc
18:45:52 Py:DigitizationWriteMetadata INFO DigitizationMetaData: setting "physicsList" to be FTFP_BERT_ATL
18:45:52 Py:DigitizationWriteMetadata INFO DigitizationMetaData: setting "overrideMetadata" to be []
18:45:52 Py:DigitizationWriteMetadata INFO DigitizationMetaData: setting "pileupDSID" to be {'Low Pt Minimum Bias': 361034, 'High Pt Minimum Bias': 361035}
18:45:52 Py:DigitizationWriteMetadata INFO DigitizationMetaData: setting "digiSteeringConf" to be StandardSignalOnlyTruthPileUpToolsAlg
18:45:52 Py:DigitizationWriteMetadata INFO DigitizationMetaData: setting "BeamIntensityPattern" to be [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]
18:45:52 Py:DigitizationWriteMetadata INFO DigitizationMetaData: setting "beamType" to be collisions
18:45:52 Py:DigitizationWriteMetadata INFO DigitizationMetaData: setting "intraTrainBunchSpacing" to be 25
18:45:52 Py:DigitizationWriteMetadata INFO DigitizationMetaData: setting "IOVDbGlobalTag" to be OFLCOND-MC16-SDR-25
18:45:52 Py:DigitizationWriteMetadata INFO DigitizationMetaData: setting N_LowPtMinBiasInputFiles to be 2
18:45:52 Py:DigitizationWriteMetadata INFO DigitizationMetaData: setting N_HighPtMinBiasInputFiles to be 2
18:45:52 Py:DigitizationWriteMetadata INFO DigitizationMetaData: setting N_cavernInputFiles to be 0
18:45:52 Py:DigitizationWriteMetadata INFO DigitizationMetaData: setting N_beamGasInputFiles to be 0
18:45:52 Py:DigitizationWriteMetadata INFO DigitizationMetaData: setting N_beamHaloInputFiles to be 0
18:45:52 Py:DigitizationWriteMetadata INFO DigitizationMetaData: setting RunAndLumiAreOverriden to be True
18:45:52 Py:DigitizationWriteMetadata INFO DigitizationMetaData: setting "DetDescrVersion" to be ATLAS-R2-2016-01-00-01
18:45:52 Py:DigitizationWriteMetadata INFO DigitizationMetaData: setting "lvl1TriggerMenu" to be NONE
18:45:52 Py:DigitizationWriteMetadata INFO No attribute 'HGTD_on' found on DetFlags.digitize
18:45:52 Py:DigitizationWriteMetadata INFO Setting 'DigitizedDetectors' = ['pixel', 'SCT', 'TRT', 'BCM', 'LAr', 'Tile', 'MDT', 'CSC', 'TGC', 'RPC', 'Truth']
18:45:52 ParameterDbFiller.genDb: Removed db DigitParams.db
18:45:52 ParameterDbFiller.genDb: Recording parameters [digiSteeringConf (String4k) : StandardSignalOnlyTruthPileUpToolsAlg], [physicsList (String4k) : FTFP_BERT_ATL], [N_beamGasInputFiles (String4k) : 0], [doBeamHalo (String4k) : False], [pileupDSID (String4k) : {'Low Pt Minimum Bias': 361034, 'High Pt Minimum Bias': 361035}], [N_cavernInputFiles (String4k) : 0], [overrideMetadata (String4k) : []], [doCavern (String4k) : False], [IOVDbGlobalTag (String4k) : OFLCOND-MC16-SDR-25], [beamType (String4k) : collisions], [initialBunchCrossing (String4k) : -32], [doCaloNoise (String4k) : True], [rndmSvc (String4k) : AtDSFMTGenSvc], [DigitizedDetectors (String4k) : ['pixel', 'SCT', 'TRT', 'BCM', 'LAr', 'Tile', 'MDT', 'CSC', 'TGC', 'RPC', 'Truth']], [RunAndLumiAreOverriden (String4k) : True], [bunchSpacing (String4k) : 25], [doMuonNoise (String4k) : True], [intraTrainBunchSpacing (String4k) : 25], [doInDetNoise (String4k) : True], [N_HighPtMinBiasInputFiles (String4k) : 2], [N_beamHaloInputFiles (String4k) : 0], [finalBunchCrossing (String4k) : 6], [doBeamGas (String4k) : False], [N_LowPtMinBiasInputFiles (String4k) : 2], [DetDescrVersion (String4k) : ATLAS-R2-2016-01-00-01], [lvl1TriggerMenu (String4k) : NONE], [BeamIntensityPattern (String64k) : [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]]
18:45:52 ParameterDbFiller.genDb: Stored object
18:45:52 ParameterDbFiller.dumpDb: Dumping database: sqlite://;schema=DigitParams.db;dbname=DIGPARAM
18:45:52 ParameterDbFiller.dumpDb: Dumping folder /Digitization/Parameters
18:45:52 ParameterDbFiller.dumpDb: number of IOV payloads 1
18:45:52 ParameterDbFiller.dumpDb: Payload 0 since [r,l]: [ 310000 , 0 ] until [r,l]: [ 310001 , 0 ] payload [digiSteeringConf (String4k) : StandardSignalOnlyTruthPileUpToolsAlg], [physicsList (String4k) : FTFP_BERT_ATL], [N_beamGasInputFiles (String4k) : 0], [doBeamHalo (String4k) : False], [pileupDSID (String4k) : {'Low Pt Minimum Bias': 361034, 'High Pt Minimum Bias': 361035}], [N_cavernInputFiles (String4k) : 0], [overrideMetadata (String4k) : []], [doCavern (String4k) : False], [IOVDbGlobalTag (String4k) : OFLCOND-MC16-SDR-25], [beamType (String4k) : collisions], [initialBunchCrossing (String4k) : -32], [doCaloNoise (String4k) : True], [rndmSvc (String4k) : AtDSFMTGenSvc], [DigitizedDetectors (String4k) : ['pixel', 'SCT', 'TRT', 'BCM', 'LAr', 'Tile', 'MDT', 'CSC', 'TGC', 'RPC', 'Truth']], [RunAndLumiAreOverriden (String4k) : True], [bunchSpacing (String4k) : 25], [doMuonNoise (String4k) : True], [intraTrainBunchSpacing (String4k) : 25], [doInDetNoise (String4k) : True], [N_HighPtMinBiasInputFiles (String4k) : 2], [N_beamHaloInputFiles (String4k) : 0], [finalBunchCrossing (String4k) : 6], [doBeamGas (String4k) : False], [N_LowPtMinBiasInputFiles (String4k) : 2], [DetDescrVersion (String4k) : ATLAS-R2-2016-01-00-01], [lvl1TriggerMenu (String4k) : NONE], [BeamIntensityPattern (String64k) : [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]] chan 0
18:45:52 Py:Digi_trf INFO transform post-exec
18:45:52 Py:Digi_trf INFO CfgMgr.MessageSvc().setError+=["HepMcParticleLink"]
18:45:52 Py:Athena INFO including file "AthenaCommon/runbatch.py"
18:45:54 # setting LC_ALL to "C"
18:45:54 ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
18:45:54 ApplicationMgr SUCCESS
18:45:54 ====================================================================================================================================
18:45:54 Welcome to ApplicationMgr (GaudiCoreSvc v4r1)
18:45:54 running on 6d3977a64bdd on Mon Aug 17 18:45:54 2020
18:45:54 ====================================================================================================================================
18:45:54 ApplicationMgr INFO Successfully loaded modules : AthenaServices
18:45:55 ApplicationMgr INFO Application Manager Configured successfully
18:45:55 ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
18:45:55 AGDDtoGeoSvc INFO creating AGDDtoGeoSvc!!!
18:45:55 StatusCodeSvc INFO initialize
18:45:55 ChronoStatSvc INFO Number of skipped events for MemStat-1
18:45:55 MemStatAuditor INFO Memory usage has changed after AuditorSvc Initialize virtual size = 916.129 MB resident set size = 523.109 MB deltaVsize = 1e-05 MB
18:45:55 PerfMonSvc: INFO Initializing PerfMonSvc...
18:45:55 PerfMonSvc: INFO monitoring level: 1
18:45:55 PerfMonSvc: INFO opening pmon-stream file [ntuple.pmon.stream]...
18:45:55 PerfMonSvc: INFO Retrieving PyPerfMonSvc object...
18:45:55 PerfMonSvc: INFO Retrieving PyPerfMonSvc object...
18:45:55 PerfMonSvc: INFO Retrieving PyPerfMonSvc object... [OK]
18:45:55 Py:PerfMonSvc INFO initialization [cpu=7409.867 ms vmem= 916.133 MB]
18:45:55 Py:PerfMonSvc INFO configuring PerfMonSvc to store perfmon-infos into [ntuple.pmon.gz]
18:45:55 Py:PerfMonSvc INFO Components being monitored: 163
18:45:55 Py:PerfMonSvc INFO I/O containers: 3
18:45:55 Py:PerfMonSvc INFO pmon-stream: [ntuple.pmon.stream]
18:45:55 Py:PerfMonSvc INFO installing pmon-malloc hooks: False
18:45:55 Py:PerfMonSvc INFO pmon-malloc hooks enabled: False
18:45:55 Py:PerfMonSvc INFO initialization [cpu=7650.618 ms vmem= 928.340 MB] [OK]
18:45:55 MemStatAuditor INFO Memory usage has changed after IoComponentMgr Initialize virtual size = 928.738 MB resident set size = 533.734 MB deltaVsize = 12.6094 MB
18:45:55 MemStatAuditor INFO Memory usage has changed after PerfMonSvc Initialize virtual size = 928.738 MB resident set size = 533.773 MB deltaVsize = 0 MB
18:45:55 AthDictLoaderSvc INFO in initialize...
18:45:55 AthDictLoaderSvc INFO acquired Dso-registry
18:45:55 ClassIDSvc INFO getRegistryEntries: read 8504 CLIDRegistry entries for module ALL
18:45:55 MemStatAuditor INFO Memory usage has changed after ClassIDSvc Initialize virtual size = 928.918 MB resident set size = 534.406 MB deltaVsize = 0.179688 MB
18:45:55 MemStatAuditor INFO Memory usage has changed after AthDictLoaderSvc Initialize virtual size = 928.918 MB resident set size = 534.527 MB deltaVsize = 0 MB
18:45:55 CoreDumpSvc INFO install f-a-t-a-l handler... (flag = -1)
18:45:55 CoreDumpSvc INFO Handling signals: 11(Segmentation fault) 7(Bus error) 4(Illegal instruction) 8(Floating point exception)
18:45:55 MemStatAuditor INFO Memory usage has changed after CoreDumpSvc Initialize virtual size = 928.918 MB resident set size = 534.562 MB deltaVsize = 0 MB
18:45:55 MemStatAuditor INFO Memory usage has changed after EventPersistencySvc Initialize virtual size = 928.961 MB resident set size = 534.695 MB deltaVsize = 0.0429688 MB
18:45:55 MetaDataSvc INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00
18:45:55 MemStatAuditor INFO Memory usage has changed after InputMetaDataStore Initialize virtual size = 929.656 MB resident set size = 535.312 MB deltaVsize = 0.695312 MB
18:45:55 MemStatAuditor INFO Memory usage has changed after MetaDataStore Initialize virtual size = 929.656 MB resident set size = 535.32 MB deltaVsize = 0 MB
18:45:55 AthenaPoolCnvSvc INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-00-00-00
18:45:55 MemStatAuditor INFO Memory usage has changed after DataModelCompatSvc Initialize virtual size = 937.465 MB resident set size = 540.23 MB deltaVsize = 7.80859 MB
18:45:55 PoolSvc INFO Initializing PoolSvc - package version PoolSvc-00-00-00
18:45:55 PoolSvc INFO io_register[PoolSvc](xmlcatalog_file:PoolFileCatalog.xml) [ok]
18:45:55 PoolSvc INFO Set connectionsvc retry/timeout/IDLE timeout to 'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled
18:45:55 PoolSvc INFO Frontier compression level set to 5
18:45:55 DBReplicaSvc INFO Read replica configuration from /usr/Athena/21.0.77/InstallArea/x86_64-slc6-gcc62-opt/share/dbreplica.config
18:45:55 DBReplicaSvc INFO No specific match for domain found - use default fallback
18:45:55 DBReplicaSvc INFO Total of 1 servers found for host 6d3977a64bdd [atlas_dd ]
18:45:55 MemStatAuditor INFO Memory usage has changed after DBReplicaSvc Initialize virtual size = 938.676 MB resident set size = 540.992 MB deltaVsize = 1.21094 MB
18:45:55 PoolSvc INFO Successfully setup replica sorting algorithm
18:45:55 PoolSvc INFO Setting up APR FileCatalog and Streams
18:45:55 PoolSvc INFO Resolved path (via DATAPATH) is /usr/database/DBRelease/300.0.1/poolcond/PoolCat_oflcond.xml
18:45:55 PoolSvc INFO POOL WriteCatalog is xmlcatalog_file:PoolFileCatalog.xml
18:45:55 XMLFileCatalog Info Connecting to the catalog
18:45:55 PoolXMLFileCatalog Info Xerces-c initialization Number 0
18:45:55 XMLFileCatalog Info Connecting to the catalog
18:45:55 XMLDOMErrorMessanger Error Error at file "/home/atlas/PoolFileCatalog.xml", line 26, column 50
18:45:55 Message: ID value '13CC932D-494C-C94A-95B8-F62ACAD80B7C' has already been used
18:45:55 XMLDOMErrorMessanger Error Error at file "/home/atlas/PoolFileCatalog.xml", line 33, column 50
18:45:55 Message: ID value '89532C0A-4719-EC47-846C-512C15C58288' has already been used
18:45:55 XMLDOMErrorMessanger Error Error at file "/home/atlas/PoolFileCatalog.xml", line 40, column 50
18:45:55 Message: ID value '5E12270C-548D-9C40-A3F3-CE6EBD5E2C77' has already been used
18:45:55 PoolXMLFileCatalog Info Read-only filesystem
18:45:56 PoolSvc INFO Re-initializing PoolSvc
18:45:56 MemStatAuditor INFO Memory usage has changed after PoolSvc Initialize virtual size = 983.957 MB resident set size = 585.551 MB deltaVsize = 45.2812 MB
18:45:56 MemStatAuditor INFO Memory usage has changed after AthenaPoolCnvSvc Initialize virtual size = 983.957 MB resident set size = 585.582 MB deltaVsize = 0 MB
18:45:56 MemStatAuditor INFO Memory usage has changed after FileMgr Initialize virtual size = 986.125 MB resident set size = 587.32 MB deltaVsize = 2.16797 MB
18:45:56 MemStatAuditor INFO Memory usage has changed after ToolSvc.IOVDbMetaDataTool Initialize virtual size = 986.52 MB resident set size = 587.727 MB deltaVsize = 0.394531 MB
18:45:56 EventSelector INFO Initializing EventSelector - package version EventSelectorAthenaPool-00-00-00
18:45:56 MemStatAuditor INFO Memory usage has changed after TagMetaDataStore Initialize virtual size = 987.141 MB resident set size = 588.219 MB deltaVsize = 0.621094 MB
18:45:56 EventSelector INFO reinitialization...
18:45:56 EventSelector INFO EventSelection with query
18:45:56 RootCollection Info Opening Collection File /files/mc16_13TeV/HITS.22003048._000023.pool.root.1 in mode: READ
18:45:56 RootCollection Info File /files/mc16_13TeV/HITS.22003048._000023.pool.root.1 opened
18:45:56 DbSession Info Open DbSession
18:45:56 Domain[ROOT_All] Info > Access DbDomain READ [ROOT_All]
18:45:56 Domain[ROOT_All] Info -> Access DbDatabase READ [ROOT_All] 5E12270C-548D-9C40-A3F3-CE6EBD5E2C77
18:45:56 Domain[ROOT_All] Info /files/mc16_13TeV/HITS.22003048._000023.pool.root.1
18:45:56 RootDatabase.open Always /files/mc16_13TeV/HITS.22003048._000023.pool.root.1 File version:60806
18:45:56 ImplicitCollection Info Opened the implicit collection with connection string "PFN:/files/mc16_13TeV/HITS.22003048._000023.pool.root.1"
18:45:56 ImplicitCollection Info and a name "POOLContainer(DataHeader)"
18:45:56 PoolSvc INFO Failed to find container MetaDataHdrDataHeader to get Token.
18:45:56 EventPersistenc... INFO Added successfully Conversion service:AthenaPoolCnvSvc
18:45:56 ClassIDSvc INFO getRegistryEntries: read 1794 CLIDRegistry entries for module ALL
18:45:56 ToolSvc.IOVDbMe... INFO checkOverrideRunNumber: overriding IOV for range - min: 310000 max: 310001
18:45:56 ClassIDSvc INFO getRegistryEntries: read 2 CLIDRegistry entries for module ALL
18:45:56 ClassIDSvc INFO getRegistryEntries: read 4 CLIDRegistry entries for module ALL
18:45:56 MemStatAuditor INFO Memory usage has changed after EventSelector Initialize virtual size = 1004.65 MB resident set size = 598.887 MB deltaVsize = 17.5117 MB
18:45:56 MemStatAuditor INFO Memory usage has changed after MetaDataSvc Initialize virtual size = 1004.65 MB resident set size = 599.07 MB deltaVsize = 0 MB
18:45:56 AthenaPoolAddre... INFO Initializing AthenaPoolAddressProviderSvc - package version EventSelectorAthenaPool-00-00-00
18:45:56 MemStatAuditor INFO Memory usage has changed after AthenaPoolAddressProviderSvc Initialize virtual size = 1004.65 MB resident set size = 599.078 MB deltaVsize = 0 MB
18:45:56 IOVDbSvc INFO Opened read transaction for POOL PersistencySvc
18:45:56 IOVDbSvc INFO Only 5 POOL conditions files will be open at once
18:45:56 IOVDbSvc INFO Global tag: OFLCOND-MC16-SDR-25 set from joboptions
18:45:56 IOVDbSvc INFO Folder /LAR/Identifier/OnOffIdMap, adding new key tag with value LARIdentifierOnOffIdMap-012
18:45:56 IOVDbSvc INFO Folder /LAR/Identifier/CalibIdMap, adding new key tag with value LARIdentifierCalibIdMap-012
18:45:56 IOVDbSvc INFO Folder /LAR/Identifier/FebRodMap, adding new key tag with value LARIdentifierFebRodMap-005
18:45:56 IOVDbSvc INFO Read from meta data only for folder /TagInfo
18:45:56 IOVDbSvc INFO Inputfile tag override disabled for /GLOBAL/BField/Maps
18:45:56 IOVDbSvc INFO Folder /GLOBAL/BField/Maps will be written to file metadata
18:45:56 IOVDbSvc INFO Folder /Digitization/Parameters will be written to file metadata
18:45:56 IOVDbSvc INFO Initialised with 15 connections and 88 folders
18:45:56 IOVDbSvc INFO Service IOVDbSvc initialised successfully
18:45:56 MemStatAuditor INFO Memory usage has changed after IOVDbSvc Initialize virtual size = 1005.22 MB resident set size = 599.434 MB deltaVsize = 0.566406 MB
18:45:56 MemStatAuditor INFO Memory usage has changed after TagInfoMgr Initialize virtual size = 1005.54 MB resident set size = 599.812 MB deltaVsize = 0.324219 MB
18:45:56 ProxyProviderSvc INFO Initializing ProxyProviderSvc - package version SGComps-00-00-00
18:45:56 MemStatAuditor INFO Memory usage has changed after ProxyProviderSvc Initialize virtual size = 1005.54 MB resident set size = 599.82 MB deltaVsize = 0 MB
18:45:56 IOVDbSvc INFO Folder /GLOBAL/BField/Maps will be taken from file metadata
18:45:56 IOVDbSvc INFO Folder /TagInfo will be taken from file metadata
18:45:56 IOVDbSvc INFO Found 4 metadata containers in input file, 2 will be used
18:45:56 MemStatAuditor INFO Memory usage has changed after StoreGateSvc Initialize virtual size = 1005.66 MB resident set size = 599.969 MB deltaVsize = 0.113281 MB
18:45:56 MemStatAuditor INFO Memory usage has changed after ConditionStore Initialize virtual size = 1005.66 MB resident set size = 600 MB deltaVsize = 0 MB
18:45:56 IOVSvc INFO No IOVSvcTool associated with store "StoreGateSvc"
18:45:56 IOVSvcTool INFO IOVRanges will be checked at every Event
18:45:56 MemStatAuditor INFO Memory usage has changed after IOVSvc.StoreGateSvc Initialize virtual size = 1005.66 MB resident set size = 600.02 MB deltaVsize = 0 MB
18:45:56 IOVDbSvc INFO Opening COOL connection for COOLOFL_TRT/OFLP200
18:45:56 RalSessionMgr Info Instantiate a R/O RalSessionMgr for 'COOLOFL_TRT/OFLP200'
18:45:56 RalSessionMgr Info Connect to the database server
18:45:56 CORAL/Services/ConnectionService Info Re-ordering 4 replicas using installed algorithm
18:45:56 CORAL/Services/ConnectionService Info Sorting algorithm selected 2 replicas
18:45:56 CORAL/Services/ConnectionService Warning Failed to connect to service sqlite200/ALLP200.db (coral::Exception): 'CORAL/RelationalPlugins/sqlite ( CORAL : "Connection::connect" from "/home/atlas/sqlite200 is not writable" )' - do NOT retry
18:45:56 CORAL/Services/ConnectionService Info Connection to service "sqlite200/ALLP200.db" with connectionID=C#5 will be disconnected
18:45:56 CORAL/Services/ConnectionService Warning Failure while attempting to connect to "sqlite_file:sqlite200/ALLP200.db": CORAL/RelationalPlugins/sqlite ( CORAL : "Connection::connect" from "/home/atlas/sqlite200 is not writable" )
18:45:56 CORAL/Services/ConnectionService Info New connection to service "/usr/database/DBRelease/300.0.1/sqlite200/ALLP200.db" with connectionID=C#6 has been connected
18:45:56 CORAL/Services/ConnectionService Info New user session with sessionID=S#4(C#6.s#1) started on connectionID=C#6 to service "/usr/database/DBRelease/300.0.1/sqlite200/ALLP200.db" for user "" in read-only mode
18:45:56 RalSessionMgr Info Start a read-only transaction active for the duration of the database connection
18:45:56 RelationalDatabase Info Instantiate a R/O RalDatabase for 'COOLOFL_TRT/OFLP200'
18:45:56 IOVDbSvc INFO Opening COOL connection for COOLOFL_INDET/OFLP200
18:45:56 RalSessionMgr Info Instantiate a R/O RalSessionMgr for 'COOLOFL_INDET/OFLP200'
18:45:56 RalSessionMgr Info Connect to the database server
18:45:56 CORAL/Services/ConnectionService Info Re-ordering 4 replicas using installed algorithm
18:45:56 CORAL/Services/ConnectionService Info Sorting algorithm selected 2 replicas
18:45:56 CORAL/Services/ConnectionService Warning Failed to connect to service sqlite200/ALLP200.db (coral::Exception): 'CORAL/RelationalPlugins/sqlite ( CORAL : "Connection::connect" from "/home/atlas/sqlite200 is not writable" )' - do NOT retry
18:45:56 CORAL/Services/ConnectionService Info Connection to service "sqlite200/ALLP200.db" with connectionID=C#7 will be disconnected
18:45:56 CORAL/Services/ConnectionService Warning Failure while attempting to connect to "sqlite_file:sqlite200/ALLP200.db": CORAL/RelationalPlugins/sqlite ( CORAL : "Connection::connect" from "/home/atlas/sqlite200 is not writable" )
18:45:56 CORAL/Services/ConnectionService Info New user session with sessionID=S#5(C#6.s#2) started on connectionID=C#6 to service "/usr/database/DBRelease/300.0.1/sqlite200/ALLP200.db" for user "" in read-only mode
18:45:56 RalSessionMgr Info Start a read-only transaction active for the duration of the database connection
18:45:56 RelationalDatabase Info Instantiate a R/O RalDatabase for 'COOLOFL_INDET/OFLP200'
18:45:56 IOVDbSvc INFO Disconnecting from COOLOFL_TRT/OFLP200
18:45:56 RalSessionMgr Info Commit the read-only transaction active for the duration of the database connection
18:45:56 RalSessionMgr Info Disconnect from the database server
18:45:56 CORAL/Services/ConnectionService Info User session with sessionID=S#4(C#6.s#1) will be ended on connectionID=C#6
18:45:56 RelationalDatabase Info Delete the RalDatabase for 'COOLOFL_TRT/OFLP200'
18:45:56 RalSessionMgr Info Delete the RalSessionMgr for 'COOLOFL_TRT/OFLP200'
18:45:56 IOVDbSvc INFO Opening COOL connection for COOLOFL_LAR/OFLP200
18:45:56 RalSessionMgr Info Instantiate a R/O RalSessionMgr for 'COOLOFL_LAR/OFLP200'
18:45:56 RalSessionMgr Info Connect to the database server
18:45:56 CORAL/Services/ConnectionService Info Re-ordering 4 replicas using installed algorithm
18:45:56 CORAL/Services/ConnectionService Info Sorting algorithm selected 2 replicas
18:45:56 CORAL/Services/ConnectionService Warning Failed to connect to service sqlite200/ALLP200.db (coral::Exception): 'CORAL/RelationalPlugins/sqlite ( CORAL : "Connection::connect" from "/home/atlas/sqlite200 is not writable" )' - do NOT retry
18:45:56 CORAL/Services/ConnectionService Info Connection to service "sqlite200/ALLP200.db" with connectionID=C#8 will be disconnected
18:45:56 CORAL/Services/ConnectionService Warning Failure while attempting to connect to "sqlite_file:sqlite200/ALLP200.db": CORAL/RelationalPlugins/sqlite ( CORAL : "Connection::connect" from "/home/atlas/sqlite200 is not writable" )
18:45:56 CORAL/Services/ConnectionService Info New user session with sessionID=S#6(C#6.s#3) started on connectionID=C#6 to service "/usr/database/DBRelease/300.0.1/sqlite200/ALLP200.db" for user "" in read-only mode
18:45:56 RalSessionMgr Info Start a read-only transaction active for the duration of the database connection
18:45:56 RelationalDatabase Info Instantiate a R/O RalDatabase for 'COOLOFL_LAR/OFLP200'
18:45:56 IOVDbSvc INFO Disconnecting from COOLOFL_INDET/OFLP200
18:45:56 RalSessionMgr Info Commit the read-only transaction active for the duration of the database connection
18:45:56 RalSessionMgr Info Disconnect from the database server
18:45:56 CORAL/Services/ConnectionService Info User session with sessionID=S#5(C#6.s#2) will be ended on connectionID=C#6
18:45:56 RelationalDatabase Info Delete the RalDatabase for 'COOLOFL_INDET/OFLP200'
18:45:56 RalSessionMgr Info Delete the RalSessionMgr for 'COOLOFL_INDET/OFLP200'
18:45:56 ClassIDSvc INFO getRegistryEntries: read 170 CLIDRegistry entries for module ALL
18:45:56 IOVDbSvc INFO Opening COOL connection for COOLOFL_DCS/OFLP200
18:45:56 RalSessionMgr Info Instantiate a R/O RalSessionMgr for 'COOLOFL_DCS/OFLP200'
18:45:56 RalSessionMgr Info Connect to the database server
18:45:56 CORAL/Services/ConnectionService Info Re-ordering 4 replicas using installed algorithm
18:45:56 CORAL/Services/ConnectionService Info Sorting algorithm selected 2 replicas
18:45:56 CORAL/Services/ConnectionService Warning Failed to connect to service sqlite200/ALLP200.db (coral::Exception): 'CORAL/RelationalPlugins/sqlite ( CORAL : "Connection::connect" from "/home/atlas/sqlite200 is not writable" )' - do NOT retry
18:45:56 CORAL/Services/ConnectionService Info Connection to service "sqlite200/ALLP200.db" with connectionID=C#9 will be disconnected
18:45:56 CORAL/Services/ConnectionService Warning Failure while attempting to connect to "sqlite_file:sqlite200/ALLP200.db": CORAL/RelationalPlugins/sqlite ( CORAL : "Connection::connect" from "/home/atlas/sqlite200 is not writable" )
18:45:56 CORAL/Services/ConnectionService Info New user session with sessionID=S#7(C#6.s#4) started on connectionID=C#6 to service "/usr/database/DBRelease/300.0.1/sqlite200/ALLP200.db" for user "" in read-only mode
18:45:56 RalSessionMgr Info Start a read-only transaction active for the duration of the database connection
18:45:56 RelationalDatabase Info Instantiate a R/O RalDatabase for 'COOLOFL_DCS/OFLP200'
18:45:56 IOVDbSvc INFO Disconnecting from COOLOFL_LAR/OFLP200
18:45:56 RalSessionMgr Info Commit the read-only transaction active for the duration of the database connection
18:45:56 RalSessionMgr Info Disconnect from the database server
18:45:56 CORAL/Services/ConnectionService Info User session with sessionID=S#6(C#6.s#3) will be ended on connectionID=C#6
18:45:56 RelationalDatabase Info Delete the RalDatabase for 'COOLOFL_LAR/OFLP200'
18:45:56 RalSessionMgr Info Delete the RalSessionMgr for 'COOLOFL_LAR/OFLP200'
18:45:56 IOVDbSvc INFO Opening COOL connection for COOLOFL_PIXEL/OFLP200
18:45:56 RalSessionMgr Info Instantiate a R/O RalSessionMgr for 'COOLOFL_PIXEL/OFLP200'
18:45:56 RalSessionMgr Info Connect to the database server
18:45:56 CORAL/Services/ConnectionService Info Re-ordering 4 replicas using installed algorithm
18:45:56 CORAL/Services/ConnectionService Info Sorting algorithm selected 2 replicas
18:45:56 CORAL/Services/ConnectionService Warning Failed to connect to service sqlite200/ALLP200.db (coral::Exception): 'CORAL/RelationalPlugins/sqlite ( CORAL : "Connection::connect" from "/home/atlas/sqlite200 is not writable" )' - do NOT retry
18:45:56 CORAL/Services/ConnectionService Info Connection to service "sqlite200/ALLP200.db" with connectionID=C#10 will be disconnected
18:45:56 CORAL/Services/ConnectionService Warning Failure while attempting to connect to "sqlite_file:sqlite200/ALLP200.db": CORAL/RelationalPlugins/sqlite ( CORAL : "Connection::connect" from "/home/atlas/sqlite200 is not writable" )
18:45:56 CORAL/Services/ConnectionService Info New user session with sessionID=S#8(C#6.s#5) started on connectionID=C#6 to service "/usr/database/DBRelease/300.0.1/sqlite200/ALLP200.db" for user "" in read-only mode
18:45:56 RalSessionMgr Info Start a read-only transaction active for the duration of the database connection
18:45:56 RelationalDatabase Info Instantiate a R/O RalDatabase for 'COOLOFL_PIXEL/OFLP200'
18:45:56 IOVDbSvc INFO Disconnecting from COOLOFL_DCS/OFLP200
18:45:56 RalSessionMgr Info Commit the read-only transaction active for the duration of the database connection
18:45:56 RalSessionMgr Info Disconnect from the database server
18:45:56 CORAL/Services/ConnectionService Info User session with sessionID=S#7(C#6.s#4) will be ended on connectionID=C#6
18:45:56 RelationalDatabase Info Delete the RalDatabase for 'COOLOFL_DCS/OFLP200'
18:45:56 RalSessionMgr Info Delete the RalSessionMgr for 'COOLOFL_DCS/OFLP200'
18:45:56 IOVDbSvc INFO Opening COOL connection for COOLOFL_SCT/OFLP200
18:45:56 RalSessionMgr Info Instantiate a R/O RalSessionMgr for 'COOLOFL_SCT/OFLP200'
18:45:56 RalSessionMgr Info Connect to the database server
18:45:56 CORAL/Services/ConnectionService Info Re-ordering 4 replicas using installed algorithm
18:45:56 CORAL/Services/ConnectionService Info Sorting algorithm selected 2 replicas
18:45:56 CORAL/Services/ConnectionService Warning Failed to connect to service sqlite200/ALLP200.db (coral::Exception): 'CORAL/RelationalPlugins/sqlite ( CORAL : "Connection::connect" from "/home/atlas/sqlite200 is not writable" )' - do NOT retry
18:45:56 CORAL/Services/ConnectionService Info Connection to service "sqlite200/ALLP200.db" with connectionID=C#11 will be disconnected
18:45:56 CORAL/Services/ConnectionService Warning Failure while attempting to connect to "sqlite_file:sqlite200/ALLP200.db": CORAL/RelationalPlugins/sqlite ( CORAL : "Connection::connect" from "/home/atlas/sqlite200 is not writable" )
18:45:56 CORAL/Services/ConnectionService Info New user session with sessionID=S#9(C#6.s#6) started on connectionID=C#6 to service "/usr/database/DBRelease/300.0.1/sqlite200/ALLP200.db" for user "" in read-only mode
18:45:56 RalSessionMgr Info Start a read-only transaction active for the duration of the database connection
18:45:56 RelationalDatabase Info Instantiate a R/O RalDatabase for 'COOLOFL_SCT/OFLP200'
18:45:56 IOVDbSvc INFO Disconnecting from COOLOFL_PIXEL/OFLP200
18:45:56 RalSessionMgr Info Commit the read-only transaction active for the duration of the database connection
18:45:56 RalSessionMgr Info Disconnect from the database server
18:45:56 CORAL/Services/ConnectionService Info User session with sessionID=S#8(C#6.s#5) will be ended on connectionID=C#6
18:45:56 RelationalDatabase Info Delete the RalDatabase for 'COOLOFL_PIXEL/OFLP200'
18:45:56 RalSessionMgr Info Delete the RalSessionMgr for 'COOLOFL_PIXEL/OFLP200'
18:45:56 IOVDbSvc INFO Opening COOL connection for COOLOFL_CALO/OFLP200
18:45:56 RalSessionMgr Info Instantiate a R/O RalSessionMgr for 'COOLOFL_CALO/OFLP200'
18:45:56 RalSessionMgr Info Connect to the database server
18:45:56 CORAL/Services/ConnectionService Info Re-ordering 4 replicas using installed algorithm
18:45:56 CORAL/Services/ConnectionService Info Sorting algorithm selected 2 replicas
18:45:56 CORAL/Services/ConnectionService Warning Failed to connect to service sqlite200/ALLP200.db (coral::Exception): 'CORAL/RelationalPlugins/sqlite ( CORAL : "Connection::connect" from "/home/atlas/sqlite200 is not writable" )' - do NOT retry
18:45:56 CORAL/Services/ConnectionService Info Connection to service "sqlite200/ALLP200.db" with connectionID=C#12 will be disconnected
18:45:56 CORAL/Services/ConnectionService Warning Failure while attempting to connect to "sqlite_file:sqlite200/ALLP200.db": CORAL/RelationalPlugins/sqlite ( CORAL : "Connection::connect" from "/home/atlas/sqlite200 is not writable" )
18:45:56 CORAL/Services/ConnectionService Info New user session with sessionID=S#10(C#6.s#7) started on connectionID=C#6 to service "/usr/database/DBRelease/300.0.1/sqlite200/ALLP200.db" for user "" in read-only mode
18:45:56 RalSessionMgr Info Start a read-only transaction active for the duration of the database connection
18:45:56 RelationalDatabase Info Instantiate a R/O RalDatabase for 'COOLOFL_CALO/OFLP200'
18:45:56 IOVDbSvc INFO Disconnecting from COOLOFL_SCT/OFLP200
18:45:56 RalSessionMgr Info Commit the read-only transaction active for the duration of the database connection
18:45:56 RalSessionMgr Info Disconnect from the database server
18:45:56 CORAL/Services/ConnectionService Info User session with sessionID=S#9(C#6.s#6) will be ended on connectionID=C#6
18:45:56 RelationalDatabase Info Delete the RalDatabase for 'COOLOFL_SCT/OFLP200'
18:45:56 RalSessionMgr Info Delete the RalSessionMgr for 'COOLOFL_SCT/OFLP200'
18:45:56 IOVDbSvc INFO Opening COOL connection for COOLOFL_TILE/OFLP200
18:45:56 RalSessionMgr Info Instantiate a R/O RalSessionMgr for 'COOLOFL_TILE/OFLP200'
18:45:56 RalSessionMgr Info Connect to the database server
18:45:56 CORAL/Services/ConnectionService Info Re-ordering 4 replicas using installed algorithm
18:45:56 CORAL/Services/ConnectionService Info Sorting algorithm selected 2 replicas
18:45:56 CORAL/Services/ConnectionService Warning Failed to connect to service sqlite200/ALLP200.db (coral::Exception): 'CORAL/RelationalPlugins/sqlite ( CORAL : "Connection::connect" from "/home/atlas/sqlite200 is not writable" )' - do NOT retry
18:45:56 CORAL/Services/ConnectionService Info Connection to service "sqlite200/ALLP200.db" with connectionID=C#13 will be disconnected
18:45:56 CORAL/Services/ConnectionService Warning Failure while attempting to connect to "sqlite_file:sqlite200/ALLP200.db": CORAL/RelationalPlugins/sqlite ( CORAL : "Connection::connect" from "/home/atlas/sqlite200 is not writable" )
18:45:56 CORAL/Services/ConnectionService Info New user session with sessionID=S#11(C#6.s#8) started on connectionID=C#6 to service "/usr/database/DBRelease/300.0.1/sqlite200/ALLP200.db" for user "" in read-only mode
18:45:56 RalSessionMgr Info Start a read-only transaction active for the duration of the database connection
18:45:56 RelationalDatabase Info Instantiate a R/O RalDatabase for 'COOLOFL_TILE/OFLP200'
18:45:56 IOVDbSvc INFO Disconnecting from COOLOFL_CALO/OFLP200
18:45:56 RalSessionMgr Info Commit the read-only transaction active for the duration of the database connection
18:45:56 RalSessionMgr Info Disconnect from the database server
18:45:56 CORAL/Services/ConnectionService Info User session with sessionID=S#10(C#6.s#7) will be ended on connectionID=C#6
18:45:56 RelationalDatabase Info Delete the RalDatabase for 'COOLOFL_CALO/OFLP200'
18:45:56 RalSessionMgr Info Delete the RalSessionMgr for 'COOLOFL_CALO/OFLP200'
18:45:56 IOVDbSvc INFO Opening COOL connection for COOLOFL_CSC/OFLP200
18:45:56 RalSessionMgr Info Instantiate a R/O RalSessionMgr for 'COOLOFL_CSC/OFLP200'
18:45:56 RalSessionMgr Info Connect to the database server
18:45:56 CORAL/Services/ConnectionService Info Re-ordering 4 replicas using installed algorithm
18:45:56 CORAL/Services/ConnectionService Info Sorting algorithm selected 2 replicas
18:45:56 CORAL/Services/ConnectionService Warning Failed to connect to service sqlite200/ALLP200.db (coral::Exception): 'CORAL/RelationalPlugins/sqlite ( CORAL : "Connection::connect" from "/home/atlas/sqlite200 is not writable" )' - do NOT retry
18:45:56 CORAL/Services/ConnectionService Info Connection to service "sqlite200/ALLP200.db" with connectionID=C#14 will be disconnected
18:45:56 CORAL/Services/ConnectionService Warning Failure while attempting to connect to "sqlite_file:sqlite200/ALLP200.db": CORAL/RelationalPlugins/sqlite ( CORAL : "Connection::connect" from "/home/atlas/sqlite200 is not writable" )
18:45:56 CORAL/Services/ConnectionService Info New user session with sessionID=S#12(C#6.s#9) started on connectionID=C#6 to service "/usr/database/DBRelease/300.0.1/sqlite200/ALLP200.db" for user "" in read-only mode
18:45:56 RalSessionMgr Info Start a read-only transaction active for the duration of the database connection
18:45:56 RelationalDatabase Info Instantiate a R/O RalDatabase for 'COOLOFL_CSC/OFLP200'
18:45:56 IOVDbSvc INFO Disconnecting from COOLOFL_TILE/OFLP200
18:45:56 RalSessionMgr Info Commit the read-only transaction active for the duration of the database connection
18:45:56 RalSessionMgr Info Disconnect from the database server
18:45:56 CORAL/Services/ConnectionService Info User session with sessionID=S#11(C#6.s#8) will be ended on connectionID=C#6
18:45:56 RelationalDatabase Info Delete the RalDatabase for 'COOLOFL_TILE/OFLP200'
18:45:56 RalSessionMgr Info Delete the RalSessionMgr for 'COOLOFL_TILE/OFLP200'
18:45:56 IOVDbSvc INFO Opening COOL connection for COOLOFL_MDT/OFLP200
18:45:56 RalSessionMgr Info Instantiate a R/O RalSessionMgr for 'COOLOFL_MDT/OFLP200'
18:45:56 RalSessionMgr Info Connect to the database server
18:45:56 CORAL/Services/ConnectionService Info Re-ordering 4 replicas using installed algorithm
18:45:56 CORAL/Services/ConnectionService Info Sorting algorithm selected 2 replicas
18:45:56 CORAL/Services/ConnectionService Warning Failed to connect to service sqlite200/ALLP200.db (coral::Exception): 'CORAL/RelationalPlugins/sqlite ( CORAL : "Connection::connect" from "/home/atlas/sqlite200 is not writable" )' - do NOT retry
18:45:56 CORAL/Services/ConnectionService Info Connection to service "sqlite200/ALLP200.db" with connectionID=C#15 will be disconnected
18:45:56 CORAL/Services/ConnectionService Warning Failure while attempting to connect to "sqlite_file:sqlite200/ALLP200.db": CORAL/RelationalPlugins/sqlite ( CORAL : "Connection::connect" from "/home/atlas/sqlite200 is not writable" )
18:45:56 CORAL/Services/ConnectionService Info New user session with sessionID=S#13(C#6.s#10) started on connectionID=C#6 to service "/usr/database/DBRelease/300.0.1/sqlite200/ALLP200.db" for user "" in read-only mode
18:45:56 RalSessionMgr Info Start a read-only transaction active for the duration of the database connection
18:45:56 RelationalDatabase Info Instantiate a R/O RalDatabase for 'COOLOFL_MDT/OFLP200'
18:45:56 IOVDbSvc INFO Disconnecting from COOLOFL_CSC/OFLP200
18:45:56 RalSessionMgr Info Commit the read-only transaction active for the duration of the database connection
18:45:56 RalSessionMgr Info Disconnect from the database server
18:45:56 CORAL/Services/ConnectionService Info User session with sessionID=S#12(C#6.s#9) will be ended on connectionID=C#6
18:45:56 RelationalDatabase Info Delete the RalDatabase for 'COOLOFL_CSC/OFLP200'
18:45:56 RalSessionMgr Info Delete the RalSessionMgr for 'COOLOFL_CSC/OFLP200'
18:45:56 IOVDbSvc INFO Opening COOL connection for COOLOFL_RPC/OFLP200
18:45:56 RalSessionMgr Info Instantiate a R/O RalSessionMgr for 'COOLOFL_RPC/OFLP200'
18:45:56 RalSessionMgr Info Connect to the database server
18:45:56 CORAL/Services/ConnectionService Info Re-ordering 4 replicas using installed algorithm
18:45:56 CORAL/Services/ConnectionService Info Sorting algorithm selected 2 replicas
18:45:56 CORAL/Services/ConnectionService Warning Failed to connect to service sqlite200/ALLP200.db (coral::Exception): 'CORAL/RelationalPlugins/sqlite ( CORAL : "Connection::connect" from "/home/atlas/sqlite200 is not writable" )' - do NOT retry
18:45:56 CORAL/Services/ConnectionService Info Connection to service "sqlite200/ALLP200.db" with connectionID=C#16 will be disconnected
18:45:56 CORAL/Services/ConnectionService Warning Failure while attempting to connect to "sqlite_file:sqlite200/ALLP200.db": CORAL/RelationalPlugins/sqlite ( CORAL : "Connection::connect" from "/home/atlas/sqlite200 is not writable" )
18:45:56 CORAL/Services/ConnectionService Info New user session with sessionID=S#14(C#6.s#11) started on connectionID=C#6 to service "/usr/database/DBRelease/300.0.1/sqlite200/ALLP200.db" for user "" in read-only mode
18:45:56 RalSessionMgr Info Start a read-only transaction active for the duration of the database connection
18:45:56 RelationalDatabase Info Instantiate a R/O RalDatabase for 'COOLOFL_RPC/OFLP200'
18:45:56 IOVDbSvc INFO Disconnecting from COOLOFL_MDT/OFLP200
18:45:56 RalSessionMgr Info Commit the read-only transaction active for the duration of the database connection
18:45:56 RalSessionMgr Info Disconnect from the database server
18:45:56 CORAL/Services/ConnectionService Info User session with sessionID=S#13(C#6.s#10) will be ended on connectionID=C#6
18:45:56 RelationalDatabase Info Delete the RalDatabase for 'COOLOFL_MDT/OFLP200'
18:45:56 RalSessionMgr Info Delete the RalSessionMgr for 'COOLOFL_MDT/OFLP200'
18:45:56 IOVDbSvc INFO Opening COOL connection for COOLOFL_TGC/OFLP200
18:45:56 RalSessionMgr Info Instantiate a R/O RalSessionMgr for 'COOLOFL_TGC/OFLP200'
18:45:56 RalSessionMgr Info Connect to the database server
18:45:56 CORAL/Services/ConnectionService Info Re-ordering 4 replicas using installed algorithm
18:45:56 CORAL/Services/ConnectionService Info Sorting algorithm selected 2 replicas
18:45:56 CORAL/Services/ConnectionService Warning Failed to connect to service sqlite200/ALLP200.db (coral::Exception): 'CORAL/RelationalPlugins/sqlite ( CORAL : "Connection::connect" from "/home/atlas/sqlite200 is not writable" )' - do NOT retry
18:45:56 CORAL/Services/ConnectionService Info Connection to service "sqlite200/ALLP200.db" with connectionID=C#17 will be disconnected
18:45:56 CORAL/Services/ConnectionService Warning Failure while attempting to connect to "sqlite_file:sqlite200/ALLP200.db": CORAL/RelationalPlugins/sqlite ( CORAL : "Connection::connect" from "/home/atlas/sqlite200 is not writable" )
18:45:56 CORAL/Services/ConnectionService Info New user session with sessionID=S#15(C#6.s#12) started on connectionID=C#6 to service "/usr/database/DBRelease/300.0.1/sqlite200/ALLP200.db" for user "" in read-only mode
18:45:56 RalSessionMgr Info Start a read-only transaction active for the duration of the database connection
18:45:56 RelationalDatabase Info Instantiate a R/O RalDatabase for 'COOLOFL_TGC/OFLP200'
18:45:56 IOVDbSvc INFO Disconnecting from COOLOFL_RPC/OFLP200
18:45:56 RalSessionMgr Info Commit the read-only transaction active for the duration of the database connection
18:45:56 RalSessionMgr Info Disconnect from the database server
18:45:56 CORAL/Services/ConnectionService Info User session with sessionID=S#14(C#6.s#11) will be ended on connectionID=C#6
18:45:56 RelationalDatabase Info Delete the RalDatabase for 'COOLOFL_RPC/OFLP200'
18:45:56 RalSessionMgr Info Delete the RalSessionMgr for 'COOLOFL_RPC/OFLP200'
18:45:56 IOVDbSvc INFO Opening COOL connection for sqlite://;schema=DigitParams.db;dbname=DIGPARAM
18:45:56 RalSessionMgr Info Instantiate a R/O RalSessionMgr for 'sqlite://;schema=DigitParams.db;dbname=DIGPARAM'
18:45:56 RalSessionMgr Info Connect to the database server
18:45:56 CORAL/Services/ConnectionService Info New connection to service "DigitParams.db" with connectionID=C#18 has been connected
18:45:56 CORAL/Services/ConnectionService Info New user session with sessionID=S#16(C#18.s#1) started on connectionID=C#18 to service "DigitParams.db" for user "" in read-only mode
18:45:56 RalSessionMgr Info Start a read-only transaction active for the duration of the database connection
18:45:56 RelationalDatabase Info Instantiate a R/O RalDatabase for 'sqlite://;schema=DigitParams.db;dbname=DIGPARAM'
18:45:56 IOVDbSvc INFO Disconnecting from COOLOFL_TGC/OFLP200
18:45:56 RalSessionMgr Info Commit the read-only transaction active for the duration of the database connection
18:45:56 RalSessionMgr Info Disconnect from the database server
18:45:56 CORAL/Services/ConnectionService Info User session with sessionID=S#15(C#6.s#12) will be ended on connectionID=C#6
18:45:56 CORAL/Services/ConnectionService Info Connection to service "/usr/database/DBRelease/300.0.1/sqlite200/ALLP200.db" with connectionID=C#6 will be disconnected
18:45:56 RelationalDatabase Info Delete the RalDatabase for 'COOLOFL_TGC/OFLP200'
18:45:56 RalSessionMgr Info Delete the RalSessionMgr for 'COOLOFL_TGC/OFLP200'
18:45:56 IOVDbSvc INFO Disconnecting from sqlite://;schema=DigitParams.db;dbname=DIGPARAM
18:45:56 RalSessionMgr Info Commit the read-only transaction active for the duration of the database connection