-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathathena.log.5
12684 lines (12598 loc) · 925 KB
/
athena.log.5
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:47:11 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: "doL2ISO=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/mu.withViews.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 = (Default) True
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 = (Default) True
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 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 "InDetBeamSpotService/BeamCondSvc.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:Athena INFO including file "InDetRecExample/InDetRecCabling.py"
/***** Service PixelCablingSvc/PixelCablingSvc *****************************************************
|-AuditFinalize = False
|-AuditInitialize = False
|-AuditReinitialize = False
|-AuditRestart = False
|-AuditServices = False
|-AuditStart = False
|-AuditStop = False
|-Bandwidth = 0
|-ConnectivityTag = 'PIT-ALL-V39'
|-Coral_Connectionstring = 'oracle://ATLAS_COOLPROD/ATLAS_COOLONL_PIXEL'
|-DictionaryTag = 'PIXEL'
|-DumpMapToFile = False
|-Key = '/PIXEL/ReadoutSpeed'
|-KeyCabling = '/PIXEL/CablingMap' (default: '/PIXEL/CablingMap')
|-KeyFEI4 = '/PIXEL/HitDiscCnfg'
|-MappingFile = 'PixelCabling/Pixels_Atlas_IdMapping_2016.dat'
| (default: 'PixelCabling/Pixels_Atlas_IdMapping_2016.dat')
|-MappingType = 'COOL' (default: 'COOL')
|-OutputLevel = 0
\----- (End of Service PixelCablingSvc/PixelCablingSvc) --------------------------------------------
/***** Algorithm SCT_CablingCondAlgFromCoraCool/SCT_CablingCondAlgFromCoraCool *********************
|-AuditAlgorithms = False
|-AuditBeginRun = False
|-AuditEndRun = False
|-AuditExecute = False
|-AuditFinalize = False
|-AuditInitialize = False
|-AuditReinitialize = False
|-AuditRestart = False
|-AuditStart = False
|-AuditStop = False
|-Cardinality = 0
|-CondSvc = ServiceHandle('CondSvc')
|-DetStore = ServiceHandle('StoreGateSvc/DetectorStore')
|-Enable = True
|-ErrorCounter = 0
|-ErrorMax = 1
|-EvtStore = ServiceHandle('StoreGateSvc')
|-ExtraInputs = [] (default: [])
|-ExtraOutputs = [] (default: [])
|-FilterCircularDependencies = True
|-IsIOBound = False
|-MonitorService = 'MonitorSvc'
|-NeededResources = [] (default: [])
|-OutputLevel = 0
|-ReadKeyGeo = '/SCT/DAQ/Config/Geog' (default: 'ConditionStore+/SCT/DAQ/Config/Geog')
|-ReadKeyMur = '/SCT/DAQ/Config/MUR' (default: 'ConditionStore+/SCT/DAQ/Config/MUR')
|-ReadKeyRod = '/SCT/DAQ/Config/ROD' (default: 'ConditionStore+/SCT/DAQ/Config/ROD')
|-ReadKeyRodMur = '/SCT/DAQ/Config/RODMUR' (default: 'ConditionStore+/SCT/DAQ/Config/RODMUR')
|-RegisterForContextService = False
|-Timeline = True
|-WriteKey = 'ConditionStore+SCT_CablingData'
\----- (End of Algorithm SCT_CablingCondAlgFromCoraCool/SCT_CablingCondAlgFromCoraCool) ------------
/***** Public AlgTool TRT_FillCablingData_DC3/TRT_FillCablingData_DC3 ******************************
|-AuditFinalize = False
|-AuditInitialize = False
|-AuditReinitialize = False
|-AuditRestart = False
|-AuditStart = False
|-AuditStop = False
|-AuditTools = False
|-DetStore = ServiceHandle('StoreGateSvc/DetectorStore')
|-EvtStore = ServiceHandle('StoreGateSvc')
|-ExtraInputs = [] (default: [])
|-ExtraOutputs = [] (default: [])
|-Filename = ''
|-MonitorService = 'MonitorSvc'
|-OutputLevel = 0
|-RealData = True (default: False)
\----- (End of Public AlgTool TRT_FillCablingData_DC3/TRT_FillCablingData_DC3) ---------------------
/***** Service TRT_CablingSvc/TRT_CablingSvc *******************************************************
|-AuditFinalize = False
|-AuditInitialize = False
|-AuditReinitialize = False
|-AuditRestart = False
|-AuditServices = False
|-AuditStart = False
|-AuditStop = False
|-OutputLevel = 0
\----- (End of Service TRT_CablingSvc/TRT_CablingSvc) ----------------------------------------------
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
InDetJobProperties::setupDefaults(): jobproperties.Beam.beamType() is collisions bunch spacing is 25
Py:Athena INFO including file "InDetRecExample/InDetRecConditionsAccess.py"
/***** Public AlgTool PixelConditionsSummaryTool/PixelConditionsSummaryTool ************************
|-AuditFinalize = False
|-AuditInitialize = False
|-AuditReinitialize = False
|-AuditRestart = False
|-AuditStart = False
|-AuditStop = False
|-AuditTools = False
|-DetStore = ServiceHandle('StoreGateSvc/DetectorStore')
|-EvtStore = ServiceHandle('StoreGateSvc')
|-ExtraInputs = [] (default: [])
|-ExtraOutputs = [] (default: [])
|-IsActiveStates = ['READY'] (default: ['READY'])
|-IsActiveStatus = ['OK'] (default: ['OK'])
|-MonitorService = 'MonitorSvc'
|-OutputLevel = 0
|-PixelDCSStateCondData = 'ConditionStore+PixelDCSStateCondData'
|-PixelDCSStatusCondData = 'ConditionStore+PixelDCSStatusCondData'
|-PixelModuleData = 'ConditionStore+PixelModuleData'
|-PixelTDAQCondData = 'ConditionStore+PixelTDAQCondData'
|-UseByteStream = True (default: False)
|-UseDCSState = False (default: False)
|-UseDeadMap = True (default: True)
|-UseTDAQ = False (default: False)
\----- (End of Public AlgTool PixelConditionsSummaryTool/PixelConditionsSummaryTool) ---------------
/***** Service PixelByteStreamErrorsSvc/PixelByteStreamErrorsSvc ***********************************
|-AuditFinalize = False
|-AuditInitialize = False
|-AuditReinitialize = False
|-AuditRestart = False
|-AuditServices = False
|-AuditStart = False
|-AuditStop = False
|-BSErrContainer = 'PixelByteStreamErrs'
|-OutputLevel = 0
|-ReadingESD = False
\----- (End of Service PixelByteStreamErrorsSvc/PixelByteStreamErrorsSvc) --------------------------
/***** Private AlgTool SCT_ConditionsSummaryTool/InDetSCT_ConditionsSummaryTool ********************
|-AuditFinalize = False
|-AuditInitialize = False
|-AuditReinitialize = False
|-AuditRestart = False
|-AuditStart = False
|-AuditStop = False
|-AuditTools = False
|-ConditionsTools = PrivateToolHandleArray([])
|-DetStore = ServiceHandle('StoreGateSvc/DetectorStore')
|-EvtStore = ServiceHandle('StoreGateSvc')
|-ExtraInputs = [] (default: [])
|-ExtraOutputs = [] (default: [])
|-MonitorService = 'MonitorSvc'
|-OutputLevel = 0
\----- (End of Private AlgTool SCT_ConditionsSummaryTool/InDetSCT_ConditionsSummaryTool) -----------
/***** Private AlgTool SCT_ConfigurationConditionsTool/InDetSCT_ConfigurationConditionsTool ********
|-AuditFinalize = False
|-AuditInitialize = False
|-AuditReinitialize = False
|-AuditRestart = False
|-AuditStart = False
|-AuditStop = False
|-AuditTools = False
|-CondKey = 'ConditionStore+SCT_ConfigurationCondData'
|-DetStore = ServiceHandle('StoreGateSvc/DetectorStore')
|-EvtStore = ServiceHandle('StoreGateSvc')
|-ExtraInputs = [] (default: [])
|-ExtraOutputs = [] (default: [])
|-MonitorService = 'MonitorSvc'
|-OutputLevel = 0
|-SCTDetEleCollKey = 'ConditionStore+SCT_DetectorElementCollection'
|-checkStripsInsideModule = True
\----- (End of Private AlgTool SCT_ConfigurationConditionsTool/InDetSCT_ConfigurationConditionsTool) -----
/***** Private AlgTool SCT_ReadCalibDataTool/InDetSCT_ReadCalibDataTool ****************************
|-AuditFinalize = False
|-AuditInitialize = False
|-AuditReinitialize = False
|-AuditRestart = False
|-AuditStart = False
|-AuditStop = False
|-AuditTools = False
|-CondKeyGain = 'ConditionStore+SCT_CalibDefectNPtGain'
|-CondKeyInfo = 'ConditionStore+SCT_AllGoodStripInfo'
|-CondKeyNoise = 'ConditionStore+SCT_CalibDefectNPtNoise'
|-DetStore = ServiceHandle('StoreGateSvc/DetectorStore')
|-EvtStore = ServiceHandle('StoreGateSvc')
|-ExtraInputs = [] (default: [])
|-ExtraOutputs = [] (default: [])
|-MonitorService = 'MonitorSvc'
|-OutputLevel = 0
|-SCTDetEleCollKey = 'ConditionStore+SCT_DetectorElementCollection'
|-SCT_CablingTool = PrivateToolHandle('SCT_CablingTool/SCT_CablingTool')
\----- (End of Private AlgTool SCT_ReadCalibDataTool/InDetSCT_ReadCalibDataTool) -------------------
/***** Private AlgTool SCT_FlaggedConditionTool/InDetSCT_FlaggedConditionTool **********************
|-AuditFinalize = False
|-AuditInitialize = False
|-AuditReinitialize = False
|-AuditRestart = False
|-AuditStart = False
|-AuditStop = False
|-AuditTools = False
|-DetStore = ServiceHandle('StoreGateSvc/DetectorStore')
|-EvtStore = ServiceHandle('StoreGateSvc')
|-ExtraInputs = [] (default: [])
|-ExtraOutputs = [] (default: [])
|-MaxNumWarnForFailures = 5
|-MonitorService = 'MonitorSvc'
|-OutputLevel = 0
|-SCT_FlaggedCondData = 'StoreGateSvc+SCT_FlaggedCondData'
\----- (End of Private AlgTool SCT_FlaggedConditionTool/InDetSCT_FlaggedConditionTool) -------------
/***** Private AlgTool SCT_MonitorConditionsTool/InDetSCT_MonitorConditionsTool ********************
|-AuditFinalize = False
|-AuditInitialize = False
|-AuditReinitialize = False
|-AuditRestart = False
|-AuditStart = False
|-AuditStop = False
|-AuditTools = False
|-CondKey = 'ConditionStore+SCT_MonitorCondData'
|-DetStore = ServiceHandle('StoreGateSvc/DetectorStore')
|-EvtStore = ServiceHandle('StoreGateSvc')
|-ExtraInputs = [] (default: [])
|-ExtraOutputs = [] (default: [])
|-MonitorService = 'MonitorSvc'
|-Nnoisychip = 64
|-Nnoisycmodule = 768
|-Nnoisywafer = 384
|-OutputLevel = 3 (default: 0)
\----- (End of Private AlgTool SCT_MonitorConditionsTool/InDetSCT_MonitorConditionsTool) -----------
/***** Private AlgTool SCT_ByteStreamErrorsTool/SCT_ByteStreamErrorsTool ***************************
|-AuditFinalize = False
|-AuditInitialize = False
|-AuditReinitialize = False
|-AuditRestart = False
|-AuditStart = False
|-AuditStop = False
|-AuditTools = False
|-CheckRODSimulatedData = True
|-ConfigTool = PrivateToolHandle('SCT_ConfigurationConditionsTool/InDetSCT_ConfigurationConditionsTool')
|-ContainerName = 'StoreGateSvc+SCT_ByteStreamErrs'
|-DetStore = ServiceHandle('StoreGateSvc/DetectorStore')
|-EvtStore = ServiceHandle('StoreGateSvc')
|-ExtraInputs = [] (default: [])
|-ExtraOutputs = [] (default: [])
|-FracContainerName = 'StoreGateSvc+SCT_ByteStreamFrac'
|-MonitorService = 'MonitorSvc'
|-OutputLevel = 0
|-SCTDetEleCollKey = 'ConditionStore+SCT_DetectorElementCollection'
|=/***** Private AlgTool SCT_ConfigurationConditionsTool/InDetSCT_ConfigurationConditionsTool ********
| |-AuditFinalize = False
| |-AuditInitialize = False
| |-AuditReinitialize = False
| |-AuditRestart = False
| |-AuditStart = False
| |-AuditStop = False
| |-AuditTools = False
| |-CondKey = 'ConditionStore+SCT_ConfigurationCondData'
| |-DetStore = ServiceHandle('StoreGateSvc/DetectorStore')
| |-EvtStore = ServiceHandle('StoreGateSvc')
| |-ExtraInputs = [] (default: [])
| |-ExtraOutputs = [] (default: [])
| |-MonitorService = 'MonitorSvc'
| |-OutputLevel = 0
| |-SCTDetEleCollKey = 'ConditionStore+SCT_DetectorElementCollection'
| |-checkStripsInsideModule = True
| \----- (End of Private AlgTool SCT_ConfigurationConditionsTool/InDetSCT_ConfigurationConditionsTool) -----
\----- (End of Private AlgTool SCT_ByteStreamErrorsTool/SCT_ByteStreamErrorsTool) ------------------
Conditions db instance is CONDBR2
/***** Private AlgTool SCT_TdaqEnabledTool/InDetSCT_TdaqEnabledTool ********************************
|-AuditFinalize = False
|-AuditInitialize = False
|-AuditReinitialize = False
|-AuditRestart = False
|-AuditStart = False
|-AuditStop = False
|-AuditTools = False
|-CondKey = 'ConditionStore+SCT_TdaqEnabledCondData'
|-DetStore = ServiceHandle('StoreGateSvc/DetectorStore')
|-EvtStore = ServiceHandle('StoreGateSvc')
|-ExtraInputs = [] (default: [])
|-ExtraOutputs = [] (default: [])
|-MonitorService = 'MonitorSvc'
|-OutputLevel = 0
\----- (End of Private AlgTool SCT_TdaqEnabledTool/InDetSCT_TdaqEnabledTool) -----------------------
/***** Private AlgTool SCT_ConditionsSummaryTool/InDetSCT_ConditionsSummaryTool ********************
|-AuditFinalize = False
|-AuditInitialize = False
|-AuditReinitialize = False
|-AuditRestart = False
|-AuditStart = False
|-AuditStop = False
|-AuditTools = False
|-ConditionsTools = PrivateToolHandleArray(['SCT_ConfigurationConditionsTool/InDetSCT_ConfigurationConditionsTool','SCT_FlaggedConditionTool/InDetSCT_FlaggedConditionTool','SCT_ByteStreamErrorsTool/SCT_ByteStreamErrorsTool','SCT_ReadCalibDataTool/InDetSCT_ReadCalibDataTool','SCT_TdaqEnabledTool/InDetSCT_TdaqEnabledTool','SCT_MonitorConditionsTool/InDetSCT_MonitorConditionsTool'])
| (default: '[]')
|-DetStore = ServiceHandle('StoreGateSvc/DetectorStore')
|-EvtStore = ServiceHandle('StoreGateSvc')
|-ExtraInputs = [] (default: [])
|-ExtraOutputs = [] (default: [])
|-MonitorService = 'MonitorSvc'
|-OutputLevel = 0
\----- (End of Private AlgTool SCT_ConditionsSummaryTool/InDetSCT_ConditionsSummaryTool) -----------
/***** Service TRT_CalDbSvc/TRT_CalDbSvc ***********************************************************
|-AuditFinalize = False
|-AuditInitialize = False
|-AuditReinitialize = False
|-AuditRestart = False
|-AuditServices = False
|-AuditStart = False
|-AuditStop = False
|-DetectorStore = ServiceHandle('DetectorStore')
|-ErrorFolderName = '/TRT/Calib/errors2d'
|-ErrorReadKeyName = 'ConditionStore+/TRT/Calib/errors2d'
|-ErrorSlopeFolderName = '/TRT/Calib/slopes'
|-OutputLevel = 0
|-RtFolderName = '/TRT/Calib/RT'
|-RtReadKeyName = 'ConditionStore+/TRT/Calib/RT'
|-SlopeReadKeyName = 'ConditionStore+/TRT/Calib/slopes'
|-StreamTool = PublicToolHandle('AthenaOutputStreamTool/CondStream1')
|-T0FolderName = '/TRT/Calib/T0'
|-T0ReadKeyName = 'ConditionStore+/TRT/Calib/T0'
|-calibTextFile = ''
\----- (End of Service TRT_CalDbSvc/TRT_CalDbSvc) --------------------------------------------------
/***** Service TRT_StrawStatusSummarySvc/InDetTRTStrawStatusSummarySvc *****************************
|-AuditFinalize = False
|-AuditInitialize = False
|-AuditReinitialize = False
|-AuditRestart = False
|-AuditServices = False
|-AuditStart = False
|-AuditStop = False
|-OutputLevel = 0
|-ToolSvc = ServiceHandle('ToolSvc')
|-isGEANT4 = True (default: True)
|-statusTextFile = ''
|-statusTextFileHT = ''
|-statusTextFilePermanent = ''
\----- (End of Service TRT_StrawStatusSummarySvc/InDetTRTStrawStatusSummarySvc) --------------------
/***** Service TRT_ConditionsSummarySvc/InDetTRTConditionsSummaryService ***************************
|-AuditFinalize = False
|-AuditInitialize = False
|-AuditReinitialize = False
|-AuditRestart = False
|-AuditServices = False
|-AuditStart = False
|-AuditStop = False
|-OutputLevel = 0
|-ServiceList = ServiceHandleArray(['InDetTRTStrawStatusSummarySvc']) (default: '[]')
\----- (End of Service TRT_ConditionsSummarySvc/InDetTRTConditionsSummaryService) ------------------
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:Athena INFO Importing TriggerMenuMT.HLTMenuConfig.Menu.DictFromChainName
Py:Athena INFO Importing TriggerMenuMT.HLTMenuConfig.Menu.SignatureDicts
TrigMufastHypoConfig: Set 2 thresholds
Number of threshold = 0 , Value of threshold = 6GeV_v15a
TrigMufastHypoConfig: Configration of threshold[ 0 ] [5170.0, 3250.0, 4690.0, 5140.0]
TrigMufastHypoConfig: Configration of PtBins[ 0 ] [0, 1.05, 1.5, 2.0, 9.9]
TrigMufastHypoConfig: -> Thresholds for A[ 0 ]/B[ 0 ]= 3910.0 / 2220.0
Number of threshold = 1 , Value of threshold = 6GeV_v15a
TrigMufastHypoConfig: Configration of threshold[ 1 ] [5170.0, 3250.0, 4690.0, 5140.0]
TrigMufastHypoConfig: Configration of PtBins[ 1 ] [0, 1.05, 1.5, 2.0, 9.9]
TrigMufastHypoConfig: -> Thresholds for A[ 1 ]/B[ 1 ]= 3910.0 / 2220.0
TrigMufastHypoConfig: Set 1 thresholds
Number of threshold = 0 , Value of threshold = 6GeV_v15a
TrigMufastHypoConfig: Configration of threshold[ 0 ] [5170.0, 3250.0, 4690.0, 5140.0]
TrigMufastHypoConfig: Configration of PtBins[ 0 ] [0, 1.05, 1.5, 2.0, 9.9]
TrigMufastHypoConfig: -> Thresholds for A[ 0 ]/B[ 0 ]= 3910.0 / 2220.0
/***** Public AlgTool PixelRawDataProviderTool/InDetPixelRawDataProviderTool_Muon ******************
|-AuditFinalize = False
|-AuditInitialize = False
|-AuditReinitialize = False
|-AuditRestart = False
|-AuditStart = False
|-AuditStop = False
|-AuditTools = False
|-BCIDCollectionName = 'StoreGateSvc+PixelBCID'
|-Decoder = PublicToolHandle('PixelRodDecoder/InDetPixelRodDecoder_Muon')
| (default: 'PixelRodDecoder')
|-DetStore = ServiceHandle('StoreGateSvc/DetectorStore')
|-ErrorsSvc = ServiceHandle('PixelByteStreamErrorsSvc')
|-EvtStore = ServiceHandle('StoreGateSvc')
|-ExtraInputs = [] (default: [])
|-ExtraOutputs = [] (default: [])
|-LVL1CollectionName = 'StoreGateSvc+PixelLVL1ID'
|-MonitorService = 'MonitorSvc'
|-OutputLevel = 0
\----- (End of Public AlgTool PixelRawDataProviderTool/InDetPixelRawDataProviderTool_Muon) ---------
/***** Algorithm PixelRawDataProvider/InDetPixelRawDataProvider_Muon *******************************
|-AuditAlgorithms = False
|-AuditBeginRun = False
|-AuditEndRun = False
|-AuditExecute = False
|-AuditFinalize = False
|-AuditInitialize = False
|-AuditReinitialize = False
|-AuditRestart = False
|-AuditStart = False
|-AuditStop = False
|-Cardinality = 1
|-DetStore = ServiceHandle('StoreGateSvc/DetectorStore')
|-Enable = True
|-ErrorCounter = 0
|-ErrorMax = 1
|-EvtStore = ServiceHandle('StoreGateSvc')
|-ExtraInputs = [] (default: [])
|-ExtraOutputs = [] (default: [])
|-FilterCircularDependencies = True
|-IsIOBound = False
|-MonitorService = 'MonitorSvc'
|-NeededResources = [] (default: [])
|-OutputLevel = 0
|-ProviderTool = PrivateToolHandle('PixelRawDataProviderTool/InDetPixelRawDataProviderTool_Muon')
| (default: 'PixelRawDataProviderTool')
|-RDOCacheKey = 'PixRDOCache' (default: 'StoreGateSvc+')
|-RDOKey = 'PixelRDOs' (default: 'StoreGateSvc+PixelRDOs')
|-ROBDataProvider = ServiceHandle('ROBDataProviderSvc')
|-RegisterForContextService = False
|-RoIs = 'EMViewRoIs' (default: 'StoreGateSvc+')
|-Timeline = True
|-isRoI_Seeded = True (default: False)
|=/***** Private AlgTool PixelRawDataProviderTool/InDetPixelRawDataProviderTool_Muon *****************
| |-AuditFinalize = False
| |-AuditInitialize = False
| |-AuditReinitialize = False
| |-AuditRestart = False
| |-AuditStart = False
| |-AuditStop = False
| |-AuditTools = False
| |-BCIDCollectionName = 'StoreGateSvc+PixelBCID'
| |-Decoder = PublicToolHandle('PixelRodDecoder/InDetPixelRodDecoder_Muon')
| | (default: 'PixelRodDecoder')
| |-DetStore = ServiceHandle('StoreGateSvc/DetectorStore')
| |-ErrorsSvc = ServiceHandle('PixelByteStreamErrorsSvc')
| |-EvtStore = ServiceHandle('StoreGateSvc')
| |-ExtraInputs = [] (default: [])
| |-ExtraOutputs = [] (default: [])
| |-LVL1CollectionName = 'StoreGateSvc+PixelLVL1ID'
| |-MonitorService = 'MonitorSvc'
| |-OutputLevel = 0
| \----- (End of Private AlgTool PixelRawDataProviderTool/InDetPixelRawDataProviderTool_Muon) --------
\----- (End of Algorithm PixelRawDataProvider/InDetPixelRawDataProvider_Muon) ----------------------
/***** Public AlgTool SCTRawDataProviderTool/InDetSCTRawDataProviderTool_Muon **********************
|-AuditFinalize = False
|-AuditInitialize = False
|-AuditReinitialize = False
|-AuditRestart = False
|-AuditStart = False
|-AuditStop = False
|-AuditTools = False
|-Decoder = PrivateToolHandle('SCT_RodDecoder/InDetSCTRodDecoder_Muon')
| (default: 'SCT_RodDecoder/SCT_RodDecoder')
|-DetStore = ServiceHandle('StoreGateSvc/DetectorStore')
|-EvtStore = ServiceHandle('StoreGateSvc')
|-ExtraInputs = [] (default: [])
|-ExtraOutputs = [] (default: [])
|-MonitorService = 'MonitorSvc'
|-OutputLevel = 0
|=/***** Private AlgTool SCT_RodDecoder/InDetSCTRodDecoder_Muon **************************************
| |-AuditFinalize = False
| |-AuditInitialize = False
| |-AuditReinitialize = False
| |-AuditRestart = False
| |-AuditStart = False
| |-AuditStop = False
| |-AuditTools = False
| |-ConfigTool = PrivateToolHandle('SCT_ConfigurationConditionsTool/InDetSCT_ConfigurationConditionsTool')
| |-DetStore = ServiceHandle('StoreGateSvc/DetectorStore')
| |-EvtStore = ServiceHandle('StoreGateSvc')
| |-ExtraInputs = [] (default: [])
| |-ExtraOutputs = [] (default: [])
| |-MonitorService = 'MonitorSvc'
| |-OutputLevel = 0
| |-SCT_CablingTool = PrivateToolHandle('SCT_CablingTool/SCT_CablingTool')
| |=/***** Private AlgTool SCT_ConfigurationConditionsTool/InDetSCT_ConfigurationConditionsTool ********
| | |-AuditFinalize = False
| | |-AuditInitialize = False
| | |-AuditReinitialize = False
| | |-AuditRestart = False
| | |-AuditStart = False
| | |-AuditStop = False
| | |-AuditTools = False
| | |-CondKey = 'ConditionStore+SCT_ConfigurationCondData'
| | |-DetStore = ServiceHandle('StoreGateSvc/DetectorStore')
| | |-EvtStore = ServiceHandle('StoreGateSvc')
| | |-ExtraInputs = [] (default: [])
| | |-ExtraOutputs = [] (default: [])
| | |-MonitorService = 'MonitorSvc'
| | |-OutputLevel = 0
| | |-SCTDetEleCollKey = 'ConditionStore+SCT_DetectorElementCollection'
| | |-checkStripsInsideModule = True
| | \----- (End of Private AlgTool SCT_ConfigurationConditionsTool/InDetSCT_ConfigurationConditionsTool) -----
| |=/***** Private AlgTool SCT_CablingTool/SCT_CablingTool *********************************************
| | |-AuditFinalize = False
| | |-AuditInitialize = False
| | |-AuditReinitialize = False
| | |-AuditRestart = False
| | |-AuditStart = False
| | |-AuditStop = False
| | |-AuditTools = False
| | |-DataSource = 'CORACOOL'
| | |-DetStore = ServiceHandle('StoreGateSvc/DetectorStore')
| | |-EvtStore = ServiceHandle('StoreGateSvc')
| | |-ExtraInputs = [] (default: [])
| | |-ExtraOutputs = [] (default: [])
| | |-MonitorService = 'MonitorSvc'
| | |-OutputLevel = 0
| | |-SCT_CablingData = 'ConditionStore+SCT_CablingData'
| | \----- (End of Private AlgTool SCT_CablingTool/SCT_CablingTool) ------------------------------------
| \----- (End of Private AlgTool SCT_RodDecoder/InDetSCTRodDecoder_Muon) -----------------------------
\----- (End of Public AlgTool SCTRawDataProviderTool/InDetSCTRawDataProviderTool_Muon) -------------
InDetTrigTrackingCuts INFO using cutLevel 11/14
InDetTrigTrackingCuts INFO using cutLevel 11/14
InDetTrigTrackingCuts INFO using cutLevel 11/14
InDetTrigTrackingCuts INFO using cutLevel 11/14
InDetTrigTrackingCuts INFO using cutLevel 11/14
InDetTrigTrackingCuts INFO using cutLevel 11/14
InDetTrigTrackingCuts INFO using cutLevel 11/14
/***** Private AlgTool InDet::ClusterMakerTool/InDetTrigClusterMakerTool ***************************
|-AuditFinalize = False
|-AuditInitialize = False
|-AuditReinitialize = False
|-AuditRestart = False
|-AuditStart = False
|-AuditStop = False
|-AuditTools = False
|-DetStore = ServiceHandle('StoreGateSvc/DetectorStore')
|-EvtStore = ServiceHandle('StoreGateSvc')
|-ExtraInputs = [] (default: [])
|-ExtraOutputs = [] (default: [])
|-MonitorService = 'MonitorSvc'
|-OutputLevel = 0
|-PixelCablingSvc = ServiceHandle('PixelCablingSvc')
|-PixelChargeCalibCondData = 'ConditionStore+PixelChargeCalibCondData'
|-PixelLorentzAngleTool = PrivateToolHandle('SiLorentzAngleTool/PixelLorentzAngleTool')
|-PixelModuleData = 'ConditionStore+PixelModuleData'
|-PixelOfflineCalibData = 'ConditionStore+PixelOfflineCalibData'
|-SCTLorentzAngleTool = PrivateToolHandle('SiLorentzAngleTool/SCTLorentzAngleTool')
|=/***** Private AlgTool SiLorentzAngleTool/PixelLorentzAngleTool ************************************
| |-AuditFinalize = False
| |-AuditInitialize = False
| |-AuditReinitialize = False
| |-AuditRestart = False
| |-AuditStart = False
| |-AuditStop = False
| |-AuditTools = False
| |-DetEleCollKey = 'ConditionStore+SCT_DetectorElementCollection'
| |-DetStore = ServiceHandle('StoreGateSvc/DetectorStore')
| |-DetectorName = 'Pixel' (default: 'Pixel')
| |-EvtStore = ServiceHandle('StoreGateSvc')
| |-ExtraInputs = [] (default: [])
| |-ExtraOutputs = [] (default: [])
| |-IgnoreLocalPos = False
| |-MagFieldSvc = ServiceHandle('AtlasFieldSvc')
| |-MonitorService = 'MonitorSvc'
| |-NominalField = 0.0020834
| |-OutputLevel = 0
| |-SiLorentzAngleCondData = 'PixelSiLorentzAngleCondData' (default: 'ConditionStore+SCTSiLorentzAngleCondData')
| |-UseMagFieldSvc = True (default: True)
| \----- (End of Private AlgTool SiLorentzAngleTool/PixelLorentzAngleTool) ---------------------------
|=/***** Private AlgTool SiLorentzAngleTool/SCTLorentzAngleTool **************************************
| |-AuditFinalize = False
| |-AuditInitialize = False
| |-AuditReinitialize = False
| |-AuditRestart = False
| |-AuditStart = False
| |-AuditStop = False
| |-AuditTools = False
| |-DetEleCollKey = 'ConditionStore+SCT_DetectorElementCollection'
| |-DetStore = ServiceHandle('StoreGateSvc/DetectorStore')
| |-DetectorName = 'SCT' (default: 'Pixel')
| |-EvtStore = ServiceHandle('StoreGateSvc')
| |-ExtraInputs = [] (default: [])
| |-ExtraOutputs = [] (default: [])
| |-IgnoreLocalPos = False
| |-MagFieldSvc = ServiceHandle('AtlasFieldSvc')
| |-MonitorService = 'MonitorSvc'
| |-NominalField = 0.0020834
| |-OutputLevel = 0
| |-SiLorentzAngleCondData = 'SCTSiLorentzAngleCondData' (default: 'ConditionStore+SCTSiLorentzAngleCondData')
| |-UseMagFieldSvc = True
| \----- (End of Private AlgTool SiLorentzAngleTool/SCTLorentzAngleTool) -----------------------------
\----- (End of Private AlgTool InDet::ClusterMakerTool/InDetTrigClusterMakerTool) ------------------
/***** Private AlgTool InDet::SiSpacePointMakerTool/InDetTrigSiSpacePointMakerTool *****************
|-AuditFinalize = False
|-AuditInitialize = False
|-AuditReinitialize = False
|-AuditRestart = False
|-AuditStart = False
|-AuditStop = False
|-AuditTools = False
|-DetStore = ServiceHandle('StoreGateSvc/DetectorStore')
|-EvtStore = ServiceHandle('StoreGateSvc')
|-ExtraInputs = [] (default: [])
|-ExtraOutputs = [] (default: [])
|-MonitorService = 'MonitorSvc'
|-OutputLevel = 0
|-SCTGapParameter = 0.0
|-StripLengthTolerance = 0.01
|-UsePerpendicularProjection = False
\----- (End of Private AlgTool InDet::SiSpacePointMakerTool/InDetTrigSiSpacePointMakerTool) --------
/***** Private AlgTool InDet::SCT_TrigSpacePointTool/InDetTrigSCTSpacePointTool ********************
|-AllClusters = False
|-AuditFinalize = False
|-AuditInitialize = False
|-AuditReinitialize = False
|-AuditRestart = False
|-AuditStart = False
|-AuditStop = False
|-AuditTools = False
|-BeamSpotKey = 'ConditionStore+BeamSpotData'
|-DetStore = ServiceHandle('StoreGateSvc/DetectorStore')
|-EvtStore = ServiceHandle('StoreGateSvc')
|-ExtraInputs = [] (default: [])
|-ExtraOutputs = [] (default: [])
|-MonitorService = 'MonitorSvc'
|-OutputLevel = 0
|-OverlapLimitEtaMax = 3.0
|-OverlapLimitEtaMin = 1.68
|-OverlapLimitOpposite = 2.8
|-OverlapLimitPhi = 5.64
|-OverrideBeamSpot = False
|-ProcessOverlaps = False (default: False)
|-SiSpacePointMakerToolName = 'InDet::SiSpacePointMakerTool/InDetTrigSiSpacePointMakerTool'
| (default: 'InDet::SiSpacePointMakerTool')
|-SpacePointsOverlapName = 'SPTrigOverlap' (default: 'OverlapSpacePoints')
|-VertexX = 0.0
|-VertexY = 0.0
|-VertexZ = 0.0
\----- (End of Private AlgTool InDet::SCT_TrigSpacePointTool/InDetTrigSCTSpacePointTool) -----------
/***** Public AlgTool InDet::SCT_ClusterOnTrackTool/SCT_ClusterOnTrackTool *************************
|-AuditFinalize = False
|-AuditInitialize = False
|-AuditReinitialize = False
|-AuditRestart = False
|-AuditStart = False
|-AuditStop = False
|-AuditTools = False
|-CorrectionStrategy = 0 (default: -1)
|-DetStore = ServiceHandle('StoreGateSvc/DetectorStore')
|-ErrorStrategy = 2 (default: -1)
|-EvtStore = ServiceHandle('StoreGateSvc')
|-ExtraInputs = [] (default: [])
|-ExtraOutputs = [] (default: [])
|-LorentzAngleTool = PrivateToolHandle('SiLorentzAngleTool/SCTLorentzAngleTool')
| (default: 'SiLorentzAngleTool/SiLorentzAngleTool')
|-MakeTwoDimBarrelClusters = False
|-MonitorService = 'MonitorSvc'
|-OutputLevel = 0
|-SCTDistortionsTool = PrivateToolHandle('SCT_DistortionsTool/SCT_DistortionsTool')
| (default: 'SCT_DistortionsTool')
|-SCTErrorScalingKey = 'ConditionStore+/Indet/TrkErrorScalingSCT'
|-doDistortions = False
|=/***** Private AlgTool SiLorentzAngleTool/SCTLorentzAngleTool **************************************
| |-AuditFinalize = False
| |-AuditInitialize = False
| |-AuditReinitialize = False
| |-AuditRestart = False
| |-AuditStart = False
| |-AuditStop = False
| |-AuditTools = False
| |-DetEleCollKey = 'ConditionStore+SCT_DetectorElementCollection'
| |-DetStore = ServiceHandle('StoreGateSvc/DetectorStore')
| |-DetectorName = 'SCT' (default: 'Pixel')
| |-EvtStore = ServiceHandle('StoreGateSvc')
| |-ExtraInputs = [] (default: [])
| |-ExtraOutputs = [] (default: [])
| |-IgnoreLocalPos = False
| |-MagFieldSvc = ServiceHandle('AtlasFieldSvc')
| |-MonitorService = 'MonitorSvc'
| |-NominalField = 0.0020834
| |-OutputLevel = 0
| |-SiLorentzAngleCondData = 'SCTSiLorentzAngleCondData' (default: 'ConditionStore+SCTSiLorentzAngleCondData')
| |-UseMagFieldSvc = True
| \----- (End of Private AlgTool SiLorentzAngleTool/SCTLorentzAngleTool) -----------------------------
|=/***** Private AlgTool SCT_DistortionsTool/SCT_DistortionsTool *************************************
| |-AuditFinalize = False
| |-AuditInitialize = False
| |-AuditReinitialize = False
| |-AuditRestart = False
| |-AuditStart = False
| |-AuditStop = False
| |-AuditTools = False
| |-DetStore = ServiceHandle('StoreGateSvc/DetectorStore')
| |-EvtStore = ServiceHandle('StoreGateSvc')
| |-ExtraInputs = [] (default: [])
| |-ExtraOutputs = [] (default: [])
| |-MonitorService = 'MonitorSvc'
| |-OutputLevel = 0
| |-TextFileName1 = 'HashJap1.txt'
| |-TextFileName2 = 'HashJap2.txt'
| |-TextFileName3 = 'HashUK.txt'
| |-TextFileName4 = 'HashUSA.txt'
| |-TextFileName5 = 'HashScand.txt'
| |-TextFileName6 = 'TotalCommonProfile.txt'
| |-distortionsScale = 1.0
| \----- (End of Private AlgTool SCT_DistortionsTool/SCT_DistortionsTool) ----------------------------
\----- (End of Public AlgTool InDet::SCT_ClusterOnTrackTool/SCT_ClusterOnTrackTool) ----------------
None
/***** Public AlgTool InDet::PixelClusterOnTrackTool/InDetTrigPixelClusterOnTrackTool **************
|-AuditFinalize = False
|-AuditInitialize = False
|-AuditReinitialize = False
|-AuditRestart = False
|-AuditStart = False
|-AuditStop = False
|-AuditTools = False
|-DetStore = ServiceHandle('StoreGateSvc/DetectorStore')
|-DisableDistortions = False
|-ErrorStrategy = 2 (default: 2)
|-EventStore = ServiceHandle('StoreGateSvc')
|-EvtStore = ServiceHandle('StoreGateSvc')
|-ExtraInputs = [] (default: [])
|-ExtraOutputs = [] (default: [])
|-LorentzAngleTool = PrivateToolHandle('SiLorentzAngleTool/PixelLorentzAngleTool')
| (default: 'SiLorentzAngleTool/SiLorentzAngleTool')
|-MonitorService = 'MonitorSvc'
|-NNIBLcorrection = False
|-NnClusterizationFactory = PrivateToolHandle('')
| (default: 'InDet::NnClusterizationFactory/NnClusterizationFactory')
|-OutputLevel = 0
|-PixelDistortionsTool = PrivateToolHandle('PixelDistortionsTool/PixelDistortionsTool')
| (default: 'PixelDistortionsTool')
|-PixelErrorScalingKey = 'ConditionStore+/Indet/TrkErrorScalingPixel'
|-PixelOfflineCalibData = 'ConditionStore+PixelOfflineCalibData'
|-PositionStrategy = 1
|-Release13like = False
|-RunningTIDE_Ambi = False
|-SplitClusterAmbiguityMap = 'StoreGateSvc+SplitClusterAmbiguityMap'
|-applyNNcorrection = False
|-applydRcorrection = False
|-dRMapName = 'dRMap'
|-doNotRecalibrateNN = False
|-m_noNNandBroadErrors = False
|=/***** Private AlgTool PixelDistortionsTool/PixelDistortionsTool ***********************************
| |-AuditFinalize = False
| |-AuditInitialize = False
| |-AuditReinitialize = False
| |-AuditRestart = False
| |-AuditStart = False
| |-AuditStop = False
| |-AuditTools = False
| |-DetStore = ServiceHandle('StoreGateSvc/DetectorStore')
| |-EvtStore = ServiceHandle('StoreGateSvc')
| |-ExtraInputs = [] (default: [])
| |-ExtraOutputs = [] (default: [])
| |-FolderName = '/Indet/PixelDist'
| |-InputSource = 4
| |-Mean_R = 0.00012
| |-Mean_twist = -0.0005
| |-MonitorService = 'MonitorSvc'
| |-OutputLevel = 0
| |-OverrideVersion = -1