-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathathena.log
More file actions
4498 lines (4457 loc) · 295 KB
/
Copy pathathena.log
File metadata and controls
4498 lines (4457 loc) · 295 KB
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
Mon Jun 17 03:45:38 CEST 2019
Preloading tcmalloc_minimal.so
Preloading libimf.so
Preloading libintlc.so.5
Py:Athena INFO using release [Athena-22.0.2] [x86_64-centos7-gcc8-opt] [master/20a5f1f181] -- built on [2019-06-16T2127]
Py:Athena INFO including file "AthenaCommon/Preparation.py"
Py:Athena INFO including file "AthenaCommon/Atlas.UnixStandardJob.py"
Py:Athena INFO executing ROOT6Setup
Py:Athena INFO executing CLI (-c) command: "doID=False"
Py:Athena INFO configuring AthenaHive with [1] concurrent threads and [1] concurrent events
Py:AlgScheduler INFO setting up AvalancheSchedulerSvc/AvalancheSchedulerSvc with 1 threads
Py:Athena INFO including file "AthenaCommon/Execution.py"
Py:Athena INFO including file "TrigUpgradeTest/IDCalo.py"
Py:Athena INFO including file "TrigUpgradeTest/testHLT_MT.py"
Py:testHLT_MT.py INFO Setup options:
condOverride = (Default) {}
disabledSignatures = (Default) []
doBjetSlice = (Default) True
doBphysicsSlice = (Default) True
doCalo = (Default) True
doCombinedSlice = (Default) True
doDBConfig = (Default) None
doElectronSlice = (Default) True
doEmptyMenu = (Default) False
doHLT = (Default) True
doID = False
doJetSlice = (Default) True
doL1Sim = (Default) False
doL1Unpacking = (Default) True
doMETSlice = (Default) True
doMuon = (Default) True
doMuonSlice = (Default) True
doPhotonSlice = (Default) True
doTauSlice = (Default) True
enableCostD3PD = (Default) False
enabledSignatures = (Default) []
isOnline = (Default) False
setDetDescr = (Default) None
setGlobalTag = (Default) None
setLVL1XML = (Default) TriggerMenuMT/LVL1config_LS2_v1.xml
setupForMC = (Default) None
trigBase = (Default) None
useCONDBR2 = (Default) True
Py:AthFile INFO opening [/cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/TrigP1Test/data17_13TeV.00327265.physics_EnhancedBias.merge.RAW._lb0100._SFO-1._0001.1]...
condOverride = (Default) {}
disabledSignatures = (Default) []
doBjetSlice = (Default) True
doBphysicsSlice = (Default) True
doCalo = (Default) True
doCombinedSlice = (Default) True
doDBConfig = (Default) None
doElectronSlice = (Default) True
doEmptyMenu = (Default) False
doHLT = (Default) True
doID = False
doJetSlice = (Default) True
doL1Sim = (Default) False
doL1Unpacking = (Default) True
doMETSlice = (Default) True
doMuon = (Default) True
doMuonSlice = (Default) True
doPhotonSlice = (Default) True
doTauSlice = (Default) True
enableCostD3PD = (Default) False
enabledSignatures = (Default) []
isOnline = (Default) False
setDetDescr = (Default) None
setGlobalTag = (Default) None
setLVL1XML = (Default) TriggerMenuMT/LVL1config_LS2_v1.xml
setupForMC = (Default) None
trigBase = (Default) None
useCONDBR2 = (Default) True
Py:testHLT_MT.py INFO Configured the following global flags:
Py:JobProperty :: INFO --> JobProperties.Global.ConditionsTag = 'CONDBR2-BLKPA-2018-13'
Py:JobProperty :: INFO --> JobProperties.Global.DataSource = 'data'
Py:JobProperty :: INFO --> JobProperties.Global.DatabaseInstance = 'CONDBR2'
Py:JobProperty :: INFO --> JobProperties.Global.DetDescrVersion = 'ATLAS-R2-2016-01-00-01'
Py:JobProperty :: INFO --> JobProperties.Global.DetGeo = 'atlas'
Py:JobProperty :: INFO --> JobProperties.Global.InputFormat = 'bytestream'
Py:JobProperty :: INFO --> JobProperties.Global.Luminosity = None
Py:JobProperty :: INFO --> JobProperties.Global.isOverlay = False
Py:TriggerFlags.doHLT INFO doHLT is True: force doLVL2=False and doEF=False
WARNING: using modifier: BFieldAutoConfig
Read field currents from configuration ptree (athenaHLT)
WARNING: using modifier: DisableMdtT0Fit
Disable MDT T0 re-fit and use constants from COOL instead
WARNING: using modifier: ForceMuonDataType
Hardcode muon data to be of type of atlas
this determines which cabling service to use
WARNING: using modifier: UseBackExtrapolatorDataForMuIso
Enables the usage of the BackExtrapolator derived from data
WARNING: using modifier: UseBeamSpotFlagForBjet
Enables the beam spot status flag check for b-jet
WARNING: using modifier: UseLUTFromDataForMufast
Enables the usage of the LUTs derived from data
WARNING: using modifier: UseParamFromDataForBjet
Enables the usage of the JetProb calibration derived from data
WARNING: using modifier: UseRPCTimeDelayFromDataForMufast
Enables the RPC timing shift correction in data
WARNING: using modifier: allowCOOLUpdates
Enable COOL folder updates during the run
WARNING: using modifier: enableHotIDMasking
Masking of hot pixel and SCT modules enabled in L2 spacepoint provider
WARNING: using modifier: forceTileRODMap
Configure Tile ROD map based on run-number (ATR-16290)
WARNING: using modifier: noLArCalibFolders
We should not use LAr electronics calibration data
WARNING: using modifier: openThresholdRPCCabling
RPC cabling need to tell CMA to use open thresholds
see http://alxr.usatlas.bnl.gov/lxr/source/atlas/MuonSpectrometer/MuonCablings/RPCcabling/src/EtaCMA.cxx#448
and other entries at http://alxr.usatlas.bnl.gov/lxr/ident?i=cosmic
WARNING: using modifier: useHLTMuonAlign
Apply muon alignment
WARNING: using modifier: useNewRPCCabling
Switch to new RPC cabling code
WARNING: using modifier: useOnlineLumi
Use online LuminosityTool
WARNING: using modifier: useOracle
Disable the use of SQLite for COOL and geometry
: 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
dcs : -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
detdescr : -- -- -- -- -- -- -- -- -- -- -- ON ON ON ON ON ON ON ON ON ON -- -- -- --
digitize : -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
geometry : -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
haveRDO : -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
haveRIO : ON ON ON ON ON ON ON ON ON ON ON ON ON ON ON ON ON ON ON ON ON ON ON ON ON
makeRIO : ON ON ON ON ON ON ON ON ON ON ON ON ON ON ON ON ON ON ON ON ON ON ON ON ON
overlay : -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
pileup : -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
readRDOBS : -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
readRDOPool : -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
readRIOBS : -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
readRIOPool : -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
simulate : -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
simulateLVL1 : -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
writeBS : -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
writeRDOPool : -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
writeRIOPool : -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
Py:Athena INFO Importing MuonRecExample.MuonRecUtils
Py:Athena INFO Importing MuonCnvExample.MuonCnvUtils
Py:Athena INFO Importing module MuonCnvExample.MuonCalibFlags
Py:MuonCnvExample.MuonCalibFlags INFO Changing default correctMdtRtForBField = True
Py:MuonCnvExample.MuonCalibFlags INFO Changing default correctMdtRtForTimeSlewing = True
Py:MuonRec INFO Importing MuonRecExample.MuonRecFlags
Py:MuonRec INFO Changing default applyResilience = True
Py:MuonRec INFO Changing default doMSVertex = True
Py:MuonRec INFO Changing default enableErrorTuning = True
Py:MuonRec INFO Changing default useAlignmentCorrections = True
Py:JobProperty :: INFO The JobProperty LoadElecCalib is blocked
Py:Athena INFO Importing MuonCnvExample.MuonCnvFlags
Py:MuonCnvExample.MuonCnvFlags INFO Changing default TgcCablingMode = '12-fold'
Py:ConfigurableDb INFO Read module info for 5484 configurables from 2 genConfDb files
Py:ConfigurableDb INFO No duplicates have been found: that's good !
EventInfoMgtInit: Got release version Athena-2019-06-16T2127
Py:IOVDbSvc.CondDB INFO Setting up conditions DB access to instance CONDBR2
Py:LuminosityTool INFO Created online LuminosityTool using folder /TRIGGER/LUMI/HLTPrefLumi
Py:OnlineLumiCalibrationTool INFO OnlineLumiCalibrationToolDefault requested /TDAQ/OLC/CALIBRATIONS
Py:LuminosityTool INFO LuminosityToolOnline added tool OnlineLumiCalibrationTool
Py:Athena INFO including file "RecExCond/AllDet_detDescr.py"
Py:Athena INFO including file "RecExCond/RecExCommon_DetFlags.py"
Py:RecExCommon_DetFlags INFO DetFlags already defined.by user : user should have fully configured it already!
Py:MuonRec INFO DetFlags.readRDOBS.MDT_setOn()
Py:MuonRec INFO DetFlags.readRDOBS.RPC_setOn()
Py:MuonRec INFO DetFlags.readRDOBS.CSC_setOn()
Py:MuonRec INFO DetFlags.readRDOBS.TGC_setOn()
Py:Athena INFO including file "IdDictDetDescrCnv/IdDictDetDescrCnv_joboptions.py"
SetGeometryVersion.py obtained major release version 22
Py:ConfiguredFactory INFO imported 132 confDb modules in 0.07 seconds
Py:Athena INFO including file "TileConditions/TileConditions_jobOptions.py"
Py:TileInfoConf. INFO Adding TileCablingSvc to ServiceMgr
Py:MetaReader INFO Current mode used: peeker
Py:TileConditions_jobOptions.py INFO Forcing RUN2 (2014-2017) cabling for run 327265 with geometry ATLAS-R2-2016-01-00-01
Py:TileConditions_jobOptions.py INFO Adjusting TileInfo for 7 samples
Py:TileConditions_jobOptions.py INFO setting up COOL for TileCal conditions data
Py:TileInfoConf. INFO Changing default TileBadChanTool configuration to COOL source
Py:TileInfoConf. INFO Changing default TileCondToolEmscale configuration to COOL source
Py:TileInfoConf. INFO Changing default TileCondToolNoiseSample configuration to COOL source
Py:TileInfoConf. INFO Changing default TileCondToolTiming configuration to COOL source
Py:TileConditions_jobOptions.py INFO Adjusting TileInfo to return cell noise for Opt.Filter without iterations
Py:Athena INFO including file "CaloIdCnv/CaloIdCnv_joboptions.py"
Py:Athena INFO including file "CaloConditions/CaloConditions_jobOptions.py"
Py:Athena INFO including file "CaloConditions/LArTTCellMap_ATLAS_jobOptions.py"
Py:Athena INFO including file "CaloConditions/CaloTTIdMap_ATLAS_jobOptions.py"
Py:Athena INFO including file "TileIdCnv/TileIdCnv_jobOptions.py"
Py:Athena INFO including file "LArDetDescr/LArDetDescr_joboptions.py"
now initializing the LAr readout geometry : standard Atlas flavour
Py:Athena INFO including file "LArConditionsCommon/LArConditionsCommon_comm_jobOptions.py"
Py:Athena INFO including file "LArConditionsCommon/LArIdMap_comm_jobOptions.py"
Py:Athena INFO including file "AmdcAth/AmdcAth_jobOptions.py"
Py:Athena INFO Importing MagFieldServices.SetupField
Py:Athena INFO Importing MagFieldServices.MagFieldServicesConfig
Py:RegSelSvc::__init__ INFO entering
Py:TrigDataAccess INFO Not possible anymore to enable HLT calo offset correction, tools deprecated
Py:CaloNoiseToolDefault INFO Using CaloNoiseToolDB
Py:CaloNoiseToolDBData::__init__ INFO entering
Py:CaloNoiseToolDBData::__init__ INFO offline mode: use luminosity from /CALO/Ofl/Noise/PileUpNoiseLumi to scale pileup noise
Py:CaloNoiseToolDBData::__init__ INFO Run2 & doLArHVCorr=True: Will rescale noise automatically for HV trips
Py:Athena INFO importing module 'MuonCnvExample.MuonCablingConfig'
Py:MuonCnvExample.MuonCnvFlags INFO Changing default TgcCablingMode = 'auto'
Py:MuonCnvExample.MuonCnvFlags INFO Changing default TgcCablingMode = '12-fold'
Py:Athena INFO configuring Muon cabling in MuonCablingConfig
Py:Athena INFO importing the MetaReader for MuoncablingConfig
Py:MetaReader INFO Current mode used: full
Py:Athena INFO No metadata/Taginfo found. Using normal configuration for RPC
Py:Athena INFO RPC cabling is using mode: new
Py:Athena INFO TGC cabling is using mode: 12-fold
Py:Athena INFO MDT cabling is using mode: new
Py:Athena INFO Adding MDT/CABLING folders to conddb
Py:Athena INFO Importing MuonRecExample.MuonReadCalib
Py:Athena INFO Importing MuonCnvExample.MuonCalibConfig
Py:MuonCnvExample.MuonCalibConfig.setupCscCondDB() INFO This is for OffLine so T0Base and T0Phase folders are added!!
Py:Athena INFO including file "MuonRecExample/MuonRecLoadTools.py"
Py:Athena INFO Importing MuonRecExample.MuonRecTools
[ TrackingGeometrySvc ] base material tag : AtlasLayerMat_v21_
[ TrackingGeometrySvc ] translated to COOL: /GLOBAL/TrackingGeo/LayerMaterialV2<tag>TagInfoMajor/AtlasLayerMat_v21_/GeoAtlas</tag>
Py:TrigGenericMonitoringToolConfig.py INFO Using thread-safe TrigGenericMonitoringTool
Py:Athena INFO Importing MuonRecExample.CscTools
Py:MuonAlign INFO Changing default UseAlines = 'all'
Py:MuonAlign INFO Changing default UseBlines = 'all'
Py:MuonAlign INFO Changing default UseIlines = True
Py:MuonAlign INFO Changing default UseAsBuilt = True
Py:MuonAlign INFO Running a reconstruction job on data: UseAlines='all' UseBlines='all' UseIlines=True UseAsBuilt=True
Py:ConfiguredFactory INFO Instantiated direct resolved clone Trk__RungeKuttaPropagator('SLPropagator') from original 'AtlasRungeKuttaPropagator'
Py:Athena INFO Importing MuonRecExample.MooreTools
non-online CONDBR2 |- DatabaseInstance = 'CONDBR2' (Default: 'auto') |- DataSource = 'data' (Default: 'geant4') |- ConditionsTag = 'CONDBR2-BLKPA-2018-13' (Default: 'OFLCOND-RUN12-SDR-31')
Py:MDT_DCSConditionsRun2Tool INFO Adding folder DCS_OFL:/MDT/DCS/LV to IOVDbSvc
Py:MDT_DCSConditionsRun2Tool INFO Adding folder DCS_OFL:/MDT/DCS/HV to IOVDbSvc
Py:ConfiguredFactory INFO Instantiated configurable Muon__DCMathSegmentMaker('MCTBDCMathSegmentMaker') as clone of 'DCMathSegmentMaker'
Py:Athena INFO including file "TriggerRelease/jobOfragment_ReadBS_standalone.py"
Py:TrigConfigSvcConfig.py INFO Found XML file: /build/atnight/localbuilds/nightlies/master/build/install/Athena/22.0.2/InstallArea/x86_64-centos7-gcc8-opt/XML/TriggerMenuMT/LVL1config_LS2_v1.xml
Py:MuonAlign INFO Running a reconstruction job on data: UseAlines='all' UseBlines='all' UseIlines=True UseAsBuilt=True
Py:MuonRec INFO Reading alignment constants from DB
Py:MuonRec INFO Reading CSC I-Lines from conditions database.
Py:MuonRec INFO Reading As-Built parameters from conditions database
Py:TrigCaloDataAccessSvc INFO Enable HLT calo offset correction
Py:Athena INFO including file "AthenaCommon/runbatch.py"
ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
MessageSvc INFO Activating in a separate thread
ApplicationMgr SUCCESS
====================================================================================================================================
Welcome to ApplicationMgr (GaudiCoreSvc v32r0)
running on aibuild40-006.cern.ch on Mon Jun 17 03:46:08 2019
====================================================================================================================================
ApplicationMgr INFO Application Manager Configured successfully
ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
AthDictLoaderSvc INFO in initialize...
AthDictLoaderSvc INFO acquired Dso-registry
ClassIDSvc INFO getRegistryEntries: read 8664 CLIDRegistry entries for module ALL
CoreDumpSvc INFO install f-a-t-a-l handler... (flag = -1)
CoreDumpSvc INFO Handling signals: 11(Segmentation fault) 7(Bus error) 4(Illegal instruction) 8(Floating point exception)
MetaDataSvc INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00
AthenaPoolCnvSvc INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-00-00-00
PoolSvc INFO io_register[PoolSvc](xmlcatalog_file:PoolFileCatalog.xml) [ok]
PoolSvc INFO Set connectionsvc retry/timeout/IDLE timeout to 'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled
PoolSvc INFO Frontier compression level set to 5
DBReplicaSvc INFO Frontier server at (serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://frontier-atlas.lcg.triumf.ca:3128/ATLAS_frontier)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://atlasbpfrontier.cern.ch:3127)(proxyurl=http://atlasbpfrontier.fnal.gov:3127) will be considered for COOL data
DBReplicaSvc INFO Read replica configuration from /build/atnight/localbuilds/nightlies/master/build/install/Athena/22.0.2/InstallArea/x86_64-centos7-gcc8-opt/share/dbreplica.config
DBReplicaSvc INFO Total of 10 servers found for host aibuild40-006.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ]
DBReplicaSvc INFO COOL SQLite replicas will be excluded
DBReplicaSvc INFO Geometry SQLite replicas will be excluded
PoolSvc INFO Successfully setup replica sorting algorithm
PoolSvc INFO Setting up APR FileCatalog and Streams
PoolSvc WARNING Unable to locate catalog for prfile:poolcond/PoolCat_comcond.xml check your ATLAS_POOLCOND_PATH and DATAPATH variables
PoolSvc WARNING Unable to locate catalog for prfile:poolcond/PoolCat_oflcond.xml check your ATLAS_POOLCOND_PATH and DATAPATH variables
PoolSvc WARNING Unable to locate catalog for apcfile:poolcond/PoolCat_comcond.xml check your ATLAS_POOLCOND_PATH and DATAPATH variables
PoolSvc WARNING Unable to locate catalog for apcfile:poolcond/PoolCat_oflcond.xml check your ATLAS_POOLCOND_PATH and DATAPATH variables
PoolSvc INFO Resolved path (via ATLAS_POOLCOND_PATH) is /cvmfs/atlas-condb.cern.ch/repo/conditions/poolcond/PoolFileCatalog.xml
PoolSvc INFO POOL WriteCatalog is xmlcatalog_file:PoolFileCatalog.xml
DbSession INFO Open DbSession
Domain[ROOT_All] INFO > Access DbDomain READ [ROOT_All]
ToolSvc.ByteStreamMetadataTool INFO Initializing ToolSvc.ByteStreamMetadataTool - package version ByteStreamCnvSvc-00-00-00
MetaDataSvc INFO Found MetaDataTools = PublicToolHandleArray(['IOVDbMetaDataTool','ByteStreamMetadataTool'])
IOVDbSvc INFO Opened read transaction for POOL PersistencySvc
IOVDbSvc INFO Only 5 POOL conditions files will be open at once
IOVDbSvc INFO Cache alignment will be done in 3 slices
IOVDbSvc INFO Global tag: CONDBR2-BLKPA-2018-13 set from joboptions
IOVDbFolder INFO Read from meta data only for folder /TagInfo
IOVDbFolder INFO Inputfile tag override disabled for /GLOBAL/BField/Maps
IOVDbSvc INFO Folder /GLOBAL/BField/Maps will be written to file metadata
IOVDbSvc INFO Initialised with 19 connections and 72 folders
IOVDbSvc INFO Service IOVDbSvc initialised successfully
ClassIDSvc INFO getRegistryEntries: read 9474 CLIDRegistry entries for module ALL
ByteStreamAddressProviderSvc INFO Initializing ByteStreamAddressProviderSvc - package version ByteStreamCnvSvcBase-00-00-00
ByteStreamAddressProviderSvc INFO initialized
ByteStreamAddressProviderSvc INFO -- Will fill Store with id = 0
IOVDbSvc INFO preLoadAddresses: Removing folder /TagInfo. It should only be in the file meta data and was not found.
IOVDbSvc INFO Opening COOL connection for COOLONL_TRIGGER/CONDBR2
ClassIDSvc INFO getRegistryEntries: read 107 CLIDRegistry entries for module ALL
ClassIDSvc INFO getRegistryEntries: read 88 CLIDRegistry entries for module ALL
ClassIDSvc INFO getRegistryEntries: read 316 CLIDRegistry entries for module ALL
ClassIDSvc INFO getRegistryEntries: read 129 CLIDRegistry entries for module ALL
ClassIDSvc INFO getRegistryEntries: read 2917 CLIDRegistry entries for module ALL
IOVSvc INFO No IOVSvcTool associated with store "StoreGateSvc"
IOVSvcTool INFO IOVRanges will be checked at every Event
IOVDbSvc INFO Opening COOL connection for COOLONL_TDAQ/CONDBR2
IOVDbSvc INFO Disconnecting from COOLONL_TRIGGER/CONDBR2
IOVDbSvc INFO Opening COOL connection for COOLONL_LAR/CONDBR2
IOVDbSvc INFO Disconnecting from COOLONL_TDAQ/CONDBR2
IOVDbSvc INFO Opening COOL connection for COOLOFL_TILE/CONDBR2
IOVDbSvc INFO Disconnecting from COOLONL_LAR/CONDBR2
IOVDbSvc INFO Opening COOL connection for COOLONL_TILE/CONDBR2
IOVDbSvc INFO Disconnecting from COOLOFL_TILE/CONDBR2
IOVDbSvc INFO Opening COOL connection for COOLONL_CALO/CONDBR2
IOVDbSvc INFO Disconnecting from COOLONL_TILE/CONDBR2
IOVDbSvc INFO Opening COOL connection for COOLOFL_LAR/CONDBR2
IOVDbSvc INFO Disconnecting from COOLONL_CALO/CONDBR2
IOVDbSvc INFO Opening COOL connection for COOLONL_GLOBAL/CONDBR2
IOVDbSvc INFO Disconnecting from COOLOFL_LAR/CONDBR2
IOVDbSvc INFO Opening COOL connection for COOLOFL_DCS/CONDBR2
IOVDbSvc INFO Disconnecting from COOLONL_GLOBAL/CONDBR2
IOVDbSvc INFO Opening COOL connection for COOLOFL_CALO/CONDBR2
IOVDbSvc INFO Disconnecting from COOLOFL_DCS/CONDBR2
IOVDbSvc INFO Opening COOL connection for COOLONL_RPC/CONDBR2
IOVDbSvc INFO Disconnecting from COOLOFL_CALO/CONDBR2
IOVDbSvc INFO Opening COOL connection for COOLONL_TGC/CONDBR2
IOVDbSvc INFO Disconnecting from COOLONL_RPC/CONDBR2
IOVDbSvc INFO Opening COOL connection for COOLONL_MDT/CONDBR2
IOVDbSvc INFO Disconnecting from COOLONL_TGC/CONDBR2
IOVDbSvc INFO Opening COOL connection for COOLOFL_CSC/CONDBR2
IOVDbSvc INFO Disconnecting from COOLONL_MDT/CONDBR2
IOVDbSvc INFO Opening COOL connection for COOLOFL_MDT/CONDBR2
IOVDbSvc INFO Disconnecting from COOLOFL_CSC/CONDBR2
IOVDbSvc INFO Opening COOL connection for COOLONL_PIXEL/CONDBR2
IOVDbSvc INFO Disconnecting from COOLOFL_MDT/CONDBR2
IOVDbSvc INFO Opening COOL connection for COOLOFL_PIXEL/CONDBR2
IOVDbSvc INFO Disconnecting from COOLONL_PIXEL/CONDBR2
IOVDbSvc INFO Opening COOL connection for COOLOFL_MUONALIGN/CONDBR2
IOVDbSvc INFO Disconnecting from COOLOFL_PIXEL/CONDBR2
IOVDbSvc INFO Disconnecting from COOLOFL_MUONALIGN/CONDBR2
IOVDbSvc INFO Added taginfo remove for /CALO/Ofl/Noise/PileUpNoiseLumi
IOVDbSvc INFO Added taginfo remove for /EXT/DCS/MAGNETS/SENSORDATA
IOVDbSvc INFO Added taginfo remove for /GLOBAL/BField/Maps
IOVDbSvc INFO Added taginfo remove for /GLOBAL/TrackingGeo/LayerMaterialV2
IOVDbSvc INFO Added taginfo remove for /LAR/Align
IOVDbSvc INFO Added taginfo remove for /LAR/BadChannelsOfl/BadChannels
IOVDbSvc INFO Added taginfo remove for /LAR/BadChannelsOfl/MissingFEBs
IOVDbSvc INFO Added taginfo remove for /LAR/DCS/HV/BARREL/I8
IOVDbSvc INFO Added taginfo remove for /LAR/DCS/HV/BARREl/I16
IOVDbSvc INFO Added taginfo remove for /LAR/ElecCalibFlat/HVScaleCorr
IOVDbSvc INFO Added taginfo remove for /LAR/HVPathologiesOfl/Pathologies
IOVDbSvc INFO Added taginfo remove for /LAR/Identifier/CalibIdMap
IOVDbSvc INFO Added taginfo remove for /LAR/Identifier/FebRodMap
IOVDbSvc INFO Added taginfo remove for /LAR/Identifier/OnOffIdMap
IOVDbSvc INFO Added taginfo remove for /LAR/IdentifierOfl/HVLineToElectrodeMap
IOVDbSvc INFO Added taginfo remove for /LAR/NoiseOfl/CellNoise
IOVDbSvc INFO Added taginfo remove for /MDT/CABLING/MAP_SCHEMA
IOVDbSvc INFO Added taginfo remove for /MDT/CABLING/MEZZANINE_SCHEMA
IOVDbSvc INFO Added taginfo remove for /MDT/DCS/HV
IOVDbSvc INFO Added taginfo remove for /MDT/DCS/LV
IOVDbSvc INFO Added taginfo remove for /MDT/RTBLOB
IOVDbSvc INFO Added taginfo remove for /MDT/T0BLOB
IOVDbSvc INFO Added taginfo remove for /MUONALIGN/CSC/ILINES
IOVDbSvc INFO Added taginfo remove for /MUONALIGN/ERRS
IOVDbSvc INFO Added taginfo remove for /MUONALIGN/MDT/ASBUILTPARAMS
IOVDbSvc INFO Added taginfo remove for /MUONALIGN/MDT/BARREL
IOVDbSvc INFO Added taginfo remove for /MUONALIGN/MDT/ENDCAP/SIDEA
IOVDbSvc INFO Added taginfo remove for /MUONALIGN/MDT/ENDCAP/SIDEC
IOVDbSvc INFO Added taginfo remove for /MUONALIGN/TGC/SIDEA
IOVDbSvc INFO Added taginfo remove for /MUONALIGN/TGC/SIDEC
IOVDbSvc INFO Added taginfo remove for /PIXEL/CablingMap
IOVDbSvc INFO Added taginfo remove for /PIXEL/HitDiscCnfg
IOVDbSvc INFO Added taginfo remove for /PIXEL/ReadoutSpeed
IOVDbSvc INFO Added taginfo remove for /RPC/CABLING/MAP_SCHEMA
IOVDbSvc INFO Added taginfo remove for /RPC/CABLING/MAP_SCHEMA_CORR
IOVDbSvc INFO Added taginfo remove for /RPC/TRIGGER/CM_THR_ETA
IOVDbSvc INFO Added taginfo remove for /RPC/TRIGGER/CM_THR_PHI
IOVDbSvc INFO Added taginfo remove for /TDAQ/OLC/CALIBRATIONS
IOVDbSvc INFO Added taginfo remove for /TDAQ/RunCtrl/SOR_Params
IOVDbSvc INFO Added taginfo remove for /TGC/CABLING/MAP_SCHEMA
IOVDbSvc INFO Added taginfo remove for /TILE/OFL02/CALIB/CES
IOVDbSvc INFO Added taginfo remove for /TILE/OFL02/CALIB/CIS/LIN
IOVDbSvc INFO Added taginfo remove for /TILE/OFL02/CALIB/CIS/NLN
IOVDbSvc INFO Added taginfo remove for /TILE/OFL02/CALIB/EMS
IOVDbSvc INFO Added taginfo remove for /TILE/OFL02/CALIB/LAS/FIBER
IOVDbSvc INFO Added taginfo remove for /TILE/OFL02/CALIB/LAS/LIN
IOVDbSvc INFO Added taginfo remove for /TILE/OFL02/CALIB/LAS/NLN
IOVDbSvc INFO Added taginfo remove for /TILE/OFL02/NOISE/CELL
IOVDbSvc INFO Added taginfo remove for /TILE/OFL02/NOISE/SAMPLE
IOVDbSvc INFO Added taginfo remove for /TILE/OFL02/STATUS/ADC
IOVDbSvc INFO Added taginfo remove for /TILE/OFL02/TIME/CHANNELOFFSET/PHY
IOVDbSvc INFO Added taginfo remove for /TILE/ONL01/CALIB/CES
IOVDbSvc INFO Added taginfo remove for /TILE/ONL01/CALIB/CIS/LIN
IOVDbSvc INFO Added taginfo remove for /TILE/ONL01/CALIB/EMS
IOVDbSvc INFO Added taginfo remove for /TILE/ONL01/CALIB/LAS/LIN
IOVDbSvc INFO Added taginfo remove for /TILE/ONL01/NOISE/SAMPLE
IOVDbSvc INFO Added taginfo remove for /TILE/ONL01/STATUS/ADC
IOVDbSvc INFO Added taginfo remove for /TRIGGER/LUMI/HLTPrefLumi
IOVDbSvc INFO Added taginfo remove for /CSC/FTHOLD
IOVDbSvc INFO Added taginfo remove for /CSC/NOISE
IOVDbSvc INFO Added taginfo remove for /CSC/PED
IOVDbSvc INFO Added taginfo remove for /CSC/PSLOPE
IOVDbSvc INFO Added taginfo remove for /CSC/RMS
IOVDbSvc INFO Added taginfo remove for /CSC/STAT
IOVDbSvc INFO Added taginfo remove for /CSC/T0BASE
IOVDbSvc INFO Added taginfo remove for /CSC/T0PHASE
IOVDbSvc INFO Added taginfo remove for /CALO/Identifier/CaloTTOnAttrIdMapAtlas
IOVDbSvc INFO Added taginfo remove for /CALO/Identifier/CaloTTOnOffIdMapAtlas
IOVDbSvc INFO Added taginfo remove for /CALO/Identifier/CaloTTPpmRxIdMapAtlas
IOVDbSvc INFO Added taginfo remove for /LAR/LArCellPositionShift
IOVDbSvc INFO Added taginfo remove for /LAR/Identifier/LArTTCellMapAtlas
IOVSvc INFO No IOVSvcTool associated with store "DetectorStore"
IOVSvcTool INFO IOVRanges will be checked at every Event
ClassIDSvc INFO getRegistryEntries: read 17 CLIDRegistry entries for module ALL
ClassIDSvc INFO getRegistryEntries: read 9 CLIDRegistry entries for module ALL
DetDescrCnvSvc INFO initializing
DetDescrCnvSvc INFO Found DetectorStore service
DetDescrCnvSvc INFO filling proxies for detector managers
DetDescrCnvSvc INFO filling address for CaloTTMgr with CLID 117659265 and storage type 68 to detector store
DetDescrCnvSvc INFO filling address for CaloMgr with CLID 4548337 and storage type 68 to detector store
DetDescrCnvSvc INFO filling address for CaloSuperCellMgr with CLID 241807251 and storage type 68 to detector store
DetDescrCnvSvc INFO filling address for CaloIdManager with CLID 125856940 and storage type 68 to detector store
DetDescrCnvSvc INFO filling address for LArIdManager with CLID 79554919 and storage type 68 to detector store
DetDescrCnvSvc INFO filling address for IdDict with CLID 2411 and storage type 68 to detector store
DetDescrCnvSvc INFO filling address for AtlasID with CLID 164875623 and storage type 68 to detector store
DetDescrCnvSvc INFO filling address for PixelID with CLID 2516 and storage type 68 to detector store
DetDescrCnvSvc INFO filling address for SCT_ID with CLID 2517 and storage type 68 to detector store
DetDescrCnvSvc INFO filling address for TRT_ID with CLID 2518 and storage type 68 to detector store
DetDescrCnvSvc INFO filling address for SiliconID with CLID 129452393 and storage type 68 to detector store
DetDescrCnvSvc INFO filling address for LArEM_ID with CLID 163583365 and storage type 68 to detector store
DetDescrCnvSvc INFO filling address for LArEM_SuperCell_ID with CLID 99488227 and storage type 68 to detector store
DetDescrCnvSvc INFO filling address for LArHEC_ID with CLID 3870484 and storage type 68 to detector store
DetDescrCnvSvc INFO filling address for LArHEC_SuperCell_ID with CLID 254277678 and storage type 68 to detector store
DetDescrCnvSvc INFO filling address for LArFCAL_ID with CLID 45738051 and storage type 68 to detector store
DetDescrCnvSvc INFO filling address for LArFCAL_SuperCell_ID with CLID 12829437 and storage type 68 to detector store
DetDescrCnvSvc INFO filling address for LArMiniFCAL_ID with CLID 79264204 and storage type 68 to detector store
DetDescrCnvSvc INFO filling address for LArOnlineID with CLID 158698068 and storage type 68 to detector store
DetDescrCnvSvc INFO filling address for TTOnlineID with CLID 38321944 and storage type 68 to detector store
DetDescrCnvSvc INFO filling address for LArOnline_SuperCellID with CLID 115600394 and storage type 68 to detector store
DetDescrCnvSvc INFO filling address for LArHVLineID with CLID 27863673 and storage type 68 to detector store
DetDescrCnvSvc INFO filling address for LArElectrodeID with CLID 80757351 and storage type 68 to detector store
DetDescrCnvSvc INFO filling address for TileID with CLID 2901 and storage type 68 to detector store
DetDescrCnvSvc INFO filling address for Tile_SuperCell_ID with CLID 49557789 and storage type 68 to detector store
DetDescrCnvSvc INFO filling address for TileHWID with CLID 2902 and storage type 68 to detector store
DetDescrCnvSvc INFO filling address for TileTBID with CLID 2903 and storage type 68 to detector store
DetDescrCnvSvc INFO filling address for MDTIDHELPER with CLID 4170 and storage type 68 to detector store
DetDescrCnvSvc INFO filling address for CSCIDHELPER with CLID 4171 and storage type 68 to detector store
DetDescrCnvSvc INFO filling address for RPCIDHELPER with CLID 4172 and storage type 68 to detector store
DetDescrCnvSvc INFO filling address for TGCIDHELPER with CLID 4173 and storage type 68 to detector store
DetDescrCnvSvc INFO filling address for STGCIDHELPER with CLID 4174 and storage type 68 to detector store
DetDescrCnvSvc INFO filling address for MMIDHELPER with CLID 4175 and storage type 68 to detector store
DetDescrCnvSvc INFO filling address for CaloLVL1_ID with CLID 108133391 and storage type 68 to detector store
DetDescrCnvSvc INFO filling address for CaloCell_ID with CLID 123500438 and storage type 68 to detector store
DetDescrCnvSvc INFO filling address for CaloCell_SuperCell_ID with CLID 128365736 and storage type 68 to detector store
DetDescrCnvSvc INFO filling address for CaloDM_ID with CLID 167756483 and storage type 68 to detector store
DetDescrCnvSvc INFO filling address for ZdcID with CLID 190591643 and storage type 68 to detector store
GeoModelSvc.MuonDetectorTool INFO Initializing ...
ToolSvc.MGM_AlignmentDbTool INFO Initilalizing
ToolSvc.MGM_AlignmentDbTool INFO In initialize ---- # of folders registered is 7
ToolSvc.MGM_AlignmentDbTool INFO A Lines container recorded in the detector store
ToolSvc.MGM_AlignmentDbTool INFO B Lines container recorded in the detector store
ToolSvc.MGM_AlignmentDbTool INFO As-Built container recorded in the detector store
ToolSvc.MGM_AlignmentDbTool INFO I-Lines container recorded in the detector store or skipped since not needed
ToolSvc.MGM_AlignmentDbTool INFO proxy for class ALineParContainer found
ToolSvc.MGM_AlignmentDbTool INFO proxy for class BLineParContainer found
ToolSvc.MGM_AlignmentDbTool INFO proxy for class CscInternalAlignmentMapContainer found or not needed
ToolSvc.MGM_AlignmentDbTool INFO proxy for class MdtAsBuiltParContainer found
GeoModelSvc::RDBMaterialManager WARNING Getting PixTBMatComponents with default tag
GeoModelSvc::RDBMaterialManager WARNING Getting PixTBMaterials with default tag
GeoModelSvc::RDBMaterialManager WARNING Getting InDetMatComponents with default tag
GeoModelSvc::RDBMaterialManager WARNING Getting InDetMaterials with default tag
EventPersistencySvc INFO Added successfully Conversion service:AthenaPoolCnvSvc
EventPersistencySvc INFO Added successfully Conversion service:TagInfoMgr
EventPersistencySvc INFO Added successfully Conversion service:DetDescrCnvSvc
LArElectrodeIDDetDescrCnv INFO in createObj: creating a LArElectrodeID helper object in the detector store
IdDictDetDescrCnv INFO in initialize
IdDictDetDescrCnv INFO in createObj: creating a IdDictManager object in the detector store
IdDictDetDescrCnv INFO IdDictName: IdDictParser/ATLAS_IDS.xml
IdDictDetDescrCnv INFO Reading InnerDetector IdDict file InDetIdDictFiles/IdDictInnerDetector_IBL3D25-03.xml
IdDictDetDescrCnv INFO Reading LArCalorimeter IdDict file IdDictParser/IdDictLArCalorimeter_DC3-05-Comm-01.xml
IdDictDetDescrCnv INFO Reading TileCalorimeter IdDict file IdDictParser/IdDictTileCalorimeter.xml
IdDictDetDescrCnv INFO Reading Calorimeter IdDict file IdDictParser/IdDictCalorimeter_L1Onl.xml
IdDictDetDescrCnv INFO Reading MuonSpectrometer IdDict file IdDictParser/IdDictMuonSpectrometer_R.03.xml
IdDictDetDescrCnv INFO Reading ForwardDetectors IdDict file IdDictParser/IdDictForwardDetectors_2010.xml
IdDictDetDescrCnv INFO Found id dicts:
IdDictDetDescrCnv INFO Using dictionary tag: null
IdDictDetDescrCnv INFO Dictionary ATLAS version default DetDescr tag (using default) file
IdDictDetDescrCnv INFO Dictionary Calorimeter version default DetDescr tag CaloIdentifier-LVL1-02 file IdDictParser/IdDictCalorimeter_L1Onl.xml
IdDictDetDescrCnv INFO Dictionary ForwardDetectors version default DetDescr tag ForDetIdentifier-01 file IdDictParser/IdDictForwardDetectors_2010.xml
IdDictDetDescrCnv INFO Dictionary InnerDetector version IBL-DBM DetDescr tag InDetIdentifier-IBL3D25-02 file InDetIdDictFiles/IdDictInnerDetector_IBL3D25-03.xml
IdDictDetDescrCnv INFO Dictionary LArCalorimeter version fullAtlas DetDescr tag LArIdentifier-DC3-05-Comm file IdDictParser/IdDictLArCalorimeter_DC3-05-Comm-01.xml
IdDictDetDescrCnv INFO Dictionary LArElectrode version fullAtlas DetDescr tag (using default) file
IdDictDetDescrCnv INFO Dictionary LArHighVoltage version fullAtlas DetDescr tag (using default) file
IdDictDetDescrCnv INFO Dictionary MuonSpectrometer version R.03 DetDescr tag MuonIdentifier-08 file IdDictParser/IdDictMuonSpectrometer_R.03.xml
IdDictDetDescrCnv INFO Dictionary TileCalorimeter version fullAtlasAndTestBeam DetDescr tag TileIdentifier-00 file IdDictParser/IdDictTileCalorimeter.xml
LArElectrodeID INFO => initialize_from_dictionary()
AtlasDetectorID INFO initialize_from_dictionary - OK
AtlasDetectorID INFO initialize_from_dictionary - OK
LArHVLineIDDetDescrCnv INFO in createObj: creating a LArHVLineID helper object in the detector store
LArHVLineID INFO => initialize_from_dictionary()
AtlasDetectorID INFO initialize_from_dictionary - OK
AtlasDetectorID INFO initialize_from_dictionary - OK
LArHVLineID INFO => initialize_from_dictionary(dict_mgr) =0
LArHVLineID INFO Register_dict_tag of LArHighVoltage is OK
LArHVLineID INFO setDictVersion of LArHighVoltage is OK
LArHVLineID INFO [initLevelsFromDict] m_dict OK ...
LArHVLineID INFO [initialize_from_dictionary] > HV line range -> 11/1/48:79/0:15 | 11/1/148:179/0:15 | 11/1/80:93/0:7 | 11/1/180:193/0:7 | 11/1/200:231/0:15 | 11/1/232:263/0:15 | 11/1/296,297,306,307/0:15 | 11/1/299,304,305,308,309/0:15 | 11/1/264:279/0:15 | 11/1/280:295/0:15 | 11/1/0:47/0:15 | 11/1/320:322/0:15 | 11/1/100:147/0:15 | 11/1/324,325/0:15 | 11/1/312:315/0:15 | 11/1/316:319/0:15 | 11/1/300:303/0:15 | 11/1/310,311/0:15 | 11/1/323/0:15 | 11/1/326,327/0:15 | 11/1/94:99/0:15 | 11/1/194:199/0:15
LArHVLineID INFO [init_hashes()] > Hvline_size= 5008
GeoModelSvc.LArDetectorToolNV INFO Keys for LAr are ATLAS-R2-2016-01-00-01 ATLAS
GeoModelSvc.LArDetectorToolNV INFO Building LAr version LAr-Revised-17-01 while ATLAS version is ATLAS-R2-2016-01-00-01
GeoModelSvc.LArDetectorToolNV INFO LAr Geometry Options:
GeoModelSvc.LArDetectorToolNV INFO Sagging = false
GeoModelSvc.LArDetectorToolNV INFO Barrel = ON
GeoModelSvc.LArDetectorToolNV INFO Endcap = ON
BarrelConstruction INFO Getting primary numbers for ATLAS, ATLAS-R2-2016-01-00-01
BarrelConstruction INFO Makes detailed absorber sandwich ? 1 1
BarrelConstruction INFO Use sagging in geometry ? 0
============== EMEC Construction ===============
multi-layered version of absorbers activated, mlabs == 1
================================================
ClassIDSvc INFO getRegistryEntries: read 5487 CLIDRegistry entries for module ALL
CaloIDHelper_IDDetDescrCnv INFO in createObj: creating a TileTBID helper object in the detector store
TileTBID INFO initialize_from_dictionary
AtlasDetectorID INFO initialize_from_dictionary - OK
EndcapDMConstruction INFO Start building EC electronics geometry
============== EMEC Construction ===============
multi-layered version of absorbers activated, mlabs == 1
================================================
EndcapDMConstruction INFO Start building EC electronics geometry
GeoModelSvc INFO GeoModelSvc.LArDetectorToolNV SZ= 23316Kb Time = 0.53S
GeoModelSvc.TileDetectorTool INFO Entering TileDetectorTool::create()
TileDddbManager INFO m_tag = ATLAS-R2-2016-01-00-01
TileDddbManager INFO n_tiglob = 5
TileDddbManager INFO n_timod = 320
TileDddbManager INFO n_cuts = 9
TileDddbManager INFO n_saddle = 1
TileDddbManager INFO n_tilb = 21
TileDddbManager INFO n_tileSwitches = 1
CaloIDHelper_IDDetDescrCnv INFO in createObj: creating a TileID helper object in the detector store
AtlasDetectorID INFO initialize_from_dictionary - OK
TileNeighbour INFO Reading file /build/atnight/localbuilds/nightlies/master/build/install/Athena/22.0.2/InstallArea/x86_64-centos7-gcc8-opt/share/TileNeighbour_reduced.txt
TileHWIDDetDescrCnv INFO in createObj: creating a TileHWID helper object in the detector store
TileHWID INFO initialize_from_dictionary
AtlasDetectorID INFO initialize_from_dictionary - OK
ClassIDSvc INFO getRegistryEntries: read 55 CLIDRegistry entries for module ALL
CaloIDHelper_IDDetDescrCnv INFO in createObj: creating a CaloCell_ID helper object in the detector store
CaloIDHelper_IDDetDescrCnv INFO in createObj: creating a LArEM_ID helper object in the detector store
AtlasDetectorID INFO initialize_from_dictionary - OK
CaloIDHelper_IDDetDescrCnv INFO in createObj: creating a LArHEC_ID helper object in the detector store
AtlasDetectorID INFO initialize_from_dictionary - OK
CaloIDHelper_IDDetDescrCnv INFO in createObj: creating a LArFCAL_ID helper object in the detector store
AtlasDetectorID INFO initialize_from_dictionary - OK
LArFCAL_Base_ID INFO Reading file /build/atnight/localbuilds/nightlies/master/build/install/Athena/22.0.2/InstallArea/x86_64-centos7-gcc8-opt/share/FCal2DNeighbors-April2011.txt
LArFCAL_Base_ID INFO Reading file /build/atnight/localbuilds/nightlies/master/build/install/Athena/22.0.2/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsNext-April2011.txt
LArFCAL_Base_ID INFO Reading file /build/atnight/localbuilds/nightlies/master/build/install/Athena/22.0.2/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsPrev-April2011.txt
CaloIDHelper_IDDetDescrCnv INFO in createObj: creating a LArMiniFCAL_ID helper object in the detector store
AtlasDetectorID INFO initialize_from_dictionary - OK
LArMiniFCAL_ID INFO initialize_from_dict - LArCalorimeter dictionary does NOT contain miniFCAL description. Unable to initialize LArMiniFCAL_ID.
AtlasDetectorID INFO initialize_from_dictionary - OK
GeoModelSvc.TileDetectorTool INFO U-shape parameter from database is: 1
GeoModelSvc.TileDetectorTool INFO Glue parameter from database is: 1
GeoModelSvc.TileDetectorTool INFO Cs Tube parameter from database is: 0
GeoModelSvc.TileDetectorTool INFO Entering TileAtlasFactory::create()
GeoModelSvc.TileDetectorTool INFO Tile Geometry with Saddle supports, starting from TileCal-CSC-02 xxx
GeoModelSvc.TileDetectorTool INFO => New BFingerLengthPos 430.5
GeoModelSvc.TileDetectorTool INFO => New BFingerLengthNeg 420.5
GeoModelSvc.TileDetectorTool INFO Positioning barrel with translation 0
GeoModelSvc.TileDetectorTool INFO Positioning positive barrel finger with translation 3035.25
GeoModelSvc.TileDetectorTool INFO Positioning negative barrel finger with translation -3030.25
GeoModelSvc.TileDetectorTool INFO Positioning positive ext.barrel with translation 4854.75
GeoModelSvc.TileDetectorTool INFO Positioning positive ext.barrel finger with translation ztrans= 6338.5
GeoModelSvc.TileDetectorTool INFO Positioning positive ext.barrel saddle with translation ztrans= 6192.5
GeoModelSvc.TileDetectorTool INFO Positive ITC envelope parameters: PLUG1 Rmin= 3438.85 Rmax= 4250 dzITC1= 154.5
GeoModelSvc.TileDetectorTool INFO PLUG2 Rmin= 2981 Rmax= 3440 dzITC2= 47.425
GeoModelSvc.TileDetectorTool INFO Positioning positive ITC with translation 3405
GeoModelSvc.TileDetectorTool INFO Positioning positive Gap with translation 3552
GeoModelSvc.TileDetectorTool INFO Positioning positive Crack with translation 3536
GeoModelSvc.TileDetectorTool INFO Positioning negative ext.barrel with translation ztrans -4854.75
GeoModelSvc.TileDetectorTool INFO Positioning negative ext.barrel finger with translation ztrans= -6338.5
GeoModelSvc.TileDetectorTool INFO Positioning negative ext.barrel saddle with translation ztrans= -6192.5
GeoModelSvc.TileDetectorTool INFO Negative ITC envelope parameters: PLUG1 Rmin= 3438.85 Rmax= 4250 dzITC1= 154.5
GeoModelSvc.TileDetectorTool INFO PLUG2 Rmin= 2981 Rmax= 3440 dzITC2= 47.425
GeoModelSvc.TileDetectorTool INFO Positioning negative ITC with translation -3405
GeoModelSvc.TileDetectorTool INFO Positioning negative Gap with translation -3552
GeoModelSvc.TileDetectorTool INFO Positioning negative Crack with translation -3536
GeoModelSvc.TileDetectorTool INFO Global positioning of barrel with rotation (0,0,0)) and translation (0,0,0) Gaudi::Units::cm
GeoModelSvc.TileDetectorTool INFO Global positioning of positive ext.barrel with rotation (0,0,0)) and translation (0,0,0) Gaudi::Units::cm
GeoModelSvc.TileDetectorTool INFO Global positioning of negative ext.barrel with rotation (0,0,0)) and translation (0,0,1) Gaudi::Units::cm
TileDetDescrManager INFO Entering create_elements()
GeoModelSvc INFO GeoModelSvc.TileDetectorTool SZ= 3576Kb Time = 0.17S
GeoModelSvc.MuonDetectorTool INFO create MuonDetectorTool - package version = MuonGeoModel-00-00-00
GeoModelSvc.MuonDetectorTool INFO (from GeoModelSvc) AtlasVersion = <ATLAS-R2-2016-01-00-01> MuonVersion = <>
GeoModelSvc.MuonDetectorTool INFO Keys for Muon Switches are (key) ATLAS-R2-2016-01-00-01 (node) ATLAS
GeoModelSvc.MuonDetectorTool INFO (from GeoModelSvc) in AtlasVersion = <ATLAS-R2-2016-01-00-01> default MuonVersion is <MuonSpectrometer-R.08.01>
GeoModelSvc.MuonDetectorTool INFO Properties have been set as follows:
GeoModelSvc.MuonDetectorTool INFO LayoutName R
GeoModelSvc.MuonDetectorTool INFO IncludeCutouts 0
GeoModelSvc.MuonDetectorTool INFO IncludeCutoutsBog 0
GeoModelSvc.MuonDetectorTool INFO IncludeCtbBis 0
GeoModelSvc.MuonDetectorTool INFO ControlAlines 111111
GeoModelSvc.MuonDetectorTool INFO MinimalGeoFlag 0
GeoModelSvc.MuonDetectorTool INFO EnableCscIntAlignment 1
GeoModelSvc.MuonDetectorTool INFO EnableCscIntAlignmentFromGM 0
GeoModelSvc.MuonDetectorTool INFO ControlCscIntAlines 111111
GeoModelSvc.MuonDetectorTool INFO EnableMdtDeformations 1
GeoModelSvc.MuonDetectorTool INFO EnableMdtAsBuiltParameters 1
MuonGeoModel INFO MuonDetectorFactory - constructor MuonSystem OuterRadius 13000 Length 22030
MuGM:MuonFactory INFO MuonLayout set to <R.08.01> = Development version for DC3 - infrastructures
MuGM:MuonFactory INFO BOG cutouts are activated 1 , all other cutouts are disabled 1
MuGM:MuonFactory INFO Manager created for geometry version R.08.01 from DB MuonVersion <MuonSpectrometer-R.08.01>
MuonGeoModel_MYSQL INFO GeometryVersion set to <R.08.01>
MuGM:MuonFactory INFO Mysql helper class created here for geometry version R.08.01 from DB MuonVersion <MuonSpectrometer-R.08.01>
MDT_IDDetDescrCnv INFO in createObj: creating a MdtIdHelper object in the detector store
AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find mm region index: group, region size 0 0
AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find stgc region index: group, region size 0 0
AtlasDetectorID::initLevelsFromDict - there are no sTGC entries in the dictionary!
AtlasDetectorID::initLevelsFromDict - there are no MM entries in the dictionary!
AtlasDetectorID::initialize_from_dictionary - OK
MdtIdHelper INFO MultiRange built successfully to Technology: MultiRange size is 210
MdtIdHelper INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 241
MdtIdHelper INFO MultiRange built successfully to tube: MultiRange size is 241
MdtIdHelper INFO Initializing MDT hash indices ...
MdtIdHelper INFO The element hash max is 1188
MdtIdHelper INFO The detector element hash max is 2328
MdtIdHelper INFO Initializing MDT hash indices for finding neighbors ...
MuGM:MuonFactory INFO MDTIDHELPER retrieved from DetStore
RPC_IDDetDescrCnv INFO in createObj: creating a RpcIdHelper object in the detector store
AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find mm region index: group, region size 0 0
AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find stgc region index: group, region size 0 0
AtlasDetectorID::initLevelsFromDict - there are no sTGC entries in the dictionary!
AtlasDetectorID::initLevelsFromDict - there are no MM entries in the dictionary!
AtlasDetectorID::initialize_from_dictionary - OK
RpcIdHelper INFO MultiRange built successfully to doubletR: MultiRange size is 241
RpcIdHelper INFO MultiRange built successfully to detectorElement: DetectorElement MultiRange size is 241
RpcIdHelper INFO MultiRange built successfully to rpcStrip: MultiRange size is 241
RpcIdHelper INFO Initializing RPC hash indices ...
RpcIdHelper INFO The element hash max is 600
RpcIdHelper INFO The detector element hash max is 1122
RpcIdHelper INFO Initializing RPC hash indices for finding neighbors ...
MuGM:MuonFactory INFO RPCIDHELPER retrieved from DetStore
TGC_IDDetDescrCnv INFO in createObj: creating a TgcIdHelper object in the detector store
AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find mm region index: group, region size 0 0
AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find stgc region index: group, region size 0 0
AtlasDetectorID::initLevelsFromDict - there are no sTGC entries in the dictionary!
AtlasDetectorID::initLevelsFromDict - there are no MM entries in the dictionary!
AtlasDetectorID::initialize_from_dictionary - OK
TgcIdHelper INFO MultiRange built successfully to Technology: MultiRange size is 210
TgcIdHelper INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 210
TgcIdHelper INFO MultiRange built successfully to channel: MultiRange size is 241
TgcIdHelper INFO Initializing TGC hash indices ...
TgcIdHelper INFO The element hash max is 1578
TgcIdHelper INFO The detector element hash max is 1578
TgcIdHelper INFO Initializing TGC hash indices for finding neighbors ...
MuGM:MuonFactory INFO TGCIDHELPER retrieved from DetStore
MuGM:MuonFactory INFO CSCIDHELPER retrieved from DetStore
CSC_IDDetDescrCnv INFO in createObj: creating a CcscIdHelper object in the detector store
AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find mm region index: group, region size 0 0
AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find stgc region index: group, region size 0 0
AtlasDetectorID::initLevelsFromDict - there are no sTGC entries in the dictionary!
AtlasDetectorID::initLevelsFromDict - there are no MM entries in the dictionary!
AtlasDetectorID::initialize_from_dictionary - OK
CscIdHelper INFO MultiRange built successfully to Technology: MultiRange size is 210
CscIdHelper INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 237
CscIdHelper INFO MultiRange built successfully to cscStrip: MultiRange size is 241
CscIdHelper INFO Initializing CSC hash indices ...
CscIdHelper INFO The element hash max is 32
CscIdHelper INFO The detector element hash max is 64
CscIdHelper INFO The channel hash max is 61440
CscIdHelper INFO Initializing CSC hash indices for finding neighbors ...
sTGC_IDDetDescrCnv INFO in createObj: creating a sTgcIdHelper object in the detector store
AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find mm region index: group, region size 0 0
AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find stgc region index: group, region size 0 0
AtlasDetectorID::initLevelsFromDict - there are no sTGC entries in the dictionary!
AtlasDetectorID::initLevelsFromDict - there are no MM entries in the dictionary!
AtlasDetectorID::initialize_from_dictionary - OK
MuGM:MuonFactory INFO STGCIDHELPER retrieved from DetStore
MM_IDDetDescrCnv INFO in createObj: creating a MmIdHelper object in the detector store
AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find mm region index: group, region size 0 0
AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find stgc region index: group, region size 0 0
AtlasDetectorID::initLevelsFromDict - there are no sTGC entries in the dictionary!
AtlasDetectorID::initLevelsFromDict - there are no MM entries in the dictionary!
AtlasDetectorID::initialize_from_dictionary - OK
MuGM:MuonFactory INFO MMIDHELPER retrieved from DetStore
MuGM:MuonFactory INFO **************** MuonDetectorFactory001 ************************
MuGM:MuonFactory INFO *** Start building the Muon Geometry Tree **********************
MuGM:RDBReadAtlas INFO Start retriving dbObjects with tag = <ATLAS-R2-2016-01-00-01> node <ATLAS>
In DblQ00Xtomo(data)
RDBAccessSvc WARNING Could not get the tag for XtomoData node. Returning 0 pointer to IRDBQuery
MuGM:RDBReadAtlas INFO After getQuery XtomoData
No XtomoData table in the MuonDD Database
MuGM:RDBReadAtlas INFO After new DblQ00Xtomo
MuGM:RDBReadAtlas INFO After m_dhxtomo.data()
MuGM:RDBReadAtlas INFO No Ascii aszt input found: looking for A-lines in ORACLE
MuGM:RDBReadAtlas INFO ASZT table found in Oracle
MuGM:RDBReadAtlas INFO ASZT size is 32
MuGM:RDBReadAtlas INFO No Ascii iacsc input found: looking for A-lines in ORACLE
RDBAccessSvc WARNING Could not get the tag for ISZT node. Returning 0 pointer to IRDBQuery
MuGM:RDBReadAtlas INFO No ISZT table in Oracle
MuGM:RDBReadAtlas INFO Access granted for all dbObjects needed by muon detectors
MuonGeoModel_MYSQL INFO LayoutName (from DBAM) set to <R.08> -- relevant for CTB2004
MuGM:ProcStations INFO Processing Stations and Components
MuGM:ProcStations INFO Processing Stations and Components DONE
MuGM:ProcTechnol.s INFO nMDT 13 nCSC 2 nTGC 22 nRPC 25
MuGM:ProcTechnol.s INFO nDED 2 nSUP 4 nSPA 2
MuGM:ProcTechnol.s INFO nCHV 7 nCRO 7 nCMI 6 nLBI 6
MuGM:ProcPosition INFO *** N. of stations positioned in the setup 234
MuGM:ProcPosition INFO *** N. of stations described in mysql 234
MuGM:ProcPosition INFO *** N. of types 32 size of jtypvec 32
MuGM:ProcPosition INFO *** : 234 kinds of stations (type*sub_type)
MuGM:ProcPosition INFO *** : 1758 physical stations in space - according to the MuonDD DataBase
MuGM:ProcCutouts INFO Processing Cutouts for geometry layout R.08
MuGM:ProcCutouts INFO Processing Cutouts DONE
MuGM:RDBReadAtlas INFO ProcessTGCreadout - version 7 wirespacing 1.8
MuGM:RDBReadAtlas INFO Intermediate Objects built from primary numbers
MuGM:MuonFactory INFO theMaterialManager retrieven successfully from the DetStore
MuGM:MuonFactory INFO MuonSystem description from OracleTag=<ATLAS-R2-2016-01-00-01> and node=<ATLAS>
MuGM:MuonFactory INFO TreeTop added to the Manager
MuGM:MuonFactory INFO Muon Layout R.08.01
MuGM:MuonFactory INFO Fine Clash Fixing disabled: (should be ON/OFF for Simulation/Reconstruction)
MuGM:MuonFactory INFO **************** MuonDetectorFactory001 ****************************
MuGM:MuonFactory INFO *** The Muon Chamber Geometry Tree is built with
MuGM:MuonFactory INFO *** 1758 child volumes
MuGM:MuonFactory INFO *** 1839 independent elements and
MuGM:MuonFactory INFO *** 11473 elements cloned or shared
MuGM:MuonFactory INFO *** 234 kinds of stations
MuGM:MuonFactory INFO *** 1758 stations with alignable transforms
MuGM:MuonFactory INFO *** 148 stations are described as Assemblies
MuGM:MuonFactory INFO *** 1758 MuonStations
MuGM:MuonFactory INFO *** 2324 MDT Readout Elements 1186 MDT Detector Elements
MuGM:MuonFactory INFO *** 32 CSC Readout Elements 32 CSC Detector Elements
MuGM:MuonFactory INFO *** 1122 RPC Readout Elements 600 RPC Detector Elements
MuGM:MuonFactory INFO *** 1578 TGC Readout Elements 1578 TGC Detector Elements
MuGM:MuonFactory INFO ********************************************************************
MuGM:MuonFactory INFO *** Inert Material built according to DB switches and config. ******
MuGM:MuonFactory INFO *** The Muon Geometry Tree has 1758 child vol.s in total ********
MuGM:MuonFactory INFO ********************************************************************
MGM::MuonDetectorManager INFO Init A/B Line Containers - done - size is respectively 1758/0
MGM::MuonDetectorManager INFO Init of CSC I-Lines will be done via Conditions DB
MGM::MuonDetectorManager INFO Init I-Line Container - done - size is respectively 128
MGM::MuonDetectorManager INFO I-Line for CSC wire layers loaded (Csc Internal Alignment)
MGM::MuonDetectorManager INFO According to configuration they WILL be used
GeoModelSvc INFO GeoModelSvc.MuonDetectorTool SZ= 38240Kb Time = 0.55S
ClassIDSvc INFO getRegistryEntries: read 324 CLIDRegistry entries for module ALL
GeoModelSvc.MuonDetectorTool INFO Register call-back against 7 folders listed below
GeoModelSvc.MuonDetectorTool INFO Folder n. 1 </MUONALIGN/MDT/BARREL> found in the DetStore
GeoModelSvc.MuonDetectorTool INFO Folder n. 2 </MUONALIGN/MDT/ENDCAP/SIDEA> found in the DetStore
GeoModelSvc.MuonDetectorTool INFO Folder n. 3 </MUONALIGN/MDT/ENDCAP/SIDEC> found in the DetStore
GeoModelSvc.MuonDetectorTool INFO Folder n. 4 </MUONALIGN/TGC/SIDEA> found in the DetStore
GeoModelSvc.MuonDetectorTool INFO Folder n. 5 </MUONALIGN/TGC/SIDEC> found in the DetStore
GeoModelSvc.MuonDetectorTool INFO Folder n. 6 </MUONALIGN/CSC/ILINES> found in the DetStore
GeoModelSvc.MuonDetectorTool INFO Folder n. 7 </MUONALIGN/MDT/ASBUILTPARAMS> found in the DetStore
GeoModelSvc.MuonDetectorTool INFO Call-back to MuonDetectorTool::align() against folder /MUONALIGN/MDT/BARREL registered
GeoModelSvc.MuonDetectorTool INFO Call-back to MuonDetectorTool::align() against folder /MUONALIGN/MDT/ENDCAP/SIDEA registered
GeoModelSvc.MuonDetectorTool INFO Call-back to MuonDetectorTool::align() against folder /MUONALIGN/MDT/ENDCAP/SIDEC registered
GeoModelSvc.MuonDetectorTool INFO Call-back to MuonDetectorTool::align() against folder /MUONALIGN/TGC/SIDEA registered
GeoModelSvc.MuonDetectorTool INFO Call-back to MuonDetectorTool::align() against folder /MUONALIGN/TGC/SIDEC registered
GeoModelSvc.MuonDetectorTool INFO Call-back to MuonDetectorTool::align() against folder /MUONALIGN/CSC/ILINES registered
GeoModelSvc.MuonDetectorTool INFO Call-back to MuonDetectorTool::align() against folder /MUONALIGN/MDT/ASBUILTPARAMS registered
ClassIDSvc INFO getRegistryEntries: read 66 CLIDRegistry entries for module ALL
AGDDtoGeoSvc INFO this is AGDDtoGeoSvc::initialize()
AGDDtoGeoSvc.MuonSpectrometer INFO initializing AGDD builder
AGDDtoGeoSvc.MuonSpectrometer INFO XML file
AGDDtoGeoSvc.MuonSpectrometer INFO ---------
AGDDtoGeoSvc.MuonSpectrometer INFO Sections
AGDDtoGeoSvc.MuonSpectrometer INFO ---------
AGDDtoGeoSvc.MuonSpectrometer INFO Volumes
AGDDtoGeoSvc.MuonSpectrometer INFO ---------
AGDDtoGeoSvc.MuonSpectrometer INFO Reading AGDD2GeoSwitches flags
AGDDtoGeoSvc.MuonSpectrometer INFO ----> ECT_Toroids
AGDDtoGeoSvc.MuonSpectrometer INFO ----> BAR_Toroid
AGDDtoGeoSvc.MuonSpectrometer INFO ----> Feet
AGDDtoGeoSvc.MuonSpectrometer INFO ----> RailAssembly
AGDDtoGeoSvc.MuonSpectrometer INFO ----> JFSH_Shield
AGDDtoGeoSvc.MuonSpectrometer INFO ----> JDSH_Shield
AGDDtoGeoSvc.MuonSpectrometer INFO ----> JTSH_Shield
AGDDtoGeoSvc.MuonSpectrometer INFO ----> pp2
AGDDtoGeoSvc.MuonSpectrometer INFO ----> MBAP_AccessPlatform
AGDDtoGeoSvc.MuonSpectrometer INFO ----> MBWH_BigWheels
AGDDtoGeoSvc.MuonSpectrometer INFO ----> SADL_CalorimeterSaddle
AGDDtoGeoSvc.MuonSpectrometer INFO ----> TBWH_BigWheels
AGDDtoGeoSvc.MuonSpectrometer INFO ----> TGC3_BigWheels
AGDDtoGeoSvc.MuonSpectrometer INFO ----> TGC1_BigWheels
AGDDtoGeoSvc.MuonSpectrometer INFO ----> MDTRail
AGDDtoGeoSvc.MuonSpectrometer INFO ----> servicesAtZ0
AGDDtoGeoSvc.MuonSpectrometer INFO ----> HFTruckRail
AGDDtoGeoSvc.MuonSpectrometer INFO ----> RUN2_Services
AGDDtoGeoSvc.MuonSpectrometer INFO now reading AGDD blob
AGDDtoGeoSvc.MuonSpectrometer INFO now dumping the flags
AGDDtoGeoSvc.MuonSpectrometer INFO ----- ECT_Toroids ECT_Toroids
CreateComposition: Logical Volume ECT_Toroids
---> Daughter: ECT_ToroidN
CreateComposition: Logical Volume ECT_ToroidN
---> Daughter: ECT_Toroid_single
CreateComposition: Logical Volume ECT_Toroid_single
---> Daughter: ECT_ColdMass
CreateComposition: Logical Volume ECT_ColdMass
---> Daughter: ECT_CM_ConductorFrame
---> Daughter: ECT_CM_ConductorInnerWeb
---> Daughter: ECT_CM_KeyStone
CreateComposition: Logical Volume ECT_CM_KeyStone
---> Daughter: ECT_CM_KeyStoneTop
---> Daughter: ECT_CM_KeyStoneMid
---> Daughter: ECT_CM_KeyStoneMid
---> Daughter: ECT_CM_KeyStoneLow
---> Daughter: ECT_CM_KeyStoneLow
---> Daughter: ECT_CM_KeyStoneInnerWeb_Box1
---> Daughter: ECT_CM_KeyStoneInnerWeb_Box1
---> Daughter: ECT_CM_KeyStoneInnerWeb_Box2
---> Daughter: ECT_CM_KeyStoneFootPlate
---> Daughter: ECT_CM_KeyStoneFootPlate
---> Daughter: ECT_ColdMass
---> Daughter: ECT_ColdMass
---> Daughter: ECT_ColdMass
---> Daughter: ECT_ColdMass
---> Daughter: ECT_ColdMass
---> Daughter: ECT_ColdMass
---> Daughter: ECT_ColdMass
---> Daughter: ECT_TS_ThermalShield_default
CreateComposition: Logical Volume ECT_TS_ThermalShield_default
---> Daughter: ECT_TS_ThermalShield_default_tmp
CreateComposition: Logical Volume ECT_TS_ThermalShield_default_tmp
---> Daughter: ECT_EP_EndPlate_front
---> Daughter: ECT_EP_EndPlate_back
---> Daughter: ECT_CC_CoilCoverTop
---> Daughter: ECT_CC_CoilCoverTop
---> Daughter: ECT_CC_CoilCoverSide
---> Daughter: ECT_CC_CoilCoverSide
---> Daughter: ECT_CC_CoilCoverSide
---> Daughter: ECT_CC_CoilCoverSide
---> Daughter: ECT_TS_ShellCoilCover
---> Daughter: ECT_TS_JointPlate
---> Daughter: ECT_TS_AxialForceBox
---> Daughter: ECT_ST_StayTube_Tube
---> Daughter: ECT_ST_StayTube_Flange
---> Daughter: ECT_ST_StayTube_Flange
---> Daughter: ECT_TS_ThermalShield_default
---> Daughter: ECT_TS_ThermalShield_default
---> Daughter: ECT_TS_ThermalShield_default
---> Daughter: ECT_TS_ThermalShield_default
---> Daughter: ECT_TS_ThermalShield_default
---> Daughter: ECT_TS_ThermalShield_special
CreateComposition: Logical Volume ECT_TS_ThermalShield_special
---> Daughter: ECT_EP_EndPlate_special
---> Daughter: ECT_EP_EndPlate_back
---> Daughter: ECT_CC_CoilCoverTop
---> Daughter: ECT_CC_CoilCoverTop
---> Daughter: ECT_CC_CoilCoverSide
---> Daughter: ECT_CC_CoilCoverSide
---> Daughter: ECT_CC_CoilCoverSide
---> Daughter: ECT_CC_CoilCoverSide
---> Daughter: ECT_TS_ShellCoilCover
---> Daughter: ECT_TS_FrontSpecialBox
---> Daughter: ECT_TS_AxialForceBox
---> Daughter: ECT_ST_StayTube_Tube
---> Daughter: ECT_ST_StayTube_Flange
---> Daughter: ECT_ST_StayTube_Flange
---> Daughter: ECT_TS_ThermalShield_special
---> Daughter: ECT_TS_CentralTube
CreateComposition: Logical Volume ECT_TS_CentralTube
---> Daughter: ECT_TS_CentralTube_inner
---> Daughter: ECT_TS_CentralTube_middle
---> Daughter: ECT_TS_CentralTube_middle
---> Daughter: ECT_TS_CentralTube_top
---> Daughter: ECT_TS_CentralTube_top
---> Daughter: ECT_TS_CentralTube_low
---> Daughter: ECT_TS_CentralTube_low
---> Daughter: ECT_JTV_Shielding_default
CreateComposition: Logical Volume ECT_JTV_Shielding_default
---> Daughter: ECT_JTV_Shielding_default_tmp
---> Daughter: ECT_JTV_Shielding_default
---> Daughter: ECT_JTV_Shielding_default
---> Daughter: ECT_JTV_Shielding_default
---> Daughter: ECT_JTV_Shielding_default
---> Daughter: ECT_JTV_Shielding_default
---> Daughter: ECT_JTV_Shielding_special
CreateComposition: Logical Volume ECT_JTV_Shielding_special
---> Daughter: ECT_JTV_Shielding_special1
---> Daughter: ECT_JTV_Shielding_special2
---> Daughter: ECT_JTV_Shielding_special
---> Daughter: ECT_EV_Envelop_default
CreateComposition: Logical Volume ECT_EV_Envelop_default
---> Daughter: ECT_EV_EndPlate_Inner_default
---> Daughter: ECT_EV_EndPlate_Turret_default
---> Daughter: ECT_EV_OutShell_default
---> Daughter: ECT_EV_OutShellConnector_default
---> Daughter: ECT_EV_OutShellConnector_default
---> Daughter: ECT_EV_Envelop_default
---> Daughter: ECT_EV_Envelop_default
---> Daughter: ECT_EV_Envelop_default
---> Daughter: ECT_EV_Envelop_default
---> Daughter: ECT_EV_Envelop_default
---> Daughter: ECT_EV_Envelop_special_Sector6
CreateComposition: Logical Volume ECT_EV_Envelop_special_Sector6
---> Daughter: ECT_EV_EndPlate_Inner_special_Sector6
---> Daughter: ECT_EV_EndPlate_Turret_special_Sector6
---> Daughter: ECT_EV_OutShell_special
---> Daughter: ECT_EV_OutShellConnector_special
---> Daughter: ECT_EV_OutShellConnector_special
---> Daughter: ECT_EV_Envelop_special_Sector7
CreateComposition: Logical Volume ECT_EV_Envelop_special_Sector7
---> Daughter: ECT_EV_EndPlate_Inner_special_Sector7
---> Daughter: ECT_EV_EndPlate_Turret_special_Sector7
---> Daughter: ECT_EV_OutShell_special
---> Daughter: ECT_EV_OutShellConnector_special
---> Daughter: ECT_EV_OutShellConnector_special
---> Daughter: ECT_EV_AlignTube_default
CreateComposition: Logical Volume ECT_EV_AlignTube_default
---> Daughter: ECT_EV_AlignTube_default_pre
---> Daughter: ECT_EV_AlignFlange_default_pre
---> Daughter: ECT_EV_AlignFlange_default_pre
---> Daughter: ECT_EV_AlignTube_default
---> Daughter: ECT_EV_AlignTube_default
---> Daughter: ECT_EV_AlignTube_default
---> Daughter: ECT_EV_AlignTube_default
---> Daughter: ECT_EV_AlignTube_default
---> Daughter: ECT_EV_AlignTube_special
CreateComposition: Logical Volume ECT_EV_AlignTube_special
---> Daughter: ECT_EV_AlignTube_special_pre
---> Daughter: ECT_EV_AlignFlange_special_pre
---> Daughter: ECT_EV_AlignFlange_special_pre
---> Daughter: ECT_EV_AlignTube_special
---> Daughter: ECT_EV_CentralTube
---> Daughter: ECT_JTV_FrontRing
---> Daughter: ECT_JTV_BackRing
---> Daughter: ECT_EV_Yoke
CreateComposition: Logical Volume ECT_EV_Yoke
---> Daughter: ECT_EV_Yoke_InnerSupport
---> Daughter: ECT_EV_Yoke_OuterSupport
---> Daughter: ECT_EV_Yoke_basic
---> Daughter: ECT_EV_Yoke_basic
---> Daughter: ECT_EV_Yoke
---> Daughter: ECT_EV_SideAttachment
---> Daughter: ECT_EV_SideAttachment
---> Daughter: ECT_EV_FrontAttachment
---> Daughter: ECT_EV_FrontAttachment
---> Daughter: ECT_EV_BackAttachment
---> Daughter: ECT_EV_BackAttachment
---> Daughter: ECT_EV_CryoStop_outside
CreateComposition: Logical Volume ECT_EV_CryoStop_outside
---> Daughter: ECT_EV_CryoStop_outside_tmp
CreateComposition: Logical Volume ECT_EV_CryoStop_outside_tmp
---> Daughter: ECT_EV_CryoStop_outside_basic
---> Daughter: AFT_ECTBrkt
CreateComposition: Logical Volume AFT_ECTBrkt
---> Daughter: AFT_ECTBrkt_tmp
CreateComposition: Logical Volume AFT_ECTBrkt_tmp
---> Daughter: AFT_ECTBrkt_LowSidePlate
---> Daughter: AFT_ECTBrkt_LowSidePlate
---> Daughter: AFT_ECTBrkt_LowCtrPlate
---> Daughter: AFT_ECTBrkt_CrossPlate
---> Daughter: AFT_ECTBrkt_FrontPlate
---> Daughter: AFT_ECTBrkt_FrontPlate
---> Daughter: AFT_ECTBrkt_SidePlate
---> Daughter: AFT_ECTBrkt_SidePlate
---> Daughter: AFT_ECTBrkt_SidePlate
---> Daughter: AFT_ECTBrkt_SidePlate
---> Daughter: AFT_ECTBrkt_MiddlePlate
---> Daughter: AFT_ECTBrkt_MiddlePlate
---> Daughter: AFT_ECTBrkt_CtrSpacer
---> Daughter: AFT_ECTBrkt_MidSpacer
---> Daughter: AFT_ECTBrkt_MidSpacer
---> Daughter: AFT_ECTBrkt_GapCloser
---> Daughter: AFT_ECTBrkt_GapCloser
---> Daughter: AFT_ECTBrkt_GapCloserRub
---> Daughter: AFT_ECTBrkt_GapCloserRub
---> Daughter: ECT_EV_CryoStop_outside
---> Daughter: ECT_EV_CryoStop_outside
---> Daughter: ECT_EV_CryoStop_outside
---> Daughter: ECT_EV_CryoStop_outside
---> Daughter: ECT_EV_CryoStop_outside
---> Daughter: ECT_EV_CryoStop_outside
---> Daughter: ECT_EV_CryoStop_outside
---> Daughter: ECT_EV_CryoStop_inside
CreateComposition: Logical Volume ECT_EV_CryoStop_inside
---> Daughter: ECT_EV_CryoStop_inside_tmp