diff --git a/GaudiAlg/include/GaudiAlg/GaudiCommon.h b/GaudiAlg/include/GaudiAlg/GaudiCommon.h index eece687d37794f67c54ac290b599e70579729220..2e4fa729960eda9fe8d32f999bf2274e0f7564c3 100644 --- a/GaudiAlg/include/GaudiAlg/GaudiCommon.h +++ b/GaudiAlg/include/GaudiAlg/GaudiCommon.h @@ -739,29 +739,11 @@ private: } }, "print the properties of the component"}; - Gaudi::Property<bool> m_printEmptyCounters{this, "PrintEmptyCounters", false, - "force printing of empty counters, otherwise only printed in DEBUG mode"}; Gaudi::Property<bool> m_typePrint{this, "TypePrint", true, "add the actual C++ component type into the messages"}; - Gaudi::Property<std::string> m_context{this, "Context", {}, "note: overridden by parent settings"}; - Gaudi::Property<std::string> m_header{this, "StatTableHeader", - " | Counter | # | " - " sum | mean/eff^* | rms/err^* | min | max |", - "the header row for the output Stat-table"}; - Gaudi::Property<std::string> m_format1{ - this, "RegularRowFormat", " | %|-48.48s|%|50t||%|10d| |%|11.7g| |%|#11.5g| |%|#11.5g| |%|#12.5g| |%|#12.5g| |", - "the format for regular row in the output Stat-table"}; - Gaudi::Property<std::string> m_format2{ - this, "EfficiencyRowFormat", - " |*%|-48.48s|%|50t||%|10d| |%|11.5g| |(%|#9.6g| +- %|-#9.6g|)%%| ------- | ------- |", - "The format for \"efficiency\" row in the output Stat-table"}; - Gaudi::Property<bool> m_useEffFormat{this, "UseEfficiencyRowFormat", true, - "use the special format for printout of efficiency counters"}; - + Gaudi::Property<std::string> m_context{this, "Context", {}, "note: overridden by parent settings"}; Gaudi::Property<std::vector<std::string>> m_counterList{ this, "CounterList", {".*"}, "RegEx list, of simple integer counters for CounterSummary"}; - Gaudi::Property<std::vector<std::string>> m_statEntityList{ - this, "StatEntityList", {}, "RegEx list, of StatEntity counters for CounterSummary"}; }; // ============================================================================ #include "GaudiAlg/GaudiCommonImp.h" diff --git a/GaudiAlg/src/lib/GaudiCommon.icpp b/GaudiAlg/src/lib/GaudiCommon.icpp index a9881c83374a077fbd746668215019b661cc8866..e183068f98e768c71eac18ebb0b067930bddb993 100644 --- a/GaudiAlg/src/lib/GaudiCommon.icpp +++ b/GaudiAlg/src/lib/GaudiCommon.icpp @@ -116,14 +116,10 @@ StatusCode GaudiCommon<PBASE>::finalize() { if ( m_counterSummarySvc && this->svcLoc()->existsService( "CounterSummarySvc" ) ) { if ( this->msgLevel( MSG::DEBUG ) ) this->debug() << "adding counters to CounterSummarySvc" << endmsg; - Gaudi::Utils::RegEx::matchList statList{m_statEntityList.value()}; Gaudi::Utils::RegEx::matchList counterList{m_counterList.value()}; for ( const auto& i : m_countersOwn ) { - if ( statList.Or( i.first ) ) - m_counterSummarySvc->addCounter( this->name(), i.first, i.second, Gaudi::CounterSummary::SaveStatEntity ); - else if ( counterList.Or( i.first ) ) - m_counterSummarySvc->addCounter( this->name(), i.first, i.second ); + if ( counterList.Or( i.first ) ) m_counterSummarySvc->addCounter( this->name(), i.first, i.second ); } } // release all located tools and services @@ -163,7 +159,6 @@ StatusCode GaudiCommon<PBASE>::finalize() { m_warnings.clear(); m_errors.clear(); m_counterList.clear(); - m_statEntityList.clear(); // finalize base class return ( sc && base_class::finalize() ? StatusCode::SUCCESS : StatusCode::FAILURE ); diff --git a/GaudiExamples/tests/qmtest/refs/Aida2Root.ref b/GaudiExamples/tests/qmtest/refs/Aida2Root.ref index 6e3c31a3875d598412d3882251d43561f061cdd9..226fc4a00ce4e4ed4cd57aefa5900193f344c7f6 100644 --- a/GaudiExamples/tests/qmtest/refs/Aida2Root.ref +++ b/GaudiExamples/tests/qmtest/refs/Aida2Root.ref @@ -1,4 +1,4 @@ -JobOptionsSvc INFO # =======> /home/sponce/dev4/Gaudi/GaudiExamples/options/Histograms.opts +JobOptionsSvc INFO # =======> /builds/gaudi/Gaudi/GaudiExamples/options/Histograms.opts JobOptionsSvc INFO # (5,1): AuditorSvc.Auditors = ["ChronoAuditor"] JobOptionsSvc INFO # (9,1): MessageSvc.OutputLevel = 3 JobOptionsSvc INFO # (20,1): ApplicationMgr.TopAlg += ["GaudiHistoAlgorithm/SimpleHistos"] @@ -19,20 +19,20 @@ JobOptionsSvc INFO # (48,1): ApplicationMgr.ExtSvc = ["Gaudi::Monitoring: JobOptionsSvc INFO # (49,1): RootHistSvc.OutputFile = "histo-opts.root" JobOptionsSvc INFO # (60,1): HistogramDataSvc.Predefined1DHistos = {"/stat/Histos2/2":["TEST2", -100, 200]} JobOptionsSvc INFO # (64,1): HistogramDataSvc.OutputLevel = 2 -JobOptionsSvc INFO # =======> /home/sponce/dev4/Gaudi/GaudiExamples/options/Aida2Root.opts +JobOptionsSvc INFO # =======> /builds/gaudi/Gaudi/GaudiExamples/options/Aida2Root.opts JobOptionsSvc INFO # (3,1): ApplicationMgr.TopAlg += ["Aida2Root"] JobOptionsSvc INFO # (4,1): ApplicationMgr.ExtSvc += ["Gaudi::Monitoring::MessageSvcSink"] -JobOptionsSvc INFO Job options successfully read in from /home/sponce/dev4/Gaudi/GaudiExamples/options/Aida2Root.opts +JobOptionsSvc INFO Job options successfully read in from /builds/gaudi/Gaudi/GaudiExamples/options/Aida2Root.opts ApplicationMgr SUCCESS ==================================================================================================================================== - Welcome to ApplicationMgr (GaudiCoreSvc v34r0) - running on lblhcbpr11.cern.ch on Mon Sep 28 08:58:43 2020 + Welcome to ApplicationMgr (GaudiCoreSvc v34r1) + running on runner-7f-zqs17-project-38-concurrent-0 on Mon Oct 19 16:15:52 2020 ==================================================================================================================================== ApplicationMgr INFO Application Manager Configured successfully SimpleHistos DEBUG Property update for OutputLevel : new value = 2 SimpleHistos DEBUG Initialize base class GaudiCommon<Algorithm> SimpleHistos DEBUG could not locate CounterSummarySvc, no counter summary will be made -SimpleHistos DEBUG List of ALL properties of GaudiHistoAlgorithm/SimpleHistos #properties = 49 +SimpleHistos DEBUG List of ALL properties of GaudiHistoAlgorithm/SimpleHistos #properties = 43 SimpleHistos DEBUG Property ['Name': Value] = 'AutoStringIDPurgeMap':{ '/' : '=SLASH=' } SimpleHistos DEBUG Property ['Name': Value] = 'UseSequencialNumericAutoIDs':False SimpleHistos DEBUG Property ['Name': Value] = 'HeaderFor1DHistoTable':'| Title | # | Mean | RMS | Skewness | Kurtosis |' @@ -50,15 +50,9 @@ SimpleHistos DEBUG Property ['Name': Value] = 'HistoPrint':True SimpleHistos DEBUG Property ['Name': Value] = 'HistoProduce':True SimpleHistos DEBUG Property ['Name': Value] = 'RequireObjects':[ ] SimpleHistos DEBUG Property ['Name': Value] = 'VetoObjects':[ ] -SimpleHistos DEBUG Property ['Name': Value] = 'StatEntityList':[ ] SimpleHistos DEBUG Property ['Name': Value] = 'CounterList':[ '.*' ] -SimpleHistos DEBUG Property ['Name': Value] = 'UseEfficiencyRowFormat':True -SimpleHistos DEBUG Property ['Name': Value] = 'EfficiencyRowFormat':' |*%|-48.48s|%|50t||%|10d| |%|11.5g| |(%|#9.6g| +- %|-#9.6g|)%%| ------- | ------- |' -SimpleHistos DEBUG Property ['Name': Value] = 'RegularRowFormat':' | %|-48.48s|%|50t||%|10d| |%|11.7g| |%|#11.5g| |%|#11.5g| |%|#12.5g| |%|#12.5g| |' -SimpleHistos DEBUG Property ['Name': Value] = 'StatTableHeader':' | Counter | # | sum | mean/eff^* | rms/err^* | min | max |' SimpleHistos DEBUG Property ['Name': Value] = 'Context':'' SimpleHistos DEBUG Property ['Name': Value] = 'TypePrint':True -SimpleHistos DEBUG Property ['Name': Value] = 'PrintEmptyCounters':False SimpleHistos DEBUG Property ['Name': Value] = 'PropertiesPrint':False SimpleHistos DEBUG Property ['Name': Value] = 'ErrorsPrint':True SimpleHistos DEBUG Property ['Name': Value] = 'RootInTES':'' @@ -92,7 +86,7 @@ SimpleHistos DEBUG GaudiHistoAlgorithm:: The histogram path is set to be SimpleHistos DEBUG input handles: 0 SimpleHistos DEBUG output handles: 0 SimpleHistos DEBUG Data Deps for SimpleHistos -Histos2 SUCCESS List of ALL properties of Gaudi::Examples::HistoProps/Histos2 #properties = 51 +Histos2 SUCCESS List of ALL properties of Gaudi::Examples::HistoProps/Histos2 #properties = 45 Histos2 SUCCESS Property ['Name': Value] = 'Histo2':('',-5.00000,5.00000,200) Histos2 SUCCESS Property ['Name': Value] = 'Histo1':('Histogram1',-3.00000,3.00000,200) Histos2 SUCCESS Property ['Name': Value] = 'AutoStringIDPurgeMap':{ '/' : '=SLASH=' } @@ -112,15 +106,9 @@ Histos2 SUCCESS Property ['Name': Value] = 'HistoPrint':True Histos2 SUCCESS Property ['Name': Value] = 'HistoProduce':True Histos2 SUCCESS Property ['Name': Value] = 'RequireObjects':[ ] Histos2 SUCCESS Property ['Name': Value] = 'VetoObjects':[ ] -Histos2 SUCCESS Property ['Name': Value] = 'StatEntityList':[ ] Histos2 SUCCESS Property ['Name': Value] = 'CounterList':[ '.*' ] -Histos2 SUCCESS Property ['Name': Value] = 'UseEfficiencyRowFormat':True -Histos2 SUCCESS Property ['Name': Value] = 'EfficiencyRowFormat':' |*%|-48.48s|%|50t||%|10d| |%|11.5g| |(%|#9.6g| +- %|-#9.6g|)%%| ------- | ------- |' -Histos2 SUCCESS Property ['Name': Value] = 'RegularRowFormat':' | %|-48.48s|%|50t||%|10d| |%|11.7g| |%|#11.5g| |%|#11.5g| |%|#12.5g| |%|#12.5g| |' -Histos2 SUCCESS Property ['Name': Value] = 'StatTableHeader':' | Counter | # | sum | mean/eff^* | rms/err^* | min | max |' Histos2 SUCCESS Property ['Name': Value] = 'Context':'' Histos2 SUCCESS Property ['Name': Value] = 'TypePrint':True -Histos2 SUCCESS Property ['Name': Value] = 'PrintEmptyCounters':False Histos2 SUCCESS Property ['Name': Value] = 'PropertiesPrint':True Histos2 SUCCESS Property ['Name': Value] = 'ErrorsPrint':True Histos2 SUCCESS Property ['Name': Value] = 'RootInTES':'' @@ -144,7 +132,7 @@ Histos2 SUCCESS Property ['Name': Value] = 'Enable':True Histos2 SUCCESS Property ['Name': Value] = 'OutputLevel':3 Histos2 SUCCESS Property ['Name': Value] = 'ExtraOutputs':[] Histos2 SUCCESS Property ['Name': Value] = 'ExtraInputs':[] -Aida2Root SUCCESS List of ALL properties of Aida2Root/Aida2Root #properties = 54 +Aida2Root SUCCESS List of ALL properties of Aida2Root/Aida2Root #properties = 48 Aida2Root SUCCESS Property ['Name': Value] = 'Profs2D':[ 'SimpleHistos/321' , 'SimpleHistos/2dprof' ] Aida2Root SUCCESS Property ['Name': Value] = 'Profs1D':[ 'SimpleHistos/Expo V Gauss 1DProf' ] Aida2Root SUCCESS Property ['Name': Value] = 'Histos3D':[ 'SimpleHistos/3D plot AutoID' , 'SimpleHistos/3d' ] @@ -167,15 +155,9 @@ Aida2Root SUCCESS Property ['Name': Value] = 'HistoPrint':False Aida2Root SUCCESS Property ['Name': Value] = 'HistoProduce':True Aida2Root SUCCESS Property ['Name': Value] = 'RequireObjects':[ ] Aida2Root SUCCESS Property ['Name': Value] = 'VetoObjects':[ ] -Aida2Root SUCCESS Property ['Name': Value] = 'StatEntityList':[ ] Aida2Root SUCCESS Property ['Name': Value] = 'CounterList':[ '.*' ] -Aida2Root SUCCESS Property ['Name': Value] = 'UseEfficiencyRowFormat':True -Aida2Root SUCCESS Property ['Name': Value] = 'EfficiencyRowFormat':' |*%|-48.48s|%|50t||%|10d| |%|11.5g| |(%|#9.6g| +- %|-#9.6g|)%%| ------- | ------- |' -Aida2Root SUCCESS Property ['Name': Value] = 'RegularRowFormat':' | %|-48.48s|%|50t||%|10d| |%|11.7g| |%|#11.5g| |%|#11.5g| |%|#12.5g| |%|#12.5g| |' -Aida2Root SUCCESS Property ['Name': Value] = 'StatTableHeader':' | Counter | # | sum | mean/eff^* | rms/err^* | min | max |' Aida2Root SUCCESS Property ['Name': Value] = 'Context':'' Aida2Root SUCCESS Property ['Name': Value] = 'TypePrint':True -Aida2Root SUCCESS Property ['Name': Value] = 'PrintEmptyCounters':False Aida2Root SUCCESS Property ['Name': Value] = 'PropertiesPrint':True Aida2Root SUCCESS Property ['Name': Value] = 'ErrorsPrint':True Aida2Root SUCCESS Property ['Name': Value] = 'RootInTES':'' @@ -429,11 +411,11 @@ EventLoopMgr INFO Histograms converted successfully according to request *****Chrono***** INFO **************************************************************************************************** *****Chrono***** INFO The Final CPU consumption ( Chrono ) Table (ordered) *****Chrono***** INFO **************************************************************************************************** -1DAutoID INFO Time User : Tot= 20 [ms] Ave/Min/Max= 0.0004(+- 0.0632)/ 0/ 10 [ms] #=49999 -1DOldStyle INFO Time User : Tot= 10 [ms] Ave/Min/Max= 0.0002(+- 0.0447)/ 0/ 10 [ms] #=49999 +1DOldStyle INFO Time User : Tot= 60 [ms] Ave/Min/Max= 0.0012(+- 0.11)/ 0/ 10 [ms] #=49999 1DForcedAlphaID INFO Time User : Tot= 70 [ms] Ave/Min/Max= 0.0014(+- 0.118)/ 0/ 10 [ms] #=49999 1DForcedNumericID INFO Time User : Tot= 80 [ms] Ave/Min/Max= 0.0016(+- 0.126)/ 0/ 10 [ms] #=49999 -ChronoStatSvc INFO Time User : Tot= 1.36 [s] #= 1 +1DAutoID INFO Time User : Tot= 80 [ms] Ave/Min/Max= 0.0016(+- 0.126)/ 0/ 10 [ms] #=49999 +ChronoStatSvc INFO Time User : Tot= 1.16 [s] #= 1 *****Chrono***** INFO **************************************************************************************************** ChronoStatSvc.f... INFO Service finalized successfully HistogramDataSvc DEBUG Substituted histograms #1 : diff --git a/GaudiExamples/tests/qmtest/refs/AlgTools.ref b/GaudiExamples/tests/qmtest/refs/AlgTools.ref index 044173abb7e6fcc3561bfdbdb8c198f5e5915659..da914b706cbca5329590c6bbaf36e84651e36f77 100644 --- a/GaudiExamples/tests/qmtest/refs/AlgTools.ref +++ b/GaudiExamples/tests/qmtest/refs/AlgTools.ref @@ -1,8 +1,8 @@ -JobOptionsSvc INFO # =======> /project/bfys/graven/master/Gaudi/GaudiExamples/options/Services.opts +JobOptionsSvc INFO # =======> /builds/gaudi/Gaudi/GaudiExamples/options/Services.opts JobOptionsSvc INFO # (12,1): AuditorSvc.Auditors = ["ChronoAuditor"] -JobOptionsSvc INFO # =======> /project/bfys/graven/master/Gaudi/GaudiExamples/options/Common.opts +JobOptionsSvc INFO # =======> /builds/gaudi/Gaudi/GaudiExamples/options/Common.opts JobOptionsSvc INFO # (9,1): ApplicationMgr.StatusCodeCheck = 1 -JobOptionsSvc INFO # =======> /project/bfys/graven/master/Gaudi/GaudiExamples/options/AlgTools.opts +JobOptionsSvc INFO # =======> /builds/gaudi/Gaudi/GaudiExamples/options/AlgTools.opts JobOptionsSvc INFO # (9,1): ApplicationMgr.TopAlg = ["MyAlgorithm/MyAlg"] JobOptionsSvc INFO # (12,1): MessageSvc.OutputLevel = 3 JobOptionsSvc INFO # (17,1): ApplicationMgr.EvtMax = 10 @@ -23,11 +23,11 @@ JobOptionsSvc INFO # (43,1): ToolSvc.ToolA.Tools = ["TestTool/ToolB"] JobOptionsSvc INFO # (44,1): ToolSvc.ToolB.Tools = ["TestTool/ToolA"] JobOptionsSvc INFO # (45,1): ToolSvc.ToolA.OutputLevel = 2 JobOptionsSvc INFO # (46,1): ToolSvc.ToolB.OutputLevel = 2 -JobOptionsSvc INFO Job options successfully read in from /project/bfys/graven/master/Gaudi/GaudiExamples/options/AlgTools.opts +JobOptionsSvc INFO Job options successfully read in from /builds/gaudi/Gaudi/GaudiExamples/options/AlgTools.opts ApplicationMgr SUCCESS ==================================================================================================================================== - Welcome to ApplicationMgr (GaudiCoreSvc v30r5) - running on stbc-i5.nikhef.nl on Sun Jan 27 20:46:48 2019 + Welcome to ApplicationMgr (GaudiCoreSvc v34r1) + running on runner-7f-zqs17-project-38-concurrent-0 on Mon Oct 19 16:15:55 2020 ==================================================================================================================================== ApplicationMgr INFO Application Manager Configured successfully StatusCodeSvc INFO initialize @@ -62,21 +62,15 @@ ToolSvc.ToolA DEBUG Property update for OutputLevel : new value = 2 ToolSvc.ToolA DEBUG Initialize ToolSvc.ToolA DEBUG Initialize base class GaudiCommon<AlgTool> ToolSvc.ToolA DEBUG could not locate CounterSummarySvc, no counter summary will be made -ToolSvc.ToolA DEBUG List of ALL properties of TestTool/ToolSvc.ToolA #properties = 26 +ToolSvc.ToolA DEBUG List of ALL properties of TestTool/ToolSvc.ToolA #properties = 19 ToolSvc.ToolA DEBUG Property ['Name': Value] = 'Tools':[ 'TestTool/ToolB' ] ToolSvc.ToolA DEBUG Property ['Name': Value] = 'ContextService':'AlgContextSvc' -ToolSvc.ToolA DEBUG Property ['Name': Value] = 'StatEntityList':[ ] ToolSvc.ToolA DEBUG Property ['Name': Value] = 'CounterList':[ '.*' ] -ToolSvc.ToolA DEBUG Property ['Name': Value] = 'UseEfficiencyRowFormat':True -ToolSvc.ToolA DEBUG Property ['Name': Value] = 'EfficiencyRowFormat':' |*%|-48.48s|%|50t||%|10d| |%|11.5g| |(%|#9.6g| +- %|-#9.6g|)%%| ------- | ------- |' -ToolSvc.ToolA DEBUG Property ['Name': Value] = 'RegularRowFormat':' | %|-48.48s|%|50t||%|10d| |%|11.7g| |%|#11.5g| |%|#11.5g| |%|#12.5g| |%|#12.5g| |' -ToolSvc.ToolA DEBUG Property ['Name': Value] = 'StatTableHeader':' | Counter | # | sum | mean/eff^* | rms/err^* | min | max |' -ToolSvc.ToolA DEBUG Property ['Name': Value] = 'RootInTES':'' ToolSvc.ToolA DEBUG Property ['Name': Value] = 'Context':'' ToolSvc.ToolA DEBUG Property ['Name': Value] = 'TypePrint':True -ToolSvc.ToolA DEBUG Property ['Name': Value] = 'PrintEmptyCounters':False ToolSvc.ToolA DEBUG Property ['Name': Value] = 'PropertiesPrint':False ToolSvc.ToolA DEBUG Property ['Name': Value] = 'ErrorsPrint':True +ToolSvc.ToolA DEBUG Property ['Name': Value] = 'RootInTES':'' ToolSvc.ToolA DEBUG Property ['Name': Value] = 'AuditRestart':False ToolSvc.ToolA DEBUG Property ['Name': Value] = 'AuditReinitialize':False ToolSvc.ToolA DEBUG Property ['Name': Value] = 'AuditFinalize':False @@ -93,21 +87,15 @@ ToolSvc.ToolB DEBUG Property update for OutputLevel : new value = 2 ToolSvc.ToolB DEBUG Initialize ToolSvc.ToolB DEBUG Initialize base class GaudiCommon<AlgTool> ToolSvc.ToolB DEBUG could not locate CounterSummarySvc, no counter summary will be made -ToolSvc.ToolB DEBUG List of ALL properties of TestTool/ToolSvc.ToolB #properties = 26 +ToolSvc.ToolB DEBUG List of ALL properties of TestTool/ToolSvc.ToolB #properties = 19 ToolSvc.ToolB DEBUG Property ['Name': Value] = 'Tools':[ 'TestTool/ToolA' ] ToolSvc.ToolB DEBUG Property ['Name': Value] = 'ContextService':'AlgContextSvc' -ToolSvc.ToolB DEBUG Property ['Name': Value] = 'StatEntityList':[ ] ToolSvc.ToolB DEBUG Property ['Name': Value] = 'CounterList':[ '.*' ] -ToolSvc.ToolB DEBUG Property ['Name': Value] = 'UseEfficiencyRowFormat':True -ToolSvc.ToolB DEBUG Property ['Name': Value] = 'EfficiencyRowFormat':' |*%|-48.48s|%|50t||%|10d| |%|11.5g| |(%|#9.6g| +- %|-#9.6g|)%%| ------- | ------- |' -ToolSvc.ToolB DEBUG Property ['Name': Value] = 'RegularRowFormat':' | %|-48.48s|%|50t||%|10d| |%|11.7g| |%|#11.5g| |%|#11.5g| |%|#12.5g| |%|#12.5g| |' -ToolSvc.ToolB DEBUG Property ['Name': Value] = 'StatTableHeader':' | Counter | # | sum | mean/eff^* | rms/err^* | min | max |' -ToolSvc.ToolB DEBUG Property ['Name': Value] = 'RootInTES':'' ToolSvc.ToolB DEBUG Property ['Name': Value] = 'Context':'' ToolSvc.ToolB DEBUG Property ['Name': Value] = 'TypePrint':True -ToolSvc.ToolB DEBUG Property ['Name': Value] = 'PrintEmptyCounters':False ToolSvc.ToolB DEBUG Property ['Name': Value] = 'PropertiesPrint':False ToolSvc.ToolB DEBUG Property ['Name': Value] = 'ErrorsPrint':True +ToolSvc.ToolB DEBUG Property ['Name': Value] = 'RootInTES':'' ToolSvc.ToolB DEBUG Property ['Name': Value] = 'AuditRestart':False ToolSvc.ToolB DEBUG Property ['Name': Value] = 'AuditReinitialize':False ToolSvc.ToolB DEBUG Property ['Name': Value] = 'AuditFinalize':False @@ -124,7 +112,6 @@ ToolSvc.ToolB DEBUG Registering tool ToolSvc.ToolA ToolSvc.ToolA DEBUG Registering tool ToolSvc.ToolB EventLoopMgr WARNING Unable to locate service "EventSelector" EventLoopMgr WARNING No events will be processed from external input. -HistogramPersis...WARNING Histograms saving not required. ApplicationMgr INFO Application Manager Initialized successfully ApplicationMgr INFO Application Manager Started successfully MyAlg INFO executing.... diff --git a/GaudiExamples/tests/qmtest/refs/AlgTools2.ref b/GaudiExamples/tests/qmtest/refs/AlgTools2.ref index c11283f6566187f3de1568f22f649b03ec883c33..8aa5971b48af5838039a3109b2d65ee8820a4764 100644 --- a/GaudiExamples/tests/qmtest/refs/AlgTools2.ref +++ b/GaudiExamples/tests/qmtest/refs/AlgTools2.ref @@ -1,8 +1,8 @@ -JobOptionsSvc INFO # =======> /project/bfys/graven/master/Gaudi/GaudiExamples/options/Services.opts +JobOptionsSvc INFO # =======> /builds/gaudi/Gaudi/GaudiExamples/options/Services.opts JobOptionsSvc INFO # (12,1): AuditorSvc.Auditors = ["ChronoAuditor"] -JobOptionsSvc INFO # =======> /project/bfys/graven/master/Gaudi/GaudiExamples/options/Common.opts +JobOptionsSvc INFO # =======> /builds/gaudi/Gaudi/GaudiExamples/options/Common.opts JobOptionsSvc INFO # (9,1): ApplicationMgr.StatusCodeCheck = 1 -JobOptionsSvc INFO # =======> /project/bfys/graven/master/Gaudi/GaudiExamples/options/AlgTools2.opts +JobOptionsSvc INFO # =======> /builds/gaudi/Gaudi/GaudiExamples/options/AlgTools2.opts JobOptionsSvc INFO # (10,1): ApplicationMgr.TopAlg = ["MyGaudiAlgorithm/MyAlg"] JobOptionsSvc INFO # (13,1): MessageSvc.OutputLevel = 3 JobOptionsSvc INFO # (18,1): ApplicationMgr.EvtMax = 10 @@ -24,18 +24,18 @@ JobOptionsSvc INFO # (46,1): ToolSvc.ToolA.Tools = ["TestTool/ToolB"] JobOptionsSvc INFO # (47,1): ToolSvc.ToolB.Tools = ["TestTool/ToolA"] JobOptionsSvc INFO # (48,1): ToolSvc.ToolA.OutputLevel = 2 JobOptionsSvc INFO # (49,1): ToolSvc.ToolB.OutputLevel = 2 -JobOptionsSvc INFO Job options successfully read in from /project/bfys/graven/master/Gaudi/GaudiExamples/options/AlgTools2.opts +JobOptionsSvc INFO Job options successfully read in from /builds/gaudi/Gaudi/GaudiExamples/options/AlgTools2.opts ApplicationMgr SUCCESS ==================================================================================================================================== - Welcome to ApplicationMgr (GaudiCoreSvc v32r1) - running on stbc-i1.nikhef.nl on Thu Aug 22 00:54:28 2019 + Welcome to ApplicationMgr (GaudiCoreSvc v34r1) + running on runner-7f-zqs17-project-38-concurrent-0 on Mon Oct 19 16:15:56 2020 ==================================================================================================================================== ApplicationMgr INFO Application Manager Configured successfully StatusCodeSvc INFO initialize MyAlg DEBUG Property update for OutputLevel : new value = 2 MyAlg DEBUG Initialize base class GaudiCommon<Algorithm> MyAlg DEBUG could not locate CounterSummarySvc, no counter summary will be made -MyAlg DEBUG List of ALL properties of MyGaudiAlgorithm/MyAlg #properties = 49 +MyAlg DEBUG List of ALL properties of MyGaudiAlgorithm/MyAlg #properties = 42 MyAlg DEBUG Property ['Name': Value] = 'UndefinedToolHandle': MyAlg DEBUG Property ['Name': Value] = 'LegacyToolHandle':MyTool/LegacyToolHandle MyAlg DEBUG Property ['Name': Value] = 'trackSelection':/Event/MyAnalysis/Tracks @@ -52,15 +52,9 @@ MyAlg DEBUG Property ['Name': Value] = 'PrivToolHandle':MyTool/Pr MyAlg DEBUG Property ['Name': Value] = 'ToolWithName':'MyTool' MyAlg DEBUG Property ['Name': Value] = 'RequireObjects':[ ] MyAlg DEBUG Property ['Name': Value] = 'VetoObjects':[ ] -MyAlg DEBUG Property ['Name': Value] = 'StatEntityList':[ ] MyAlg DEBUG Property ['Name': Value] = 'CounterList':[ '.*' ] -MyAlg DEBUG Property ['Name': Value] = 'UseEfficiencyRowFormat':True -MyAlg DEBUG Property ['Name': Value] = 'EfficiencyRowFormat':' |*%|-48.48s|%|50t||%|10d| |%|11.5g| |(%|#9.6g| +- %|-#9.6g|)%%| ------- | ------- |' -MyAlg DEBUG Property ['Name': Value] = 'RegularRowFormat':' | %|-48.48s|%|50t||%|10d| |%|11.7g| |%|#11.5g| |%|#11.5g| |%|#12.5g| |%|#12.5g| |' -MyAlg DEBUG Property ['Name': Value] = 'StatTableHeader':' | Counter | # | sum | mean/eff^* | rms/err^* | min | max |' MyAlg DEBUG Property ['Name': Value] = 'Context':'' MyAlg DEBUG Property ['Name': Value] = 'TypePrint':True -MyAlg DEBUG Property ['Name': Value] = 'PrintEmptyCounters':False MyAlg DEBUG Property ['Name': Value] = 'PropertiesPrint':False MyAlg DEBUG Property ['Name': Value] = 'ErrorsPrint':True MyAlg DEBUG Property ['Name': Value] = 'RootInTES':'' @@ -107,21 +101,15 @@ MyAlg DEBUG Registering tool ToolSvc.MyGaudiTool MyAlg.MyGaudiTool DEBUG Property update for OutputLevel : new value = 2 MyAlg.MyGaudiTool DEBUG Initialize base class GaudiCommon<AlgTool> MyAlg.MyGaudiTool DEBUG could not locate CounterSummarySvc, no counter summary will be made -MyAlg.MyGaudiTool DEBUG List of ALL properties of MyGaudiTool/MyAlg.MyGaudiTool #properties = 29 +MyAlg.MyGaudiTool DEBUG List of ALL properties of MyGaudiTool/MyAlg.MyGaudiTool #properties = 22 MyAlg.MyGaudiTool DEBUG Property ['Name': Value] = 'Bool':True MyAlg.MyGaudiTool DEBUG Property ['Name': Value] = 'String':'hundred' MyAlg.MyGaudiTool DEBUG Property ['Name': Value] = 'Double':100.00000 MyAlg.MyGaudiTool DEBUG Property ['Name': Value] = 'Int':100 MyAlg.MyGaudiTool DEBUG Property ['Name': Value] = 'ContextService':'AlgContextSvc' -MyAlg.MyGaudiTool DEBUG Property ['Name': Value] = 'StatEntityList':[ ] MyAlg.MyGaudiTool DEBUG Property ['Name': Value] = 'CounterList':[ '.*' ] -MyAlg.MyGaudiTool DEBUG Property ['Name': Value] = 'UseEfficiencyRowFormat':True -MyAlg.MyGaudiTool DEBUG Property ['Name': Value] = 'EfficiencyRowFormat':' |*%|-48.48s|%|50t||%|10d| |%|11.5g| |(%|#9.6g| +- %|-#9.6g|)%%| ------- | ------- |' -MyAlg.MyGaudiTool DEBUG Property ['Name': Value] = 'RegularRowFormat':' | %|-48.48s|%|50t||%|10d| |%|11.7g| |%|#11.5g| |%|#11.5g| |%|#12.5g| |%|#12.5g| |' -MyAlg.MyGaudiTool DEBUG Property ['Name': Value] = 'StatTableHeader':' | Counter | # | sum | mean/eff^* | rms/err^* | min | max |' MyAlg.MyGaudiTool DEBUG Property ['Name': Value] = 'Context':'' MyAlg.MyGaudiTool DEBUG Property ['Name': Value] = 'TypePrint':True -MyAlg.MyGaudiTool DEBUG Property ['Name': Value] = 'PrintEmptyCounters':False MyAlg.MyGaudiTool DEBUG Property ['Name': Value] = 'PropertiesPrint':False MyAlg.MyGaudiTool DEBUG Property ['Name': Value] = 'ErrorsPrint':True MyAlg.MyGaudiTool DEBUG Property ['Name': Value] = 'RootInTES':'' @@ -214,18 +202,12 @@ ToolSvc.ToolA DEBUG Property update for OutputLevel : new value = 2 ToolSvc.ToolA DEBUG Initialize ToolSvc.ToolA DEBUG Initialize base class GaudiCommon<AlgTool> ToolSvc.ToolA DEBUG could not locate CounterSummarySvc, no counter summary will be made -ToolSvc.ToolA DEBUG List of ALL properties of TestTool/ToolSvc.ToolA #properties = 26 +ToolSvc.ToolA DEBUG List of ALL properties of TestTool/ToolSvc.ToolA #properties = 19 ToolSvc.ToolA DEBUG Property ['Name': Value] = 'Tools':[ 'TestTool/ToolB' ] ToolSvc.ToolA DEBUG Property ['Name': Value] = 'ContextService':'AlgContextSvc' -ToolSvc.ToolA DEBUG Property ['Name': Value] = 'StatEntityList':[ ] ToolSvc.ToolA DEBUG Property ['Name': Value] = 'CounterList':[ '.*' ] -ToolSvc.ToolA DEBUG Property ['Name': Value] = 'UseEfficiencyRowFormat':True -ToolSvc.ToolA DEBUG Property ['Name': Value] = 'EfficiencyRowFormat':' |*%|-48.48s|%|50t||%|10d| |%|11.5g| |(%|#9.6g| +- %|-#9.6g|)%%| ------- | ------- |' -ToolSvc.ToolA DEBUG Property ['Name': Value] = 'RegularRowFormat':' | %|-48.48s|%|50t||%|10d| |%|11.7g| |%|#11.5g| |%|#11.5g| |%|#12.5g| |%|#12.5g| |' -ToolSvc.ToolA DEBUG Property ['Name': Value] = 'StatTableHeader':' | Counter | # | sum | mean/eff^* | rms/err^* | min | max |' ToolSvc.ToolA DEBUG Property ['Name': Value] = 'Context':'' ToolSvc.ToolA DEBUG Property ['Name': Value] = 'TypePrint':True -ToolSvc.ToolA DEBUG Property ['Name': Value] = 'PrintEmptyCounters':False ToolSvc.ToolA DEBUG Property ['Name': Value] = 'PropertiesPrint':False ToolSvc.ToolA DEBUG Property ['Name': Value] = 'ErrorsPrint':True ToolSvc.ToolA DEBUG Property ['Name': Value] = 'RootInTES':'' @@ -245,18 +227,12 @@ ToolSvc.ToolB DEBUG Property update for OutputLevel : new value = 2 ToolSvc.ToolB DEBUG Initialize ToolSvc.ToolB DEBUG Initialize base class GaudiCommon<AlgTool> ToolSvc.ToolB DEBUG could not locate CounterSummarySvc, no counter summary will be made -ToolSvc.ToolB DEBUG List of ALL properties of TestTool/ToolSvc.ToolB #properties = 26 +ToolSvc.ToolB DEBUG List of ALL properties of TestTool/ToolSvc.ToolB #properties = 19 ToolSvc.ToolB DEBUG Property ['Name': Value] = 'Tools':[ 'TestTool/ToolA' ] ToolSvc.ToolB DEBUG Property ['Name': Value] = 'ContextService':'AlgContextSvc' -ToolSvc.ToolB DEBUG Property ['Name': Value] = 'StatEntityList':[ ] ToolSvc.ToolB DEBUG Property ['Name': Value] = 'CounterList':[ '.*' ] -ToolSvc.ToolB DEBUG Property ['Name': Value] = 'UseEfficiencyRowFormat':True -ToolSvc.ToolB DEBUG Property ['Name': Value] = 'EfficiencyRowFormat':' |*%|-48.48s|%|50t||%|10d| |%|11.5g| |(%|#9.6g| +- %|-#9.6g|)%%| ------- | ------- |' -ToolSvc.ToolB DEBUG Property ['Name': Value] = 'RegularRowFormat':' | %|-48.48s|%|50t||%|10d| |%|11.7g| |%|#11.5g| |%|#11.5g| |%|#12.5g| |%|#12.5g| |' -ToolSvc.ToolB DEBUG Property ['Name': Value] = 'StatTableHeader':' | Counter | # | sum | mean/eff^* | rms/err^* | min | max |' ToolSvc.ToolB DEBUG Property ['Name': Value] = 'Context':'' ToolSvc.ToolB DEBUG Property ['Name': Value] = 'TypePrint':True -ToolSvc.ToolB DEBUG Property ['Name': Value] = 'PrintEmptyCounters':False ToolSvc.ToolB DEBUG Property ['Name': Value] = 'PropertiesPrint':False ToolSvc.ToolB DEBUG Property ['Name': Value] = 'ErrorsPrint':True ToolSvc.ToolB DEBUG Property ['Name': Value] = 'RootInTES':'' diff --git a/GaudiExamples/tests/qmtest/refs/AlgTools_pyopts.ref b/GaudiExamples/tests/qmtest/refs/AlgTools_pyopts.ref index 52df511309f646fb8d7293310e44c0b87f12711b..5cf2a3e1b5ddb7092def9b986aea93fa9bf5a1bb 100644 --- a/GaudiExamples/tests/qmtest/refs/AlgTools_pyopts.ref +++ b/GaudiExamples/tests/qmtest/refs/AlgTools_pyopts.ref @@ -1,6 +1,6 @@ # setting LC_ALL to "C" -# --> Including file '/project/bfys/graven/master/Gaudi/GaudiExamples/options/AlgTools.py' -# <-- End of file '/project/bfys/graven/master/Gaudi/GaudiExamples/options/AlgTools.py' +# --> Including file '/builds/gaudi/Gaudi/GaudiExamples/options/AlgTools.py' +# <-- End of file '/builds/gaudi/Gaudi/GaudiExamples/options/AlgTools.py' # applying configuration of GaudiExamplesCommonConf # /***** User GaudiExamplesCommonConf/GaudiExamplesCommonConf **************************************** # |-OutputLevel = 3 @@ -8,8 +8,8 @@ # \----- (End of User GaudiExamplesCommonConf/GaudiExamplesCommonConf) ------------------------------- ApplicationMgr SUCCESS ==================================================================================================================================== - Welcome to ApplicationMgr (GaudiCoreSvc v32r1) - running on stbc-i1.nikhef.nl on Thu Aug 22 00:54:58 2019 + Welcome to ApplicationMgr (GaudiCoreSvc v34r1) + running on runner-7f-zqs17-project-38-concurrent-0 on Mon Oct 19 16:15:59 2020 ==================================================================================================================================== ApplicationMgr INFO Application Manager Configured successfully StatusCodeSvc INFO initialize @@ -101,18 +101,12 @@ ToolSvc.ToolA DEBUG Property update for OutputLevel : new value = 2 ToolSvc.ToolA DEBUG Initialize ToolSvc.ToolA DEBUG Initialize base class GaudiCommon<AlgTool> ToolSvc.ToolA DEBUG could not locate CounterSummarySvc, no counter summary will be made -ToolSvc.ToolA DEBUG List of ALL properties of TestTool/ToolSvc.ToolA #properties = 26 +ToolSvc.ToolA DEBUG List of ALL properties of TestTool/ToolSvc.ToolA #properties = 19 ToolSvc.ToolA DEBUG Property ['Name': Value] = 'Tools':[ 'TestTool/ToolB' ] ToolSvc.ToolA DEBUG Property ['Name': Value] = 'ContextService':'AlgContextSvc' -ToolSvc.ToolA DEBUG Property ['Name': Value] = 'StatEntityList':[ ] ToolSvc.ToolA DEBUG Property ['Name': Value] = 'CounterList':[ '.*' ] -ToolSvc.ToolA DEBUG Property ['Name': Value] = 'UseEfficiencyRowFormat':True -ToolSvc.ToolA DEBUG Property ['Name': Value] = 'EfficiencyRowFormat':' |*%|-48.48s|%|50t||%|10d| |%|11.5g| |(%|#9.6g| +- %|-#9.6g|)%%| ------- | ------- |' -ToolSvc.ToolA DEBUG Property ['Name': Value] = 'RegularRowFormat':' | %|-48.48s|%|50t||%|10d| |%|11.7g| |%|#11.5g| |%|#11.5g| |%|#12.5g| |%|#12.5g| |' -ToolSvc.ToolA DEBUG Property ['Name': Value] = 'StatTableHeader':' | Counter | # | sum | mean/eff^* | rms/err^* | min | max |' ToolSvc.ToolA DEBUG Property ['Name': Value] = 'Context':'' ToolSvc.ToolA DEBUG Property ['Name': Value] = 'TypePrint':True -ToolSvc.ToolA DEBUG Property ['Name': Value] = 'PrintEmptyCounters':False ToolSvc.ToolA DEBUG Property ['Name': Value] = 'PropertiesPrint':False ToolSvc.ToolA DEBUG Property ['Name': Value] = 'ErrorsPrint':True ToolSvc.ToolA DEBUG Property ['Name': Value] = 'RootInTES':'' @@ -132,18 +126,12 @@ ToolSvc.ToolB DEBUG Property update for OutputLevel : new value = 2 ToolSvc.ToolB DEBUG Initialize ToolSvc.ToolB DEBUG Initialize base class GaudiCommon<AlgTool> ToolSvc.ToolB DEBUG could not locate CounterSummarySvc, no counter summary will be made -ToolSvc.ToolB DEBUG List of ALL properties of TestTool/ToolSvc.ToolB #properties = 26 +ToolSvc.ToolB DEBUG List of ALL properties of TestTool/ToolSvc.ToolB #properties = 19 ToolSvc.ToolB DEBUG Property ['Name': Value] = 'Tools':[ 'TestTool/ToolA' ] ToolSvc.ToolB DEBUG Property ['Name': Value] = 'ContextService':'AlgContextSvc' -ToolSvc.ToolB DEBUG Property ['Name': Value] = 'StatEntityList':[ ] ToolSvc.ToolB DEBUG Property ['Name': Value] = 'CounterList':[ '.*' ] -ToolSvc.ToolB DEBUG Property ['Name': Value] = 'UseEfficiencyRowFormat':True -ToolSvc.ToolB DEBUG Property ['Name': Value] = 'EfficiencyRowFormat':' |*%|-48.48s|%|50t||%|10d| |%|11.5g| |(%|#9.6g| +- %|-#9.6g|)%%| ------- | ------- |' -ToolSvc.ToolB DEBUG Property ['Name': Value] = 'RegularRowFormat':' | %|-48.48s|%|50t||%|10d| |%|11.7g| |%|#11.5g| |%|#11.5g| |%|#12.5g| |%|#12.5g| |' -ToolSvc.ToolB DEBUG Property ['Name': Value] = 'StatTableHeader':' | Counter | # | sum | mean/eff^* | rms/err^* | min | max |' ToolSvc.ToolB DEBUG Property ['Name': Value] = 'Context':'' ToolSvc.ToolB DEBUG Property ['Name': Value] = 'TypePrint':True -ToolSvc.ToolB DEBUG Property ['Name': Value] = 'PrintEmptyCounters':False ToolSvc.ToolB DEBUG Property ['Name': Value] = 'PropertiesPrint':False ToolSvc.ToolB DEBUG Property ['Name': Value] = 'ErrorsPrint':True ToolSvc.ToolB DEBUG Property ['Name': Value] = 'RootInTES':'' diff --git a/GaudiExamples/tests/qmtest/refs/EvtColsEx/Write.ref b/GaudiExamples/tests/qmtest/refs/EvtColsEx/Write.ref index 5d50ecc2f814564a94abba473295ab82b1457f5e..4c8b4fea95e05d44ac42f5016577343f6c071780 100644 --- a/GaudiExamples/tests/qmtest/refs/EvtColsEx/Write.ref +++ b/GaudiExamples/tests/qmtest/refs/EvtColsEx/Write.ref @@ -1,5 +1,6 @@ -# --> Including file '/build1/leggett/git/leggett/Gaudi/GaudiExamples/options/EvtColsEx/Write.py' -# <-- End of file '/build1/leggett/git/leggett/Gaudi/GaudiExamples/options/EvtColsEx/Write.py' +# setting LC_ALL to "C" +# --> Including file '/builds/gaudi/Gaudi/GaudiExamples/options/EvtColsEx/Write.py' +# <-- End of file '/builds/gaudi/Gaudi/GaudiExamples/options/EvtColsEx/Write.py' # applying configuration of GaudiPersistency # /***** User GaudiPersistency/GaudiPersistency ****************************************************** # |-<no properties> @@ -22,15 +23,15 @@ 'Fill': {'EvtColLUN': 'EVTCOLS'}} ApplicationMgr SUCCESS ==================================================================================================================================== - Welcome to ApplicationMgr (GaudiCoreSvc v28r1) - running on p05614910w96644.cern.ch on Tue Jan 17 22:52:01 2017 + Welcome to ApplicationMgr (GaudiCoreSvc v34r1) + running on runner-7f-zqs17-project-38-concurrent-0 on Mon Oct 19 16:15:01 2020 ==================================================================================================================================== ApplicationMgr INFO Application Manager Configured successfully RndmGenSvc.Engine INFO Generator engine type:CLHEP::RanluxEngine RndmGenSvc.Engine INFO Current Seed:1234567 Luxury:3 RndmGenSvc INFO Using Random engine:HepRndm::Engine<CLHEP::RanluxEngine> EvtTupleSvc INFO Added stream file:PFN:EvtColsEx.tags as EVTCOLS -Fill SUCCESS List of ALL properties of Gaudi::Examples::EvtColAlg/Fill #properties = 65 +Fill SUCCESS List of ALL properties of Gaudi::Examples::EvtColAlg/Fill #properties = 57 Fill SUCCESS Property ['Name': Value] = 'EvtColDir':'Fill' Fill SUCCESS Property ['Name': Value] = 'EvtColTopDir':'' Fill SUCCESS Property ['Name': Value] = 'EvtColLUN':'EVTCOLS' @@ -62,18 +63,13 @@ Fill SUCCESS Property ['Name': Value] = 'HistoPrint':False Fill SUCCESS Property ['Name': Value] = 'HistoProduce':True Fill SUCCESS Property ['Name': Value] = 'RequireObjects':[ ] Fill SUCCESS Property ['Name': Value] = 'VetoObjects':[ ] -Fill SUCCESS Property ['Name': Value] = 'StatEntityList':[ ] Fill SUCCESS Property ['Name': Value] = 'CounterList':[ '.*' ] -Fill SUCCESS Property ['Name': Value] = 'UseEfficiencyRowFormat':True -Fill SUCCESS Property ['Name': Value] = 'EfficiencyRowFormat':' |*%|-48.48s|%|50t||%|10d| |%|11.5g| |(%|#9.6g| +- %|-#9.6g|)%%| ------- | ------- |' -Fill SUCCESS Property ['Name': Value] = 'RegularRowFormat':' | %|-48.48s|%|50t||%|10d| |%|11.7g| |%|#11.5g| |%|#11.5g| |%|#12.5g| |%|#12.5g| |' -Fill SUCCESS Property ['Name': Value] = 'StatTableHeader':' | Counter | # | sum | mean/eff^* | rms/err^* | min | max |' -Fill SUCCESS Property ['Name': Value] = 'RootInTES':'' Fill SUCCESS Property ['Name': Value] = 'Context':'' Fill SUCCESS Property ['Name': Value] = 'TypePrint':False -Fill SUCCESS Property ['Name': Value] = 'PrintEmptyCounters':False Fill SUCCESS Property ['Name': Value] = 'PropertiesPrint':True Fill SUCCESS Property ['Name': Value] = 'ErrorsPrint':True +Fill SUCCESS Property ['Name': Value] = 'RootInTES':'' +Fill SUCCESS Property ['Name': Value] = 'FilterCircularDependencies':True Fill SUCCESS Property ['Name': Value] = 'Blocking':False Fill SUCCESS Property ['Name': Value] = 'NeededResources':[ ] Fill SUCCESS Property ['Name': Value] = 'Cardinality':1 @@ -93,13 +89,12 @@ Fill SUCCESS Property ['Name': Value] = 'Enable':True Fill SUCCESS Property ['Name': Value] = 'OutputLevel':3 Fill SUCCESS Property ['Name': Value] = 'ExtraOutputs':[] Fill SUCCESS Property ['Name': Value] = 'ExtraInputs':[] -HistogramPersis...WARNING Histograms saving not required. EventPersistenc... INFO Added successfully Conversion service:RootCnvSvc EventSelector INFO Stream:EventSelector.DataStreamTool_1 Def:DATAFILE='PFN:EvtColsEx.dst' SVC='Gaudi::RootEvtSelector' OPT='READ' ApplicationMgr INFO Application Manager Initialized successfully ApplicationMgr INFO Application Manager Started successfully EventSelector SUCCESS Reading Event record 1. Record number within stream 1: 1 -IODataManager INFO Referring to dataset EvtColsEx.tags by its file ID:5C96012E-FFDC-E611-9318-001E67ABF0AC +IODataManager INFO Referring to dataset EvtColsEx.tags by its file ID:7B48E574-1215-11EB-95AF-0242AC110005 Gaudi::RootData... INFO Recreate Database file:PFN:EvtColsEx.tags as /EVTCOLS EventSelector SUCCESS Reading Event record 1001. Record number within stream 1: 1001 EventSelector SUCCESS Reading Event record 2001. Record number within stream 1: 2001 @@ -156,9 +151,9 @@ Fill SUCCESS Booked 0 N-Tuples and 1 Event Tag Collections Fill SUCCESS List of booked Event Tag Collections in directory "EVTCOLS/Fill" Fill SUCCESS ID=COL1 Title="The most trivial Event Tag Collection" #items=10 {Address,evtNum,runNum,gauss,flat,expo,breit,poisson,binom,flag} Items:{ 'Address' : 'IOpaqueAddress*' , 'binom' : 'I' , 'breit' : 'D' , 'evtNum' : 'I' , 'expo' : 'D' , 'flag' : 'I' , 'flat' : 'D' , 'gauss' : 'D' , 'poisson' : 'I' , 'runNum' : 'I' } EventLoopMgr INFO Histograms converted successfully according to request. -RootCnvSvc INFO Disconnected data IO:84255519-FFDC-E611-B178-001E67ABF0AC [EvtColsEx.dst] +RootCnvSvc INFO Disconnected data IO:72E30EDC-1215-11EB-8949-0242AC110005 [EvtColsEx.dst] ToolSvc INFO Removing all tools created by ToolSvc EvtTupleSvc INFO NTuples saved successfully -EvtTupleSvc.EVT... INFO Disconnected data IO:5C96012E-FFDC-E611-9318-001E67ABF0AC [EvtColsEx.tags] +EvtTupleSvc.EVT... INFO Disconnected data IO:7B48E574-1215-11EB-95AF-0242AC110005 [EvtColsEx.tags] ApplicationMgr INFO Application Manager Finalized successfully ApplicationMgr INFO Application Manager Terminated successfully diff --git a/GaudiExamples/tests/qmtest/refs/GaudiCommonTests.ref b/GaudiExamples/tests/qmtest/refs/GaudiCommonTests.ref index b6dc34e0bfbbf61d59cf774d58c6daa3778766fb..6cce5263907d8878f2942a43cf93bef0d3e8fb0a 100644 --- a/GaudiExamples/tests/qmtest/refs/GaudiCommonTests.ref +++ b/GaudiExamples/tests/qmtest/refs/GaudiCommonTests.ref @@ -1,8 +1,8 @@ -JobOptionsSvc INFO # =======> /builds/clemenci/Gaudi/GaudiExamples/options/Services.opts +JobOptionsSvc INFO # =======> /builds/gaudi/Gaudi/GaudiExamples/options/Services.opts JobOptionsSvc INFO # (12,1): AuditorSvc.Auditors = ["ChronoAuditor"] -JobOptionsSvc INFO # =======> /builds/clemenci/Gaudi/GaudiExamples/options/Common.opts +JobOptionsSvc INFO # =======> /builds/gaudi/Gaudi/GaudiExamples/options/Common.opts JobOptionsSvc INFO # (9,1): ApplicationMgr.StatusCodeCheck = 1 -JobOptionsSvc INFO # =======> /builds/clemenci/Gaudi/GaudiExamples/options/GaudiCommonTests.opts +JobOptionsSvc INFO # =======> /builds/gaudi/Gaudi/GaudiExamples/options/GaudiCommonTests.opts JobOptionsSvc INFO # (9,1): EventDataSvc.ForceLeaves = 1 JobOptionsSvc INFO # (10,1): EventDataSvc.RootCLID = 1 JobOptionsSvc INFO # (17,1): MessageSvc.OutputLevel = 3 @@ -23,29 +23,23 @@ JobOptionsSvc INFO # (35,1): Seq2.RootInTES = "microDST" JobOptionsSvc INFO # (40,1): ApplicationMgr.EvtMax = 1 JobOptionsSvc INFO # (41,1): ApplicationMgr.EvtSel = "NONE" JobOptionsSvc INFO # (42,1): ApplicationMgr.HistogramPersistency = "NONE" -JobOptionsSvc INFO Job options successfully read in from /builds/clemenci/Gaudi/GaudiExamples/options/GaudiCommonTests.opts +JobOptionsSvc INFO Job options successfully read in from /builds/gaudi/Gaudi/GaudiExamples/options/GaudiCommonTests.opts ApplicationMgr SUCCESS ==================================================================================================================================== - Welcome to Gaudi version v31r0 - running on marco-XPS-13 on Fri Oct 18 16:21:28 2019 + Welcome to ApplicationMgr (GaudiCoreSvc v34r1) + running on runner-7f-zqs17-project-38-concurrent-0 on Mon Oct 19 16:16:42 2020 ==================================================================================================================================== ApplicationMgr INFO Application Manager Configured successfully StatusCodeSvc INFO initialize Test1 DEBUG Property update for OutputLevel : new value = 2 Test1 DEBUG Initialize base class GaudiCommon<Algorithm> Test1 DEBUG could not locate CounterSummarySvc, no counter summary will be made -Test1 DEBUG List of ALL properties of GaudiCommonTests/Test1 #properties = 35 +Test1 DEBUG List of ALL properties of GaudiCommonTests/Test1 #properties = 28 Test1 DEBUG Property ['Name': Value] = 'RequireObjects':[ ] Test1 DEBUG Property ['Name': Value] = 'VetoObjects':[ ] -Test1 DEBUG Property ['Name': Value] = 'StatEntityList':[ ] Test1 DEBUG Property ['Name': Value] = 'CounterList':[ '.*' ] -Test1 DEBUG Property ['Name': Value] = 'UseEfficiencyRowFormat':True -Test1 DEBUG Property ['Name': Value] = 'EfficiencyRowFormat':' |*%|-48.48s|%|50t||%|10d| |%|11.5g| |(%|#9.6g| +- %|-#9.6g|)%%| ------- | ------- |' -Test1 DEBUG Property ['Name': Value] = 'RegularRowFormat':' | %|-48.48s|%|50t||%|10d| |%|11.7g| |%|#11.5g| |%|#11.5g| |%|#12.5g| |%|#12.5g| |' -Test1 DEBUG Property ['Name': Value] = 'StatTableHeader':' | Counter | # | sum | mean/eff^* | rms/err^* | min | max |' Test1 DEBUG Property ['Name': Value] = 'Context':'' Test1 DEBUG Property ['Name': Value] = 'TypePrint':True -Test1 DEBUG Property ['Name': Value] = 'PrintEmptyCounters':False Test1 DEBUG Property ['Name': Value] = 'PropertiesPrint':False Test1 DEBUG Property ['Name': Value] = 'ErrorsPrint':True Test1 DEBUG Property ['Name': Value] = 'RootInTES':'' @@ -75,18 +69,12 @@ Test1 DEBUG Data Deps for Test1 Test2 DEBUG Property update for OutputLevel : new value = 2 Test2 DEBUG Initialize base class GaudiCommon<Algorithm> Test2 DEBUG could not locate CounterSummarySvc, no counter summary will be made -Test2 DEBUG List of ALL properties of GaudiCommonTests/Test2 #properties = 35 +Test2 DEBUG List of ALL properties of GaudiCommonTests/Test2 #properties = 28 Test2 DEBUG Property ['Name': Value] = 'RequireObjects':[ ] Test2 DEBUG Property ['Name': Value] = 'VetoObjects':[ ] -Test2 DEBUG Property ['Name': Value] = 'StatEntityList':[ ] Test2 DEBUG Property ['Name': Value] = 'CounterList':[ '.*' ] -Test2 DEBUG Property ['Name': Value] = 'UseEfficiencyRowFormat':True -Test2 DEBUG Property ['Name': Value] = 'EfficiencyRowFormat':' |*%|-48.48s|%|50t||%|10d| |%|11.5g| |(%|#9.6g| +- %|-#9.6g|)%%| ------- | ------- |' -Test2 DEBUG Property ['Name': Value] = 'RegularRowFormat':' | %|-48.48s|%|50t||%|10d| |%|11.7g| |%|#11.5g| |%|#11.5g| |%|#12.5g| |%|#12.5g| |' -Test2 DEBUG Property ['Name': Value] = 'StatTableHeader':' | Counter | # | sum | mean/eff^* | rms/err^* | min | max |' Test2 DEBUG Property ['Name': Value] = 'Context':'' Test2 DEBUG Property ['Name': Value] = 'TypePrint':True -Test2 DEBUG Property ['Name': Value] = 'PrintEmptyCounters':False Test2 DEBUG Property ['Name': Value] = 'PropertiesPrint':False Test2 DEBUG Property ['Name': Value] = 'ErrorsPrint':True Test2 DEBUG Property ['Name': Value] = 'RootInTES':'microDST/' @@ -117,22 +105,16 @@ Seq1 INFO Member list: GaudiCommonTests/Test3 RndmGenSvc.Engine INFO Generator engine type:CLHEP::RanluxEngine RndmGenSvc.Engine INFO Current Seed:1234567 Luxury:3 RndmGenSvc INFO Using Random engine:HepRndm::Engine<CLHEP::RanluxEngine> -ToolSvc.Sequenc... INFO This machine has a speed about 3.45 times the speed of a 2.8 GHz Xeon. +ToolSvc.Sequenc... INFO This machine has a speed about 3.03 times the speed of a 2.8 GHz Xeon. Test3 DEBUG Property update for OutputLevel : new value = 2 Test3 DEBUG Initialize base class GaudiCommon<Algorithm> Test3 DEBUG could not locate CounterSummarySvc, no counter summary will be made -Test3 DEBUG List of ALL properties of GaudiCommonTests/Test3 #properties = 35 +Test3 DEBUG List of ALL properties of GaudiCommonTests/Test3 #properties = 28 Test3 DEBUG Property ['Name': Value] = 'RequireObjects':[ ] Test3 DEBUG Property ['Name': Value] = 'VetoObjects':[ ] -Test3 DEBUG Property ['Name': Value] = 'StatEntityList':[ ] Test3 DEBUG Property ['Name': Value] = 'CounterList':[ '.*' ] -Test3 DEBUG Property ['Name': Value] = 'UseEfficiencyRowFormat':True -Test3 DEBUG Property ['Name': Value] = 'EfficiencyRowFormat':' |*%|-48.48s|%|50t||%|10d| |%|11.5g| |(%|#9.6g| +- %|-#9.6g|)%%| ------- | ------- |' -Test3 DEBUG Property ['Name': Value] = 'RegularRowFormat':' | %|-48.48s|%|50t||%|10d| |%|11.7g| |%|#11.5g| |%|#11.5g| |%|#12.5g| |%|#12.5g| |' -Test3 DEBUG Property ['Name': Value] = 'StatTableHeader':' | Counter | # | sum | mean/eff^* | rms/err^* | min | max |' Test3 DEBUG Property ['Name': Value] = 'Context':'' Test3 DEBUG Property ['Name': Value] = 'TypePrint':True -Test3 DEBUG Property ['Name': Value] = 'PrintEmptyCounters':False Test3 DEBUG Property ['Name': Value] = 'PropertiesPrint':False Test3 DEBUG Property ['Name': Value] = 'ErrorsPrint':True Test3 DEBUG Property ['Name': Value] = 'RootInTES':'' @@ -163,18 +145,12 @@ Seq2 INFO Member list: GaudiCommonTests/Test4, with rootInTES 'm Test4 DEBUG Property update for OutputLevel : new value = 2 Test4 DEBUG Initialize base class GaudiCommon<Algorithm> Test4 DEBUG could not locate CounterSummarySvc, no counter summary will be made -Test4 DEBUG List of ALL properties of GaudiCommonTests/Test4 #properties = 35 +Test4 DEBUG List of ALL properties of GaudiCommonTests/Test4 #properties = 28 Test4 DEBUG Property ['Name': Value] = 'RequireObjects':[ ] Test4 DEBUG Property ['Name': Value] = 'VetoObjects':[ ] -Test4 DEBUG Property ['Name': Value] = 'StatEntityList':[ ] Test4 DEBUG Property ['Name': Value] = 'CounterList':[ '.*' ] -Test4 DEBUG Property ['Name': Value] = 'UseEfficiencyRowFormat':True -Test4 DEBUG Property ['Name': Value] = 'EfficiencyRowFormat':' |*%|-48.48s|%|50t||%|10d| |%|11.5g| |(%|#9.6g| +- %|-#9.6g|)%%| ------- | ------- |' -Test4 DEBUG Property ['Name': Value] = 'RegularRowFormat':' | %|-48.48s|%|50t||%|10d| |%|11.7g| |%|#11.5g| |%|#11.5g| |%|#12.5g| |%|#12.5g| |' -Test4 DEBUG Property ['Name': Value] = 'StatTableHeader':' | Counter | # | sum | mean/eff^* | rms/err^* | min | max |' Test4 DEBUG Property ['Name': Value] = 'Context':'' Test4 DEBUG Property ['Name': Value] = 'TypePrint':True -Test4 DEBUG Property ['Name': Value] = 'PrintEmptyCounters':False Test4 DEBUG Property ['Name': Value] = 'PropertiesPrint':False Test4 DEBUG Property ['Name': Value] = 'ErrorsPrint':True Test4 DEBUG Property ['Name': Value] = 'RootInTES':'microDST/' diff --git a/GaudiExamples/tests/qmtest/refs/Histograms.ref b/GaudiExamples/tests/qmtest/refs/Histograms.ref index 714d825b7fc0abf5075420d456d97bc3d5d98aaa..af1541cd5e2bdc4718f2f5654baf03d2d847b980 100644 --- a/GaudiExamples/tests/qmtest/refs/Histograms.ref +++ b/GaudiExamples/tests/qmtest/refs/Histograms.ref @@ -1,16 +1,16 @@ # setting LC_ALL to "C" -# --> Including file '/home/sponce/dev4/Gaudi/GaudiExamples/options/Histograms.py' -# <-- End of file '/home/sponce/dev4/Gaudi/GaudiExamples/options/Histograms.py' +# --> Including file '/builds/gaudi/Gaudi/GaudiExamples/options/Histograms.py' +# <-- End of file '/builds/gaudi/Gaudi/GaudiExamples/options/Histograms.py' ApplicationMgr SUCCESS ==================================================================================================================================== - Welcome to ApplicationMgr (GaudiCoreSvc v34r0) - running on lblhcbpr11.cern.ch on Fri Sep 25 16:09:52 2020 + Welcome to ApplicationMgr (GaudiCoreSvc v34r1) + running on runner-7f-zqs17-project-38-concurrent-0 on Mon Oct 19 16:16:56 2020 ==================================================================================================================================== ApplicationMgr INFO Application Manager Configured successfully SimpleHistos DEBUG Property update for OutputLevel : new value = 2 SimpleHistos DEBUG Initialize base class GaudiCommon<Algorithm> SimpleHistos DEBUG could not locate CounterSummarySvc, no counter summary will be made -SimpleHistos DEBUG List of ALL properties of GaudiHistoAlgorithm/SimpleHistos #properties = 49 +SimpleHistos DEBUG List of ALL properties of GaudiHistoAlgorithm/SimpleHistos #properties = 43 SimpleHistos DEBUG Property ['Name': Value] = 'AutoStringIDPurgeMap':{ '/' : '=SLASH=' } SimpleHistos DEBUG Property ['Name': Value] = 'UseSequencialNumericAutoIDs':False SimpleHistos DEBUG Property ['Name': Value] = 'HeaderFor1DHistoTable':'| Title | # | Mean | RMS | Skewness | Kurtosis |' @@ -28,15 +28,9 @@ SimpleHistos DEBUG Property ['Name': Value] = 'HistoPrint':True SimpleHistos DEBUG Property ['Name': Value] = 'HistoProduce':True SimpleHistos DEBUG Property ['Name': Value] = 'RequireObjects':[ ] SimpleHistos DEBUG Property ['Name': Value] = 'VetoObjects':[ ] -SimpleHistos DEBUG Property ['Name': Value] = 'StatEntityList':[ ] SimpleHistos DEBUG Property ['Name': Value] = 'CounterList':[ '.*' ] -SimpleHistos DEBUG Property ['Name': Value] = 'UseEfficiencyRowFormat':True -SimpleHistos DEBUG Property ['Name': Value] = 'EfficiencyRowFormat':' |*%|-48.48s|%|50t||%|10d| |%|11.5g| |(%|#9.6g| +- %|-#9.6g|)%%| ------- | ------- |' -SimpleHistos DEBUG Property ['Name': Value] = 'RegularRowFormat':' | %|-48.48s|%|50t||%|10d| |%|11.7g| |%|#11.5g| |%|#11.5g| |%|#12.5g| |%|#12.5g| |' -SimpleHistos DEBUG Property ['Name': Value] = 'StatTableHeader':' | Counter | # | sum | mean/eff^* | rms/err^* | min | max |' SimpleHistos DEBUG Property ['Name': Value] = 'Context':'' SimpleHistos DEBUG Property ['Name': Value] = 'TypePrint':True -SimpleHistos DEBUG Property ['Name': Value] = 'PrintEmptyCounters':False SimpleHistos DEBUG Property ['Name': Value] = 'PropertiesPrint':False SimpleHistos DEBUG Property ['Name': Value] = 'ErrorsPrint':True SimpleHistos DEBUG Property ['Name': Value] = 'RootInTES':'' @@ -189,11 +183,11 @@ EventLoopMgr INFO Histograms converted successfully according to request *****Chrono***** INFO **************************************************************************************************** *****Chrono***** INFO The Final CPU consumption ( Chrono ) Table (ordered) *****Chrono***** INFO **************************************************************************************************** -1DForcedAlphaID INFO Time User : Tot= 10 [ms] Ave/Min/Max= 0.0002(+- 0.0447)/ 0/ 10 [ms] #=49999 -1DForcedNumericID INFO Time User : Tot= 40 [ms] Ave/Min/Max= 0.0008(+- 0.0894)/ 0/ 10 [ms] #=49999 -1DAutoID INFO Time User : Tot= 60 [ms] Ave/Min/Max= 0.0012(+- 0.11)/ 0/ 10 [ms] #=49999 -1DOldStyle INFO Time User : Tot= 80 [ms] Ave/Min/Max= 0.0016(+- 0.126)/ 0/ 10 [ms] #=49999 -ChronoStatSvc INFO Time User : Tot= 2.9 [s] #= 1 +1DOldStyle INFO Time User : Tot= 30 [ms] Ave/Min/Max= 0.0006(+- 0.0775)/ 0/ 10 [ms] #=49999 +1DForcedAlphaID INFO Time User : Tot= 80 [ms] Ave/Min/Max= 0.0016(+- 0.126)/ 0/ 10 [ms] #=49999 +1DAutoID INFO Time User : Tot= 100 [ms] Ave/Min/Max= 0.002(+- 0.141)/ 0/ 10 [ms] #=49999 +1DForcedNumericID INFO Time User : Tot= 120 [ms] Ave/Min/Max= 0.0024(+- 0.155)/ 0/ 10 [ms] #=49999 +ChronoStatSvc INFO Time User : Tot= 3.34 [s] #= 1 *****Chrono***** INFO **************************************************************************************************** ChronoStatSvc.f... INFO Service finalized successfully ApplicationMgr INFO Application Manager Finalized successfully diff --git a/GaudiExamples/tests/qmtest/refs/Histograms_opts.ref b/GaudiExamples/tests/qmtest/refs/Histograms_opts.ref index 8c7870f8fe21d1d768397c6166e2140a726d48e7..a425d3c0edd560fe6c70c3783fb2f937f8df0640 100644 --- a/GaudiExamples/tests/qmtest/refs/Histograms_opts.ref +++ b/GaudiExamples/tests/qmtest/refs/Histograms_opts.ref @@ -1,4 +1,4 @@ -JobOptionsSvc INFO # =======> /home/sponce/dev4/Gaudi/GaudiExamples/options/Histograms.opts +JobOptionsSvc INFO # =======> /builds/gaudi/Gaudi/GaudiExamples/options/Histograms.opts JobOptionsSvc INFO # (5,1): AuditorSvc.Auditors = ["ChronoAuditor"] JobOptionsSvc INFO # (9,1): MessageSvc.OutputLevel = 3 JobOptionsSvc INFO # (20,1): ApplicationMgr.TopAlg += ["GaudiHistoAlgorithm/SimpleHistos"] @@ -19,17 +19,17 @@ JobOptionsSvc INFO # (48,1): ApplicationMgr.ExtSvc = ["Gaudi::Monitoring: JobOptionsSvc INFO # (49,1): RootHistSvc.OutputFile = "histo-opts.root" JobOptionsSvc INFO # (60,1): HistogramDataSvc.Predefined1DHistos = {"/stat/Histos2/2":["TEST2", -100, 200]} JobOptionsSvc INFO # (64,1): HistogramDataSvc.OutputLevel = 2 -JobOptionsSvc INFO Job options successfully read in from /home/sponce/dev4/Gaudi/GaudiExamples/options/Histograms.opts +JobOptionsSvc INFO Job options successfully read in from /builds/gaudi/Gaudi/GaudiExamples/options/Histograms.opts ApplicationMgr SUCCESS ==================================================================================================================================== - Welcome to ApplicationMgr (GaudiCoreSvc v34r0) - running on lblhcbpr11.cern.ch on Fri Sep 25 16:09:51 2020 + Welcome to ApplicationMgr (GaudiCoreSvc v34r1) + running on runner-7f-zqs17-project-38-concurrent-0 on Mon Oct 19 16:17:00 2020 ==================================================================================================================================== ApplicationMgr INFO Application Manager Configured successfully SimpleHistos DEBUG Property update for OutputLevel : new value = 2 SimpleHistos DEBUG Initialize base class GaudiCommon<Algorithm> SimpleHistos DEBUG could not locate CounterSummarySvc, no counter summary will be made -SimpleHistos DEBUG List of ALL properties of GaudiHistoAlgorithm/SimpleHistos #properties = 49 +SimpleHistos DEBUG List of ALL properties of GaudiHistoAlgorithm/SimpleHistos #properties = 43 SimpleHistos DEBUG Property ['Name': Value] = 'AutoStringIDPurgeMap':{ '/' : '=SLASH=' } SimpleHistos DEBUG Property ['Name': Value] = 'UseSequencialNumericAutoIDs':False SimpleHistos DEBUG Property ['Name': Value] = 'HeaderFor1DHistoTable':'| Title | # | Mean | RMS | Skewness | Kurtosis |' @@ -47,15 +47,9 @@ SimpleHistos DEBUG Property ['Name': Value] = 'HistoPrint':True SimpleHistos DEBUG Property ['Name': Value] = 'HistoProduce':True SimpleHistos DEBUG Property ['Name': Value] = 'RequireObjects':[ ] SimpleHistos DEBUG Property ['Name': Value] = 'VetoObjects':[ ] -SimpleHistos DEBUG Property ['Name': Value] = 'StatEntityList':[ ] SimpleHistos DEBUG Property ['Name': Value] = 'CounterList':[ '.*' ] -SimpleHistos DEBUG Property ['Name': Value] = 'UseEfficiencyRowFormat':True -SimpleHistos DEBUG Property ['Name': Value] = 'EfficiencyRowFormat':' |*%|-48.48s|%|50t||%|10d| |%|11.5g| |(%|#9.6g| +- %|-#9.6g|)%%| ------- | ------- |' -SimpleHistos DEBUG Property ['Name': Value] = 'RegularRowFormat':' | %|-48.48s|%|50t||%|10d| |%|11.7g| |%|#11.5g| |%|#11.5g| |%|#12.5g| |%|#12.5g| |' -SimpleHistos DEBUG Property ['Name': Value] = 'StatTableHeader':' | Counter | # | sum | mean/eff^* | rms/err^* | min | max |' SimpleHistos DEBUG Property ['Name': Value] = 'Context':'' SimpleHistos DEBUG Property ['Name': Value] = 'TypePrint':True -SimpleHistos DEBUG Property ['Name': Value] = 'PrintEmptyCounters':False SimpleHistos DEBUG Property ['Name': Value] = 'PropertiesPrint':False SimpleHistos DEBUG Property ['Name': Value] = 'ErrorsPrint':True SimpleHistos DEBUG Property ['Name': Value] = 'RootInTES':'' @@ -89,7 +83,7 @@ SimpleHistos DEBUG GaudiHistoAlgorithm:: The histogram path is set to be SimpleHistos DEBUG input handles: 0 SimpleHistos DEBUG output handles: 0 SimpleHistos DEBUG Data Deps for SimpleHistos -Histos2 SUCCESS List of ALL properties of Gaudi::Examples::HistoProps/Histos2 #properties = 51 +Histos2 SUCCESS List of ALL properties of Gaudi::Examples::HistoProps/Histos2 #properties = 45 Histos2 SUCCESS Property ['Name': Value] = 'Histo2':('',-5.00000,5.00000,200) Histos2 SUCCESS Property ['Name': Value] = 'Histo1':('Histogram1',-3.00000,3.00000,200) Histos2 SUCCESS Property ['Name': Value] = 'AutoStringIDPurgeMap':{ '/' : '=SLASH=' } @@ -109,15 +103,9 @@ Histos2 SUCCESS Property ['Name': Value] = 'HistoPrint':True Histos2 SUCCESS Property ['Name': Value] = 'HistoProduce':True Histos2 SUCCESS Property ['Name': Value] = 'RequireObjects':[ ] Histos2 SUCCESS Property ['Name': Value] = 'VetoObjects':[ ] -Histos2 SUCCESS Property ['Name': Value] = 'StatEntityList':[ ] Histos2 SUCCESS Property ['Name': Value] = 'CounterList':[ '.*' ] -Histos2 SUCCESS Property ['Name': Value] = 'UseEfficiencyRowFormat':True -Histos2 SUCCESS Property ['Name': Value] = 'EfficiencyRowFormat':' |*%|-48.48s|%|50t||%|10d| |%|11.5g| |(%|#9.6g| +- %|-#9.6g|)%%| ------- | ------- |' -Histos2 SUCCESS Property ['Name': Value] = 'RegularRowFormat':' | %|-48.48s|%|50t||%|10d| |%|11.7g| |%|#11.5g| |%|#11.5g| |%|#12.5g| |%|#12.5g| |' -Histos2 SUCCESS Property ['Name': Value] = 'StatTableHeader':' | Counter | # | sum | mean/eff^* | rms/err^* | min | max |' Histos2 SUCCESS Property ['Name': Value] = 'Context':'' Histos2 SUCCESS Property ['Name': Value] = 'TypePrint':True -Histos2 SUCCESS Property ['Name': Value] = 'PrintEmptyCounters':False Histos2 SUCCESS Property ['Name': Value] = 'PropertiesPrint':True Histos2 SUCCESS Property ['Name': Value] = 'ErrorsPrint':True Histos2 SUCCESS Property ['Name': Value] = 'RootInTES':'' @@ -264,11 +252,11 @@ EventLoopMgr INFO Histograms converted successfully according to request *****Chrono***** INFO **************************************************************************************************** *****Chrono***** INFO The Final CPU consumption ( Chrono ) Table (ordered) *****Chrono***** INFO **************************************************************************************************** -1DAutoID INFO Time User : Tot= 40 [ms] Ave/Min/Max= 0.0008(+- 0.0894)/ 0/ 10 [ms] #=49999 -1DOldStyle INFO Time User : Tot= 50 [ms] Ave/Min/Max= 0.001(+- 0.1)/ 0/ 10 [ms] #=49999 -1DForcedNumericID INFO Time User : Tot= 60 [ms] Ave/Min/Max= 0.0012(+- 0.11)/ 0/ 10 [ms] #=49999 -1DForcedAlphaID INFO Time User : Tot= 40 [ms] Ave/Min/Max= 0.0008(+- 0.0894)/ 0/ 10 [ms] #=49999 -ChronoStatSvc INFO Time User : Tot= 1.28 [s] #= 1 +1DAutoID INFO Time User : Tot= 20 [ms] Ave/Min/Max= 0.0004(+- 0.0632)/ 0/ 10 [ms] #=49999 +1DOldStyle INFO Time User : Tot= 60 [ms] Ave/Min/Max= 0.0012(+- 0.11)/ 0/ 10 [ms] #=49999 +1DForcedNumericID INFO Time User : Tot= 100 [ms] Ave/Min/Max= 0.002(+- 0.141)/ 0/ 10 [ms] #=49999 +1DForcedAlphaID INFO Time User : Tot= 50 [ms] Ave/Min/Max= 0.001(+- 0.1)/ 0/ 10 [ms] #=49999 +ChronoStatSvc INFO Time User : Tot= 1.18 [s] #= 1 *****Chrono***** INFO **************************************************************************************************** ChronoStatSvc.f... INFO Service finalized successfully HistogramDataSvc DEBUG Substituted histograms #1 : diff --git a/GaudiExamples/tests/qmtest/refs/MetaDataSvc.ref b/GaudiExamples/tests/qmtest/refs/MetaDataSvc.ref index 35db38824ac06edbab5d6d17bce34f57d7d34cbd..b259e2d98c5f080134910066a5791d737bb2b701 100644 --- a/GaudiExamples/tests/qmtest/refs/MetaDataSvc.ref +++ b/GaudiExamples/tests/qmtest/refs/MetaDataSvc.ref @@ -1,10 +1,10 @@ # setting LC_ALL to "C" -# --> Including file '/bld2/leggett/work/git/leggett/Gaudi/GaudiExamples/options/TupleEx.py' -# <-- End of file '/bld2/leggett/work/git/leggett/Gaudi/GaudiExamples/options/TupleEx.py' -ApplicationMgr SUCCESS +# --> Including file '/builds/gaudi/Gaudi/GaudiExamples/options/TupleEx.py' +# <-- End of file '/builds/gaudi/Gaudi/GaudiExamples/options/TupleEx.py' +ApplicationMgr SUCCESS ==================================================================================================================================== - Welcome to ApplicationMgr (GaudiCoreSvc v34r0) - running on zeus on Thu Sep 24 13:29:48 2020 + Welcome to ApplicationMgr (GaudiCoreSvc v34r1) + running on runner-7f-zqs17-project-38-concurrent-0 on Mon Oct 19 16:17:14 2020 ==================================================================================================================================== ApplicationMgr INFO Application Manager Configured successfully RndmGenSvc.Engine INFO Generator engine type:CLHEP::RanluxEngine @@ -15,7 +15,7 @@ Gaudi::MetaDataSvc DEBUG Service base class initialized successfully RootHistSvc INFO Writing ROOT histograms to: UndefinedROOTOutputFileName HistogramPersis... INFO Added successfully Conversion service:RootHistSvc NTupleSvc INFO Added stream file:TupleEx_with_metadata.root as MYLUN -EventLoopMgr WARNING Unable to locate service "EventSelector" +EventLoopMgr WARNING Unable to locate service "EventSelector" EventLoopMgr WARNING No events will be processed from external input. ApplicationMgr INFO Application Manager Initialized successfully Gaudi::MetaDataSvc DEBUG started @@ -221,7 +221,7 @@ JobOptionsSvc.PATH:'../options/job.opts' JobOptionsSvc.PYTHONACTION:'' JobOptionsSvc.PYTHONPARAMS:'' JobOptionsSvc.ReportUnused:False -JobOptionsSvc.SEARCHPATH:'/bld2/leggett/work/git/leggett/Gaudi/GaudiExamples/tests/qmtest:/bld2/leggett/work/git/leggett/Gaudi/GaudiExamples/options' +JobOptionsSvc.SEARCHPATH:'/builds/gaudi/Gaudi/GaudiExamples/tests/qmtest:/builds/gaudi/Gaudi/GaudiExamples/options' JobOptionsSvc.TYPE:'NONE' MessageSvc.AuditFinalize:False MessageSvc.AuditInitialize:False @@ -362,7 +362,6 @@ Tuple.Blocking:False Tuple.Cardinality:1 Tuple.Context:'' Tuple.CounterList:[ '.*' ] -Tuple.EfficiencyRowFormat:' |*%|-48.48s|%|50t||%|10d| |%|11.5g| |(%|#9.6g| +- %|-#9.6g|)%%| ------- | ------- |' Tuple.Enable:True Tuple.ErrorMax:1 Tuple.ErrorsPrint:True @@ -398,18 +397,13 @@ Tuple.NTupleSplitDir:False Tuple.NTupleTopDir:'' Tuple.NeededResources:[ ] Tuple.OutputLevel:3 -Tuple.PrintEmptyCounters:False Tuple.PropertiesPrint:False Tuple.RegisterForContextService:True -Tuple.RegularRowFormat:' | %|-48.48s|%|50t||%|10d| |%|11.7g| |%|#11.5g| |%|#11.5g| |%|#12.5g| |%|#12.5g| |' Tuple.RequireObjects:[ ] Tuple.RootInTES:'' Tuple.ShortFormatFor1DHistoTable:' | %1$-25.25s %2%' -Tuple.StatEntityList:[ ] -Tuple.StatTableHeader:' | Counter | # | sum | mean/eff^* | rms/err^* | min | max |' Tuple.Timeline:False Tuple.TypePrint:True -Tuple.UseEfficiencyRowFormat:True Tuple.UseSequencialNumericAutoIDs:False Tuple.VetoObjects:[ ] Tuple2.AuditAlgorithms:False @@ -425,7 +419,6 @@ Tuple2.Blocking:False Tuple2.Cardinality:1 Tuple2.Context:'' Tuple2.CounterList:[ '.*' ] -Tuple2.EfficiencyRowFormat:' |*%|-48.48s|%|50t||%|10d| |%|11.5g| |(%|#9.6g| +- %|-#9.6g|)%%| ------- | ------- |' Tuple2.Enable:True Tuple2.ErrorMax:1 Tuple2.ErrorsPrint:True @@ -461,18 +454,13 @@ Tuple2.NTupleSplitDir:False Tuple2.NTupleTopDir:'' Tuple2.NeededResources:[ ] Tuple2.OutputLevel:3 -Tuple2.PrintEmptyCounters:False Tuple2.PropertiesPrint:False Tuple2.RegisterForContextService:True -Tuple2.RegularRowFormat:' | %|-48.48s|%|50t||%|10d| |%|11.7g| |%|#11.5g| |%|#11.5g| |%|#12.5g| |%|#12.5g| |' Tuple2.RequireObjects:[ ] Tuple2.RootInTES:'' Tuple2.ShortFormatFor1DHistoTable:' | %1$-25.25s %2%' -Tuple2.StatEntityList:[ ] -Tuple2.StatTableHeader:' | Counter | # | sum | mean/eff^* | rms/err^* | min | max |' Tuple2.Timeline:False Tuple2.TypePrint:True -Tuple2.UseEfficiencyRowFormat:True Tuple2.UseSequencialNumericAutoIDs:False Tuple2.VetoObjects:[ ] Tuple3.AuditAlgorithms:False @@ -488,7 +476,6 @@ Tuple3.Blocking:False Tuple3.Cardinality:1 Tuple3.Context:'' Tuple3.CounterList:[ '.*' ] -Tuple3.EfficiencyRowFormat:' |*%|-48.48s|%|50t||%|10d| |%|11.5g| |(%|#9.6g| +- %|-#9.6g|)%%| ------- | ------- |' Tuple3.Enable:True Tuple3.ErrorMax:1 Tuple3.ErrorsPrint:True @@ -524,18 +511,13 @@ Tuple3.NTupleSplitDir:False Tuple3.NTupleTopDir:'' Tuple3.NeededResources:[ ] Tuple3.OutputLevel:3 -Tuple3.PrintEmptyCounters:False Tuple3.PropertiesPrint:False Tuple3.RegisterForContextService:True -Tuple3.RegularRowFormat:' | %|-48.48s|%|50t||%|10d| |%|11.7g| |%|#11.5g| |%|#11.5g| |%|#12.5g| |%|#12.5g| |' Tuple3.RequireObjects:[ ] Tuple3.RootInTES:'' Tuple3.ShortFormatFor1DHistoTable:' | %1$-25.25s %2%' -Tuple3.StatEntityList:[ ] -Tuple3.StatTableHeader:' | Counter | # | sum | mean/eff^* | rms/err^* | min | max |' Tuple3.Timeline:False Tuple3.TypePrint:True -Tuple3.UseEfficiencyRowFormat:True Tuple3.UseSequencialNumericAutoIDs:False Tuple3.VetoObjects:[ ] diff --git a/GaudiExamples/tests/qmtest/refs/ROOT_IO/ExtCollWrite.ref b/GaudiExamples/tests/qmtest/refs/ROOT_IO/ExtCollWrite.ref index 8fd6cfc1b90e327fa49e9a54829bcaf07d6a05bc..80f3e0baa9e39789a8a01feb2d140de555842ecc 100644 --- a/GaudiExamples/tests/qmtest/refs/ROOT_IO/ExtCollWrite.ref +++ b/GaudiExamples/tests/qmtest/refs/ROOT_IO/ExtCollWrite.ref @@ -1,5 +1,6 @@ -# --> Including file '/build1/leggett/git/leggett/Gaudi/GaudiExamples/options/ROOT_IO/ExtCollWrite.py' -# <-- End of file '/build1/leggett/git/leggett/Gaudi/GaudiExamples/options/ROOT_IO/ExtCollWrite.py' +# setting LC_ALL to "C" +# --> Including file '/builds/gaudi/Gaudi/GaudiExamples/options/ROOT_IO/ExtCollWrite.py' +# <-- End of file '/builds/gaudi/Gaudi/GaudiExamples/options/ROOT_IO/ExtCollWrite.py' # applying configuration of GaudiPersistency # /***** User GaudiPersistency/GaudiPersistency ****************************************************** # |-<no properties> @@ -26,8 +27,8 @@ 'ToolSvc.SequencerTimerTool': {'OutputLevel': 4}} ApplicationMgr SUCCESS ==================================================================================================================================== - Welcome to ApplicationMgr (GaudiCoreSvc v28r1) - running on p05614910w96644.cern.ch on Wed Jan 18 01:43:37 2017 + Welcome to ApplicationMgr (GaudiCoreSvc v34r1) + running on runner-7f-zqs17-project-38-concurrent-0 on Mon Oct 19 16:15:08 2020 ==================================================================================================================================== ApplicationMgr INFO Application Manager Configured successfully EvtTupleSvc INFO Added stream file:PFN:ROOT_IO.etags as EXTEVT @@ -35,7 +36,7 @@ EventAlgs INFO Member list: Gaudi::Examples::ExtendedEvtCol/Fill RndmGenSvc.Engine INFO Generator engine type:CLHEP::RanluxEngine RndmGenSvc.Engine INFO Current Seed:1234567 Luxury:3 RndmGenSvc INFO Using Random engine:HepRndm::Engine<CLHEP::RanluxEngine> -Fill SUCCESS List of ALL properties of Gaudi::Examples::ExtendedEvtCol/Fill #properties = 66 +Fill SUCCESS List of ALL properties of Gaudi::Examples::ExtendedEvtCol/Fill #properties = 58 Fill SUCCESS Property ['Name': Value] = 'Tracks':'MyTracks' Fill SUCCESS Property ['Name': Value] = 'EvtColDir':'Fill' Fill SUCCESS Property ['Name': Value] = 'EvtColTopDir':'' @@ -68,18 +69,13 @@ Fill SUCCESS Property ['Name': Value] = 'HistoPrint':False Fill SUCCESS Property ['Name': Value] = 'HistoProduce':True Fill SUCCESS Property ['Name': Value] = 'RequireObjects':[ ] Fill SUCCESS Property ['Name': Value] = 'VetoObjects':[ ] -Fill SUCCESS Property ['Name': Value] = 'StatEntityList':[ ] Fill SUCCESS Property ['Name': Value] = 'CounterList':[ '.*' ] -Fill SUCCESS Property ['Name': Value] = 'UseEfficiencyRowFormat':True -Fill SUCCESS Property ['Name': Value] = 'EfficiencyRowFormat':' |*%|-48.48s|%|50t||%|10d| |%|11.5g| |(%|#9.6g| +- %|-#9.6g|)%%| ------- | ------- |' -Fill SUCCESS Property ['Name': Value] = 'RegularRowFormat':' | %|-48.48s|%|50t||%|10d| |%|11.7g| |%|#11.5g| |%|#11.5g| |%|#12.5g| |%|#12.5g| |' -Fill SUCCESS Property ['Name': Value] = 'StatTableHeader':' | Counter | # | sum | mean/eff^* | rms/err^* | min | max |' -Fill SUCCESS Property ['Name': Value] = 'RootInTES':'' Fill SUCCESS Property ['Name': Value] = 'Context':'' Fill SUCCESS Property ['Name': Value] = 'TypePrint':False -Fill SUCCESS Property ['Name': Value] = 'PrintEmptyCounters':False Fill SUCCESS Property ['Name': Value] = 'PropertiesPrint':True Fill SUCCESS Property ['Name': Value] = 'ErrorsPrint':True +Fill SUCCESS Property ['Name': Value] = 'RootInTES':'' +Fill SUCCESS Property ['Name': Value] = 'FilterCircularDependencies':True Fill SUCCESS Property ['Name': Value] = 'Blocking':False Fill SUCCESS Property ['Name': Value] = 'NeededResources':[ ] Fill SUCCESS Property ['Name': Value] = 'Cardinality':1 @@ -99,13 +95,13 @@ Fill SUCCESS Property ['Name': Value] = 'Enable':True Fill SUCCESS Property ['Name': Value] = 'OutputLevel':3 Fill SUCCESS Property ['Name': Value] = 'ExtraOutputs':[] Fill SUCCESS Property ['Name': Value] = 'ExtraInputs':[] -HistogramPersis...WARNING Histograms saving not required. EventPersistenc... INFO Added successfully Conversion service:RootCnvSvc EventSelector INFO Stream:EventSelector.DataStreamTool_1 Def:DATAFILE='PFN:ROOTIO.dst' SVC='Gaudi::RootEvtSelector' OPT='READ' ApplicationMgr INFO Application Manager Initialized successfully ApplicationMgr INFO Application Manager Started successfully FileRecordPersi... INFO Added successfully Conversion service:RootCnvSvc EventSelector SUCCESS Reading Event record 1. Record number within stream 1: 1 +IODataManager INFO Referring to dataset ROOT_IO.etags by its file ID:7F71277E-1215-11EB-ABB4-0242AC110005 Gaudi::RootData... INFO Recreate Database file:PFN:ROOT_IO.etags as /EXTEVT EventSelector SUCCESS Reading Event record 101. Record number within stream 1: 101 EventSelector SUCCESS Reading Event record 201. Record number within stream 1: 201 @@ -133,11 +129,11 @@ Fill SUCCESS Booked 0 N-Tuples and 1 Event Tag Collections Fill SUCCESS List of booked Event Tag Collections in directory "EXTEVT/Fill" Fill SUCCESS ID=MyCOL1 Title="Trivial Event Tag Collection" #items=8 {Address,Ntrack,TrkMom[1]/V,px[1]/V,py[1]/V,pz[1]/V,Energy,Track} Items:{ 'Address' : 'IOpaqueAddress*' , 'Energy' : 'D' , 'Ntrack' : 'I' , 'Track' : 'Gaudi::Examples::MyTrack*' , 'TrkMom' : 'FArray' , 'px' : 'FArray' , 'py' : 'FArray' , 'pz' : 'FArray' } EventLoopMgr INFO Histograms converted successfully according to request. -RootCnvSvc INFO Disconnected data IO:3E8CCA3C-FFDC-E611-83AB-001E67ABF0AC [ROOTIO.dst] -RootCnvSvc INFO Disconnected data IO:A856E63C-FFDC-E611-83AB-001E67ABF0AC [ROOTIO.mdst] +RootCnvSvc INFO Disconnected data IO:72E446BC-1215-11EB-9FC3-0242AC110005 [ROOTIO.dst] +RootCnvSvc INFO Disconnected data IO:72F71788-1215-11EB-9FC3-0242AC110005 [ROOTIO.mdst] ToolSvc INFO Removing all tools created by ToolSvc EvtTupleSvc INFO NTuples saved successfully -EvtTupleSvc.EXTEVT INFO Disconnected data IO:B86B1DA4-FFDC-E611-A3F7-001E67ABF0AC [ROOT_IO.etags] +EvtTupleSvc.EXTEVT INFO Disconnected data IO:7F71277E-1215-11EB-ABB4-0242AC110005 [ROOT_IO.etags] ApplicationMgr INFO Application Manager Finalized successfully ApplicationMgr INFO Application Manager Terminated successfully Number of MyTrack instances:18 diff --git a/GaudiExamples/tests/qmtest/refs/conditional_output/write.ref b/GaudiExamples/tests/qmtest/refs/conditional_output/write.ref index 132690787785da7b329ac11ee6d0d29c524f37f3..34f4b0d7cac9e398f63e70ed6e98e6bee0467a4e 100644 --- a/GaudiExamples/tests/qmtest/refs/conditional_output/write.ref +++ b/GaudiExamples/tests/qmtest/refs/conditional_output/write.ref @@ -1,6 +1,6 @@ # setting LC_ALL to "C" -# --> Including file '/project/bfys/graven/master/Gaudi/GaudiExamples/options/ConditionalOutput/Write.py' -# <-- End of file '/project/bfys/graven/master/Gaudi/GaudiExamples/options/ConditionalOutput/Write.py' +# --> Including file '/builds/gaudi/Gaudi/GaudiExamples/options/ConditionalOutput/Write.py' +# <-- End of file '/builds/gaudi/Gaudi/GaudiExamples/options/ConditionalOutput/Write.py' # applying configuration of GaudiPersistency # /***** User GaudiPersistency/GaudiPersistency ****************************************************** # |-<no properties> @@ -31,8 +31,8 @@ 'RootCnvSvc': {'OutputLevel': 3}} ApplicationMgr SUCCESS ==================================================================================================================================== - Welcome to ApplicationMgr (GaudiCoreSvc v31r0) - running on stbc-i5.nikhef.nl on Wed May 15 16:52:38 2019 + Welcome to ApplicationMgr (GaudiCoreSvc v34r1) + running on runner-7f-zqs17-project-38-concurrent-0 on Mon Oct 19 16:15:00 2020 ==================================================================================================================================== ApplicationMgr INFO Application Manager Configured successfully ServiceManager DEBUG Initializing service FileRecordDataSvc @@ -71,20 +71,14 @@ DataCreator VERBOSE ServiceLocatorHelper::service: found service TimelineS DataCreator VERBOSE ServiceLocatorHelper::service: found service EventDataSvc DataCreator DEBUG Initialize base class GaudiCommon<Algorithm> DataCreator DEBUG could not locate CounterSummarySvc, no counter summary will be made -DataCreator DEBUG List of ALL properties of GaudiTesting::PutDataObjectAlg/DataCreator #properties = 37 +DataCreator DEBUG List of ALL properties of GaudiTesting::PutDataObjectAlg/DataCreator #properties = 30 DataCreator DEBUG Property ['Name': Value] = 'DataSvc':'EventDataSvc' DataCreator DEBUG Property ['Name': Value] = 'Paths':[ 'A' , 'B' , 'C' , 'D' ] DataCreator DEBUG Property ['Name': Value] = 'RequireObjects':[ ] DataCreator DEBUG Property ['Name': Value] = 'VetoObjects':[ ] -DataCreator DEBUG Property ['Name': Value] = 'StatEntityList':[ ] DataCreator DEBUG Property ['Name': Value] = 'CounterList':[ '.*' ] -DataCreator DEBUG Property ['Name': Value] = 'UseEfficiencyRowFormat':True -DataCreator DEBUG Property ['Name': Value] = 'EfficiencyRowFormat':' |*%|-48.48s|%|50t||%|10d| |%|11.5g| |(%|#9.6g| +- %|-#9.6g|)%%| ------- | ------- |' -DataCreator DEBUG Property ['Name': Value] = 'RegularRowFormat':' | %|-48.48s|%|50t||%|10d| |%|11.7g| |%|#11.5g| |%|#11.5g| |%|#12.5g| |%|#12.5g| |' -DataCreator DEBUG Property ['Name': Value] = 'StatTableHeader':' | Counter | # | sum | mean/eff^* | rms/err^* | min | max |' DataCreator DEBUG Property ['Name': Value] = 'Context':'' DataCreator DEBUG Property ['Name': Value] = 'TypePrint':True -DataCreator DEBUG Property ['Name': Value] = 'PrintEmptyCounters':False DataCreator DEBUG Property ['Name': Value] = 'PropertiesPrint':False DataCreator DEBUG Property ['Name': Value] = 'ErrorsPrint':True DataCreator DEBUG Property ['Name': Value] = 'RootInTES':'' @@ -121,18 +115,12 @@ OddEvents VERBOSE ServiceLocatorHelper::service: found service TimelineS OddEvents VERBOSE ServiceLocatorHelper::service: found service EventDataSvc OddEvents DEBUG Initialize base class GaudiCommon<Algorithm> OddEvents DEBUG could not locate CounterSummarySvc, no counter summary will be made -OddEvents DEBUG List of ALL properties of GaudiTesting::OddEventsFilter/OddEvents #properties = 35 +OddEvents DEBUG List of ALL properties of GaudiTesting::OddEventsFilter/OddEvents #properties = 28 OddEvents DEBUG Property ['Name': Value] = 'RequireObjects':[ ] OddEvents DEBUG Property ['Name': Value] = 'VetoObjects':[ ] -OddEvents DEBUG Property ['Name': Value] = 'StatEntityList':[ ] OddEvents DEBUG Property ['Name': Value] = 'CounterList':[ '.*' ] -OddEvents DEBUG Property ['Name': Value] = 'UseEfficiencyRowFormat':True -OddEvents DEBUG Property ['Name': Value] = 'EfficiencyRowFormat':' |*%|-48.48s|%|50t||%|10d| |%|11.5g| |(%|#9.6g| +- %|-#9.6g|)%%| ------- | ------- |' -OddEvents DEBUG Property ['Name': Value] = 'RegularRowFormat':' | %|-48.48s|%|50t||%|10d| |%|11.7g| |%|#11.5g| |%|#11.5g| |%|#12.5g| |%|#12.5g| |' -OddEvents DEBUG Property ['Name': Value] = 'StatTableHeader':' | Counter | # | sum | mean/eff^* | rms/err^* | min | max |' OddEvents DEBUG Property ['Name': Value] = 'Context':'' OddEvents DEBUG Property ['Name': Value] = 'TypePrint':True -OddEvents DEBUG Property ['Name': Value] = 'PrintEmptyCounters':False OddEvents DEBUG Property ['Name': Value] = 'PropertiesPrint':False OddEvents DEBUG Property ['Name': Value] = 'ErrorsPrint':True OddEvents DEBUG Property ['Name': Value] = 'RootInTES':'' @@ -167,18 +155,12 @@ EvenEvents VERBOSE ServiceLocatorHelper::service: found service TimelineS EvenEvents VERBOSE ServiceLocatorHelper::service: found service EventDataSvc EvenEvents DEBUG Initialize base class GaudiCommon<Algorithm> EvenEvents DEBUG could not locate CounterSummarySvc, no counter summary will be made -EvenEvents DEBUG List of ALL properties of GaudiTesting::EvenEventsFilter/EvenEvents #properties = 35 +EvenEvents DEBUG List of ALL properties of GaudiTesting::EvenEventsFilter/EvenEvents #properties = 28 EvenEvents DEBUG Property ['Name': Value] = 'RequireObjects':[ ] EvenEvents DEBUG Property ['Name': Value] = 'VetoObjects':[ ] -EvenEvents DEBUG Property ['Name': Value] = 'StatEntityList':[ ] EvenEvents DEBUG Property ['Name': Value] = 'CounterList':[ '.*' ] -EvenEvents DEBUG Property ['Name': Value] = 'UseEfficiencyRowFormat':True -EvenEvents DEBUG Property ['Name': Value] = 'EfficiencyRowFormat':' |*%|-48.48s|%|50t||%|10d| |%|11.5g| |(%|#9.6g| +- %|-#9.6g|)%%| ------- | ------- |' -EvenEvents DEBUG Property ['Name': Value] = 'RegularRowFormat':' | %|-48.48s|%|50t||%|10d| |%|11.7g| |%|#11.5g| |%|#11.5g| |%|#12.5g| |%|#12.5g| |' -EvenEvents DEBUG Property ['Name': Value] = 'StatTableHeader':' | Counter | # | sum | mean/eff^* | rms/err^* | min | max |' EvenEvents DEBUG Property ['Name': Value] = 'Context':'' EvenEvents DEBUG Property ['Name': Value] = 'TypePrint':True -EvenEvents DEBUG Property ['Name': Value] = 'PrintEmptyCounters':False EvenEvents DEBUG Property ['Name': Value] = 'PropertiesPrint':False EvenEvents DEBUG Property ['Name': Value] = 'ErrorsPrint':True EvenEvents DEBUG Property ['Name': Value] = 'RootInTES':'' @@ -273,71 +255,73 @@ DataCreator INFO Adding 'A' DataCreator INFO Adding 'B' DataCreator INFO Adding 'C' DataCreator INFO Adding 'D' -OutputStream DEBUG Algorithm 'OddEvents' fired. Adding [0x35c5e20, 0x35248e0, 0x1cc22b0, 0x36232a0] +OutputStream DEBUG Algorithm 'OddEvents' fired. Adding [0x3d1b920, 0x3dfa1b0, 0x3d84b60, 0xd1d920] +FileCatalog DEBUG No writable file catalog found which contains FID:7A20D486-1215-11EB-92B3-0242AC110005 +IODataManager INFO Referring to dataset ConditionalOutput.dst by its file ID:7A20D486-1215-11EB-92B3-0242AC110005 AlgExecStateSvc VERBOSE reset(0) DataCreator INFO Adding 4 objects to EventDataSvc DataCreator INFO Adding 'A' DataCreator INFO Adding 'B' DataCreator INFO Adding 'C' DataCreator INFO Adding 'D' -OutputStream DEBUG Algorithm 'EvenEvents' fired. Adding [0x384ce10, 0x3623c70, 0x35c5a20, 0x3965ad0] +OutputStream DEBUG Algorithm 'EvenEvents' fired. Adding [0x3d1b520, 0x41101e0, 0x3dfc430, 0x41118d0] AlgExecStateSvc VERBOSE reset(0) DataCreator INFO Adding 4 objects to EventDataSvc DataCreator INFO Adding 'A' DataCreator INFO Adding 'B' DataCreator INFO Adding 'C' DataCreator INFO Adding 'D' -OutputStream DEBUG Algorithm 'OddEvents' fired. Adding [0x35c5e20, 0x35248e0, 0x1cc22b0, 0x36232a0] +OutputStream DEBUG Algorithm 'OddEvents' fired. Adding [0x3d1b920, 0x3dfa1b0, 0x3d84b60, 0xd1d920] AlgExecStateSvc VERBOSE reset(0) DataCreator INFO Adding 4 objects to EventDataSvc DataCreator INFO Adding 'A' DataCreator INFO Adding 'B' DataCreator INFO Adding 'C' DataCreator INFO Adding 'D' -OutputStream DEBUG Algorithm 'EvenEvents' fired. Adding [0x384ce10, 0x3623c70, 0x35c5a20, 0x3965ad0] +OutputStream DEBUG Algorithm 'EvenEvents' fired. Adding [0x3d1b520, 0x41101e0, 0x3dfc430, 0x41118d0] AlgExecStateSvc VERBOSE reset(0) DataCreator INFO Adding 4 objects to EventDataSvc DataCreator INFO Adding 'A' DataCreator INFO Adding 'B' DataCreator INFO Adding 'C' DataCreator INFO Adding 'D' -OutputStream DEBUG Algorithm 'OddEvents' fired. Adding [0x35c5e20, 0x35248e0, 0x1cc22b0, 0x36232a0] +OutputStream DEBUG Algorithm 'OddEvents' fired. Adding [0x3d1b920, 0x3dfa1b0, 0x3d84b60, 0xd1d920] AlgExecStateSvc VERBOSE reset(0) DataCreator INFO Adding 4 objects to EventDataSvc DataCreator INFO Adding 'A' DataCreator INFO Adding 'B' DataCreator INFO Adding 'C' DataCreator INFO Adding 'D' -OutputStream DEBUG Algorithm 'EvenEvents' fired. Adding [0x384ce10, 0x3623c70, 0x35c5a20, 0x3965ad0] +OutputStream DEBUG Algorithm 'EvenEvents' fired. Adding [0x3d1b520, 0x41101e0, 0x3dfc430, 0x41118d0] AlgExecStateSvc VERBOSE reset(0) DataCreator INFO Adding 4 objects to EventDataSvc DataCreator INFO Adding 'A' DataCreator INFO Adding 'B' DataCreator INFO Adding 'C' DataCreator INFO Adding 'D' -OutputStream DEBUG Algorithm 'OddEvents' fired. Adding [0x35c5e20, 0x35248e0, 0x1cc22b0, 0x36232a0] +OutputStream DEBUG Algorithm 'OddEvents' fired. Adding [0x3d1b920, 0x3dfa1b0, 0x3d84b60, 0xd1d920] AlgExecStateSvc VERBOSE reset(0) DataCreator INFO Adding 4 objects to EventDataSvc DataCreator INFO Adding 'A' DataCreator INFO Adding 'B' DataCreator INFO Adding 'C' DataCreator INFO Adding 'D' -OutputStream DEBUG Algorithm 'EvenEvents' fired. Adding [0x384ce10, 0x3623c70, 0x35c5a20, 0x3965ad0] +OutputStream DEBUG Algorithm 'EvenEvents' fired. Adding [0x3d1b520, 0x41101e0, 0x3dfc430, 0x41118d0] AlgExecStateSvc VERBOSE reset(0) DataCreator INFO Adding 4 objects to EventDataSvc DataCreator INFO Adding 'A' DataCreator INFO Adding 'B' DataCreator INFO Adding 'C' DataCreator INFO Adding 'D' -OutputStream DEBUG Algorithm 'OddEvents' fired. Adding [0x35c5e20, 0x35248e0, 0x1cc22b0, 0x36232a0] +OutputStream DEBUG Algorithm 'OddEvents' fired. Adding [0x3d1b920, 0x3dfa1b0, 0x3d84b60, 0xd1d920] AlgExecStateSvc VERBOSE reset(0) DataCreator INFO Adding 4 objects to EventDataSvc DataCreator INFO Adding 'A' DataCreator INFO Adding 'B' DataCreator INFO Adding 'C' DataCreator INFO Adding 'D' -OutputStream DEBUG Algorithm 'EvenEvents' fired. Adding [0x384ce10, 0x3623c70, 0x35c5a20, 0x3965ad0] -EventLoopMgr DEBUG ---> Loop Finished - WSS 134.102 | total time (skipping 1st evt) 2752870 ns +OutputStream DEBUG Algorithm 'EvenEvents' fired. Adding [0x3d1b520, 0x41101e0, 0x3dfc430, 0x41118d0] +EventLoopMgr DEBUG ---> Loop Finished - WSS 323.371 | total time (skipping 1st evt) 1739738 ns ServiceManager DEBUG Stopping service EventLoopMgr ServiceManager DEBUG Stopping service HistogramDataSvc ServiceManager DEBUG Stopping service HistogramPersistencySvc @@ -370,9 +354,10 @@ EventLoopMgr INFO Histograms converted successfully according to request ServiceManager DEBUG Finalizing service HistogramDataSvc ServiceManager DEBUG Finalizing service HistogramPersistencySvc ServiceManager DEBUG Finalizing service RootCnvSvc -RootCnvSvc INFO Disconnected data IO:9227AEE9-2E76-E911-AA27-EC0D9A8B2DAC [ConditionalOutput.dst] +RootCnvSvc INFO Disconnected data IO:7A20D486-1215-11EB-92B3-0242AC110005 [ConditionalOutput.dst] ServiceManager DEBUG Finalizing service IODataManager ServiceManager DEBUG Finalizing service FileCatalog +XMLCatalog INFO File 'ConditionalOutput.xml' does not exist. New file created. ServiceManager DEBUG Finalizing service AlgExecStateSvc ServiceManager DEBUG Finalizing service TimelineSvc ServiceManager DEBUG Finalizing service AlgContextSvc diff --git a/GaudiExamples/tests/qmtest/refs/config2/Histograms.ref b/GaudiExamples/tests/qmtest/refs/config2/Histograms.ref index fe0da314ab1a4eef9f9d56cb931b917180c5a6a8..c28ac15ab7a9df059dcd6270b3eb8547dbe8d2b4 100644 --- a/GaudiExamples/tests/qmtest/refs/config2/Histograms.ref +++ b/GaudiExamples/tests/qmtest/refs/config2/Histograms.ref @@ -1,14 +1,14 @@ # setting LC_ALL to "C" ApplicationMgr SUCCESS ==================================================================================================================================== - Welcome to ApplicationMgr (GaudiCoreSvc v34r0) - running on lblhcbpr11.cern.ch on Fri Sep 25 16:09:52 2020 + Welcome to ApplicationMgr (GaudiCoreSvc v34r1) + running on runner-7f-zqs17-project-38-concurrent-0 on Mon Oct 19 16:16:44 2020 ==================================================================================================================================== ApplicationMgr INFO Application Manager Configured successfully SimpleHistos DEBUG Property update for OutputLevel : new value = 2 SimpleHistos DEBUG Initialize base class GaudiCommon<Algorithm> SimpleHistos DEBUG could not locate CounterSummarySvc, no counter summary will be made -SimpleHistos DEBUG List of ALL properties of GaudiHistoAlgorithm/SimpleHistos #properties = 49 +SimpleHistos DEBUG List of ALL properties of GaudiHistoAlgorithm/SimpleHistos #properties = 43 SimpleHistos DEBUG Property ['Name': Value] = 'AutoStringIDPurgeMap':{ '/' : '=SLASH=' } SimpleHistos DEBUG Property ['Name': Value] = 'UseSequencialNumericAutoIDs':False SimpleHistos DEBUG Property ['Name': Value] = 'HeaderFor1DHistoTable':'| Title | # | Mean | RMS | Skewness | Kurtosis |' @@ -26,15 +26,9 @@ SimpleHistos DEBUG Property ['Name': Value] = 'HistoPrint':True SimpleHistos DEBUG Property ['Name': Value] = 'HistoProduce':True SimpleHistos DEBUG Property ['Name': Value] = 'RequireObjects':[ ] SimpleHistos DEBUG Property ['Name': Value] = 'VetoObjects':[ ] -SimpleHistos DEBUG Property ['Name': Value] = 'StatEntityList':[ ] SimpleHistos DEBUG Property ['Name': Value] = 'CounterList':[ '.*' ] -SimpleHistos DEBUG Property ['Name': Value] = 'UseEfficiencyRowFormat':True -SimpleHistos DEBUG Property ['Name': Value] = 'EfficiencyRowFormat':' |*%|-48.48s|%|50t||%|10d| |%|11.5g| |(%|#9.6g| +- %|-#9.6g|)%%| ------- | ------- |' -SimpleHistos DEBUG Property ['Name': Value] = 'RegularRowFormat':' | %|-48.48s|%|50t||%|10d| |%|11.7g| |%|#11.5g| |%|#11.5g| |%|#12.5g| |%|#12.5g| |' -SimpleHistos DEBUG Property ['Name': Value] = 'StatTableHeader':' | Counter | # | sum | mean/eff^* | rms/err^* | min | max |' SimpleHistos DEBUG Property ['Name': Value] = 'Context':'' SimpleHistos DEBUG Property ['Name': Value] = 'TypePrint':True -SimpleHistos DEBUG Property ['Name': Value] = 'PrintEmptyCounters':False SimpleHistos DEBUG Property ['Name': Value] = 'PropertiesPrint':False SimpleHistos DEBUG Property ['Name': Value] = 'ErrorsPrint':True SimpleHistos DEBUG Property ['Name': Value] = 'RootInTES':'' @@ -181,11 +175,11 @@ EventLoopMgr INFO Histograms converted successfully according to request *****Chrono***** INFO **************************************************************************************************** *****Chrono***** INFO The Final CPU consumption ( Chrono ) Table (ordered) *****Chrono***** INFO **************************************************************************************************** -1DForcedAlphaID INFO Time User : Tot= 20 [ms] Ave/Min/Max= 0.0004(+- 0.0632)/ 0/ 10 [ms] #=49999 -1DForcedNumericID INFO Time User : Tot= 30 [ms] Ave/Min/Max= 0.0006(+- 0.0775)/ 0/ 10 [ms] #=49999 -1DAutoID INFO Time User : Tot= 30 [ms] Ave/Min/Max= 0.0006(+- 0.0775)/ 0/ 10 [ms] #=49999 -1DOldStyle INFO Time User : Tot= 50 [ms] Ave/Min/Max= 0.001(+- 0.1)/ 0/ 10 [ms] #=49999 -ChronoStatSvc INFO Time User : Tot= 1.07 [s] #= 1 +1DForcedAlphaID INFO Time User : Tot= 40 [ms] Ave/Min/Max= 0.0008(+- 0.0894)/ 0/ 10 [ms] #=49999 +1DOldStyle INFO Time User : Tot= 80 [ms] Ave/Min/Max= 0.0016(+- 0.126)/ 0/ 10 [ms] #=49999 +1DAutoID INFO Time User : Tot= 80 [ms] Ave/Min/Max= 0.0016(+- 0.126)/ 0/ 10 [ms] #=49999 +1DForcedNumericID INFO Time User : Tot= 50 [ms] Ave/Min/Max= 0.001(+- 0.1)/ 0/ 10 [ms] #=49999 +ChronoStatSvc INFO Time User : Tot= 1.06 [s] #= 1 *****Chrono***** INFO **************************************************************************************************** ChronoStatSvc.f... INFO Service finalized successfully ApplicationMgr INFO Application Manager Finalized successfully diff --git a/GaudiExamples/tests/qmtest/refs/config2/Histograms_wg.ref b/GaudiExamples/tests/qmtest/refs/config2/Histograms_wg.ref index e65df967b04569db55093cb1c38c6e3e029ac214..08be8f1522f870f0b00ae6f6af85741b153ae954 100644 --- a/GaudiExamples/tests/qmtest/refs/config2/Histograms_wg.ref +++ b/GaudiExamples/tests/qmtest/refs/config2/Histograms_wg.ref @@ -1,16 +1,16 @@ # setting LC_ALL to "C" -# --> Including file '/home/sponce/dev4/Gaudi/GaudiExamples/options/Histograms_with_global.py' -# <-- End of file '/home/sponce/dev4/Gaudi/GaudiExamples/options/Histograms_with_global.py' +# --> Including file '/builds/gaudi/Gaudi/GaudiExamples/options/Histograms_with_global.py' +# <-- End of file '/builds/gaudi/Gaudi/GaudiExamples/options/Histograms_with_global.py' ApplicationMgr SUCCESS ==================================================================================================================================== - Welcome to ApplicationMgr (GaudiCoreSvc v34r0) - running on lblhcbpr11.cern.ch on Fri Sep 25 16:09:52 2020 + Welcome to ApplicationMgr (GaudiCoreSvc v34r1) + running on runner-7f-zqs17-project-38-concurrent-0 on Mon Oct 19 16:16:46 2020 ==================================================================================================================================== ApplicationMgr INFO Application Manager Configured successfully SimpleHistos DEBUG Property update for OutputLevel : new value = 2 SimpleHistos DEBUG Initialize base class GaudiCommon<Algorithm> SimpleHistos DEBUG could not locate CounterSummarySvc, no counter summary will be made -SimpleHistos DEBUG List of ALL properties of GaudiHistoAlgorithm/SimpleHistos #properties = 49 +SimpleHistos DEBUG List of ALL properties of GaudiHistoAlgorithm/SimpleHistos #properties = 43 SimpleHistos DEBUG Property ['Name': Value] = 'AutoStringIDPurgeMap':{ '/' : '=SLASH=' } SimpleHistos DEBUG Property ['Name': Value] = 'UseSequencialNumericAutoIDs':False SimpleHistos DEBUG Property ['Name': Value] = 'HeaderFor1DHistoTable':'| Title | # | Mean | RMS | Skewness | Kurtosis |' @@ -28,15 +28,9 @@ SimpleHistos DEBUG Property ['Name': Value] = 'HistoPrint':True SimpleHistos DEBUG Property ['Name': Value] = 'HistoProduce':True SimpleHistos DEBUG Property ['Name': Value] = 'RequireObjects':[ ] SimpleHistos DEBUG Property ['Name': Value] = 'VetoObjects':[ ] -SimpleHistos DEBUG Property ['Name': Value] = 'StatEntityList':[ ] SimpleHistos DEBUG Property ['Name': Value] = 'CounterList':[ '.*' ] -SimpleHistos DEBUG Property ['Name': Value] = 'UseEfficiencyRowFormat':True -SimpleHistos DEBUG Property ['Name': Value] = 'EfficiencyRowFormat':' |*%|-48.48s|%|50t||%|10d| |%|11.5g| |(%|#9.6g| +- %|-#9.6g|)%%| ------- | ------- |' -SimpleHistos DEBUG Property ['Name': Value] = 'RegularRowFormat':' | %|-48.48s|%|50t||%|10d| |%|11.7g| |%|#11.5g| |%|#11.5g| |%|#12.5g| |%|#12.5g| |' -SimpleHistos DEBUG Property ['Name': Value] = 'StatTableHeader':' | Counter | # | sum | mean/eff^* | rms/err^* | min | max |' SimpleHistos DEBUG Property ['Name': Value] = 'Context':'' SimpleHistos DEBUG Property ['Name': Value] = 'TypePrint':True -SimpleHistos DEBUG Property ['Name': Value] = 'PrintEmptyCounters':False SimpleHistos DEBUG Property ['Name': Value] = 'PropertiesPrint':False SimpleHistos DEBUG Property ['Name': Value] = 'ErrorsPrint':True SimpleHistos DEBUG Property ['Name': Value] = 'RootInTES':'' @@ -191,11 +185,11 @@ EventLoopMgr INFO Histograms converted successfully according to request *****Chrono***** INFO **************************************************************************************************** *****Chrono***** INFO The Final CPU consumption ( Chrono ) Table (ordered) *****Chrono***** INFO **************************************************************************************************** -1DOldStyle INFO Time User : Tot= 40 [ms] Ave/Min/Max= 0.0008(+- 0.0894)/ 0/ 10 [ms] #=49999 -1DForcedNumericID INFO Time User : Tot= 50 [ms] Ave/Min/Max= 0.001(+- 0.1)/ 0/ 10 [ms] #=49999 -1DForcedAlphaID INFO Time User : Tot= 50 [ms] Ave/Min/Max= 0.001(+- 0.1)/ 0/ 10 [ms] #=49999 -1DAutoID INFO Time User : Tot= 60 [ms] Ave/Min/Max= 0.0012(+- 0.11)/ 0/ 10 [ms] #=49999 -ChronoStatSvc INFO Time User : Tot= 2.9 [s] #= 1 +1DAutoID INFO Time User : Tot= 80 [ms] Ave/Min/Max= 0.0016(+- 0.126)/ 0/ 10 [ms] #=49999 +1DForcedAlphaID INFO Time User : Tot= 120 [ms] Ave/Min/Max= 0.0024(+- 0.155)/ 0/ 10 [ms] #=49999 +1DForcedNumericID INFO Time User : Tot= 110 [ms] Ave/Min/Max= 0.0022(+- 0.148)/ 0/ 10 [ms] #=49999 +1DOldStyle INFO Time User : Tot= 130 [ms] Ave/Min/Max= 0.0026(+- 0.161)/ 0/ 10 [ms] #=49999 +ChronoStatSvc INFO Time User : Tot= 3.26 [s] #= 1 *****Chrono***** INFO **************************************************************************************************** ChronoStatSvc.f... INFO Service finalized successfully ApplicationMgr INFO Application Manager Finalized successfully diff --git a/GaudiHive/tests/qmtest/refs/SubSlotVsSlotIsolation.ref b/GaudiHive/tests/qmtest/refs/SubSlotVsSlotIsolation.ref index 5bc616f101dc917e4cbc61a8150d9cc5d615b0e5..4672b05e8f947485e45d9b1e2db8d248ece1f890 100644 --- a/GaudiHive/tests/qmtest/refs/SubSlotVsSlotIsolation.ref +++ b/GaudiHive/tests/qmtest/refs/SubSlotVsSlotIsolation.ref @@ -1,6 +1,6 @@ # setting LC_ALL to "C" -# --> Including file '/workdir/gaudi/GaudiHive/options/SubSlotVsSlotIsolation.py' -# <-- End of file '/workdir/gaudi/GaudiHive/options/SubSlotVsSlotIsolation.py' +# --> Including file '/builds/gaudi/Gaudi/GaudiHive/options/SubSlotVsSlotIsolation.py' +# <-- End of file '/builds/gaudi/Gaudi/GaudiHive/options/SubSlotVsSlotIsolation.py' # Dumping all configurables and properties (different from default) {'A1': {'Cardinality': 1, 'OutputLevel': 2, @@ -56,8 +56,8 @@ MessageSvc INFO Activating in a separate thread ApplicationMgr SUCCESS ==================================================================================================================================== - Welcome to ApplicationMgr (GaudiCoreSvc v33r1) - running on cbab1f0b7ae0 on Wed May 20 17:52:22 2020 + Welcome to ApplicationMgr (GaudiCoreSvc v34r1) + running on runner-7f-zqs17-project-38-concurrent-0 on Mon Oct 19 16:18:29 2020 ==================================================================================================================================== ApplicationMgr INFO Application Manager Configured successfully HiveSlimEventLo... DEBUG Property update for OutputLevel : new value = 2 @@ -71,7 +71,6 @@ createViewSeq DEBUG Property update for OutputLevel : new value = 1 createViewSeq VERBOSE ServiceLocatorHelper::service: found service EventDataSvc createViewSeq VERBOSE ServiceLocatorHelper::service: found service TimelineSvc createViewSeq DEBUG ==> Initialise -createViewSeq VERBOSE ServiceLocatorHelper::service: found service JobOptionsSvc createViewSeq VERBOSE ServiceLocatorHelper::service: found service ApplicationMgr createViewSeq DEBUG Added algorithm A1 createViewSeq DEBUG Added algorithm viewNodeOne @@ -83,7 +82,7 @@ createViewSeq VERBOSE ServiceLocatorHelper::service: found service ToolSvc RndmGenSvc.Engine INFO Generator engine type:CLHEP::RanluxEngine RndmGenSvc.Engine INFO Current Seed:1234567 Luxury:3 RndmGenSvc INFO Using Random engine:HepRndm::Engine<CLHEP::RanluxEngine> -ToolSvc.Sequenc... INFO This machine has a speed about 4.17 times the speed of a 2.8 GHz Xeon. +ToolSvc.Sequenc... INFO This machine has a speed about 2.94 times the speed of a 2.8 GHz Xeon. createViewSeq DEBUG Registering tool ToolSvc.SequencerTimerTool createViewSeq DEBUG Releasing tool 'ToolSvc.SequencerTimerTool' createViewSeq DEBUG De-Registering tool ToolSvc.SequencerTimerTool @@ -91,32 +90,26 @@ createViewSeq DEBUG The tool 'ToolSvc.SequencerTimerTool' of type 'Sequenc A1 DEBUG Property update for OutputLevel : new value = 2 A1 DEBUG Initialize base class GaudiCommon<Algorithm> A1 DEBUG could not locate CounterSummarySvc, no counter summary will be made -A1 DEBUG List of ALL properties of Test::ViewTester/A1 #properties = 40 -A1 DEBUG Property ['Name': Value] = 'viewNodeName':viewNodeOne +A1 DEBUG List of ALL properties of Test::ViewTester/A1 #properties = 33 +A1 DEBUG Property ['Name': Value] = 'viewNodeName':'viewNodeOne' A1 DEBUG Property ['Name': Value] = 'viewNumber':1 -A1 DEBUG Property ['Name': Value] = 'baseViewName':viewOne +A1 DEBUG Property ['Name': Value] = 'baseViewName':'viewOne' A1 DEBUG Property ['Name': Value] = 'outKeys':[ ] A1 DEBUG Property ['Name': Value] = 'inpKeys':[ ] A1 DEBUG Property ['Name': Value] = 'RequireObjects':[ ] A1 DEBUG Property ['Name': Value] = 'VetoObjects':[ ] -A1 DEBUG Property ['Name': Value] = 'StatEntityList':[ ] A1 DEBUG Property ['Name': Value] = 'CounterList':[ '.*' ] -A1 DEBUG Property ['Name': Value] = 'UseEfficiencyRowFormat':True -A1 DEBUG Property ['Name': Value] = 'EfficiencyRowFormat': |*%|-48.48s|%|50t||%|10d| |%|11.5g| |(%|#9.6g| +- %|-#9.6g|)%%| ------- | ------- | -A1 DEBUG Property ['Name': Value] = 'RegularRowFormat': | %|-48.48s|%|50t||%|10d| |%|11.7g| |%|#11.5g| |%|#11.5g| |%|#12.5g| |%|#12.5g| | -A1 DEBUG Property ['Name': Value] = 'StatTableHeader': | Counter | # | sum | mean/eff^* | rms/err^* | min | max | -A1 DEBUG Property ['Name': Value] = 'Context': +A1 DEBUG Property ['Name': Value] = 'Context':'' A1 DEBUG Property ['Name': Value] = 'TypePrint':True -A1 DEBUG Property ['Name': Value] = 'PrintEmptyCounters':False A1 DEBUG Property ['Name': Value] = 'PropertiesPrint':False A1 DEBUG Property ['Name': Value] = 'ErrorsPrint':True -A1 DEBUG Property ['Name': Value] = 'RootInTES': +A1 DEBUG Property ['Name': Value] = 'RootInTES':'' A1 DEBUG Property ['Name': Value] = 'FilterCircularDependencies':True A1 DEBUG Property ['Name': Value] = 'Blocking':False A1 DEBUG Property ['Name': Value] = 'NeededResources':[ ] A1 DEBUG Property ['Name': Value] = 'Cardinality':1 A1 DEBUG Property ['Name': Value] = 'RegisterForContextService':True -A1 DEBUG Property ['Name': Value] = 'MonitorService':MonitorSvc +A1 DEBUG Property ['Name': Value] = 'MonitorService':'MonitorSvc' A1 DEBUG Property ['Name': Value] = 'Timeline':False A1 DEBUG Property ['Name': Value] = 'AuditStop':False A1 DEBUG Property ['Name': Value] = 'AuditStart':False @@ -138,32 +131,26 @@ viewNodeOne INFO Member list: Test::ViewTester/A2, Test::ViewTester/A3 A2 DEBUG Property update for OutputLevel : new value = 2 A2 DEBUG Initialize base class GaudiCommon<Algorithm> A2 DEBUG could not locate CounterSummarySvc, no counter summary will be made -A2 DEBUG List of ALL properties of Test::ViewTester/A2 #properties = 40 -A2 DEBUG Property ['Name': Value] = 'viewNodeName': +A2 DEBUG List of ALL properties of Test::ViewTester/A2 #properties = 33 +A2 DEBUG Property ['Name': Value] = 'viewNodeName':'' A2 DEBUG Property ['Name': Value] = 'viewNumber':0 -A2 DEBUG Property ['Name': Value] = 'baseViewName':view +A2 DEBUG Property ['Name': Value] = 'baseViewName':'view' A2 DEBUG Property ['Name': Value] = 'outKeys':[ '/Event/a2' ] A2 DEBUG Property ['Name': Value] = 'inpKeys':[ ] A2 DEBUG Property ['Name': Value] = 'RequireObjects':[ ] A2 DEBUG Property ['Name': Value] = 'VetoObjects':[ ] -A2 DEBUG Property ['Name': Value] = 'StatEntityList':[ ] A2 DEBUG Property ['Name': Value] = 'CounterList':[ '.*' ] -A2 DEBUG Property ['Name': Value] = 'UseEfficiencyRowFormat':True -A2 DEBUG Property ['Name': Value] = 'EfficiencyRowFormat': |*%|-48.48s|%|50t||%|10d| |%|11.5g| |(%|#9.6g| +- %|-#9.6g|)%%| ------- | ------- | -A2 DEBUG Property ['Name': Value] = 'RegularRowFormat': | %|-48.48s|%|50t||%|10d| |%|11.7g| |%|#11.5g| |%|#11.5g| |%|#12.5g| |%|#12.5g| | -A2 DEBUG Property ['Name': Value] = 'StatTableHeader': | Counter | # | sum | mean/eff^* | rms/err^* | min | max | -A2 DEBUG Property ['Name': Value] = 'Context': +A2 DEBUG Property ['Name': Value] = 'Context':'' A2 DEBUG Property ['Name': Value] = 'TypePrint':True -A2 DEBUG Property ['Name': Value] = 'PrintEmptyCounters':False A2 DEBUG Property ['Name': Value] = 'PropertiesPrint':False A2 DEBUG Property ['Name': Value] = 'ErrorsPrint':True -A2 DEBUG Property ['Name': Value] = 'RootInTES': +A2 DEBUG Property ['Name': Value] = 'RootInTES':'' A2 DEBUG Property ['Name': Value] = 'FilterCircularDependencies':True A2 DEBUG Property ['Name': Value] = 'Blocking':False A2 DEBUG Property ['Name': Value] = 'NeededResources':[ ] A2 DEBUG Property ['Name': Value] = 'Cardinality':1 A2 DEBUG Property ['Name': Value] = 'RegisterForContextService':True -A2 DEBUG Property ['Name': Value] = 'MonitorService':MonitorSvc +A2 DEBUG Property ['Name': Value] = 'MonitorService':'MonitorSvc' A2 DEBUG Property ['Name': Value] = 'Timeline':False A2 DEBUG Property ['Name': Value] = 'AuditStop':False A2 DEBUG Property ['Name': Value] = 'AuditStart':False @@ -186,32 +173,26 @@ A2 DEBUG Data Deps for A2 A3 DEBUG Property update for OutputLevel : new value = 2 A3 DEBUG Initialize base class GaudiCommon<Algorithm> A3 DEBUG could not locate CounterSummarySvc, no counter summary will be made -A3 DEBUG List of ALL properties of Test::ViewTester/A3 #properties = 40 -A3 DEBUG Property ['Name': Value] = 'viewNodeName': +A3 DEBUG List of ALL properties of Test::ViewTester/A3 #properties = 33 +A3 DEBUG Property ['Name': Value] = 'viewNodeName':'' A3 DEBUG Property ['Name': Value] = 'viewNumber':0 -A3 DEBUG Property ['Name': Value] = 'baseViewName':view +A3 DEBUG Property ['Name': Value] = 'baseViewName':'view' A3 DEBUG Property ['Name': Value] = 'outKeys':[ ] A3 DEBUG Property ['Name': Value] = 'inpKeys':[ '/Event/a2' ] A3 DEBUG Property ['Name': Value] = 'RequireObjects':[ ] A3 DEBUG Property ['Name': Value] = 'VetoObjects':[ ] -A3 DEBUG Property ['Name': Value] = 'StatEntityList':[ ] A3 DEBUG Property ['Name': Value] = 'CounterList':[ '.*' ] -A3 DEBUG Property ['Name': Value] = 'UseEfficiencyRowFormat':True -A3 DEBUG Property ['Name': Value] = 'EfficiencyRowFormat': |*%|-48.48s|%|50t||%|10d| |%|11.5g| |(%|#9.6g| +- %|-#9.6g|)%%| ------- | ------- | -A3 DEBUG Property ['Name': Value] = 'RegularRowFormat': | %|-48.48s|%|50t||%|10d| |%|11.7g| |%|#11.5g| |%|#11.5g| |%|#12.5g| |%|#12.5g| | -A3 DEBUG Property ['Name': Value] = 'StatTableHeader': | Counter | # | sum | mean/eff^* | rms/err^* | min | max | -A3 DEBUG Property ['Name': Value] = 'Context': +A3 DEBUG Property ['Name': Value] = 'Context':'' A3 DEBUG Property ['Name': Value] = 'TypePrint':True -A3 DEBUG Property ['Name': Value] = 'PrintEmptyCounters':False A3 DEBUG Property ['Name': Value] = 'PropertiesPrint':False A3 DEBUG Property ['Name': Value] = 'ErrorsPrint':True -A3 DEBUG Property ['Name': Value] = 'RootInTES': +A3 DEBUG Property ['Name': Value] = 'RootInTES':'' A3 DEBUG Property ['Name': Value] = 'FilterCircularDependencies':True A3 DEBUG Property ['Name': Value] = 'Blocking':False A3 DEBUG Property ['Name': Value] = 'NeededResources':[ ] A3 DEBUG Property ['Name': Value] = 'Cardinality':1 A3 DEBUG Property ['Name': Value] = 'RegisterForContextService':True -A3 DEBUG Property ['Name': Value] = 'MonitorService':MonitorSvc +A3 DEBUG Property ['Name': Value] = 'MonitorService':'MonitorSvc' A3 DEBUG Property ['Name': Value] = 'Timeline':False A3 DEBUG Property ['Name': Value] = 'AuditStop':False A3 DEBUG Property ['Name': Value] = 'AuditStart':False @@ -234,32 +215,26 @@ A3 DEBUG Data Deps for A3 A4 DEBUG Property update for OutputLevel : new value = 2 A4 DEBUG Initialize base class GaudiCommon<Algorithm> A4 DEBUG could not locate CounterSummarySvc, no counter summary will be made -A4 DEBUG List of ALL properties of Test::ViewTester/A4 #properties = 40 -A4 DEBUG Property ['Name': Value] = 'viewNodeName':viewNodeTwo +A4 DEBUG List of ALL properties of Test::ViewTester/A4 #properties = 33 +A4 DEBUG Property ['Name': Value] = 'viewNodeName':'viewNodeTwo' A4 DEBUG Property ['Name': Value] = 'viewNumber':1 -A4 DEBUG Property ['Name': Value] = 'baseViewName':viewTwo +A4 DEBUG Property ['Name': Value] = 'baseViewName':'viewTwo' A4 DEBUG Property ['Name': Value] = 'outKeys':[ '/Event/a4' ] A4 DEBUG Property ['Name': Value] = 'inpKeys':[ ] A4 DEBUG Property ['Name': Value] = 'RequireObjects':[ ] A4 DEBUG Property ['Name': Value] = 'VetoObjects':[ ] -A4 DEBUG Property ['Name': Value] = 'StatEntityList':[ ] A4 DEBUG Property ['Name': Value] = 'CounterList':[ '.*' ] -A4 DEBUG Property ['Name': Value] = 'UseEfficiencyRowFormat':True -A4 DEBUG Property ['Name': Value] = 'EfficiencyRowFormat': |*%|-48.48s|%|50t||%|10d| |%|11.5g| |(%|#9.6g| +- %|-#9.6g|)%%| ------- | ------- | -A4 DEBUG Property ['Name': Value] = 'RegularRowFormat': | %|-48.48s|%|50t||%|10d| |%|11.7g| |%|#11.5g| |%|#11.5g| |%|#12.5g| |%|#12.5g| | -A4 DEBUG Property ['Name': Value] = 'StatTableHeader': | Counter | # | sum | mean/eff^* | rms/err^* | min | max | -A4 DEBUG Property ['Name': Value] = 'Context': +A4 DEBUG Property ['Name': Value] = 'Context':'' A4 DEBUG Property ['Name': Value] = 'TypePrint':True -A4 DEBUG Property ['Name': Value] = 'PrintEmptyCounters':False A4 DEBUG Property ['Name': Value] = 'PropertiesPrint':False A4 DEBUG Property ['Name': Value] = 'ErrorsPrint':True -A4 DEBUG Property ['Name': Value] = 'RootInTES': +A4 DEBUG Property ['Name': Value] = 'RootInTES':'' A4 DEBUG Property ['Name': Value] = 'FilterCircularDependencies':True A4 DEBUG Property ['Name': Value] = 'Blocking':False A4 DEBUG Property ['Name': Value] = 'NeededResources':[ ] A4 DEBUG Property ['Name': Value] = 'Cardinality':1 A4 DEBUG Property ['Name': Value] = 'RegisterForContextService':True -A4 DEBUG Property ['Name': Value] = 'MonitorService':MonitorSvc +A4 DEBUG Property ['Name': Value] = 'MonitorService':'MonitorSvc' A4 DEBUG Property ['Name': Value] = 'Timeline':False A4 DEBUG Property ['Name': Value] = 'AuditStop':False A4 DEBUG Property ['Name': Value] = 'AuditStart':False @@ -283,32 +258,26 @@ viewNodeTwo INFO Member list: Test::ViewTester/A5, Test::ViewTester/A6 A5 DEBUG Property update for OutputLevel : new value = 2 A5 DEBUG Initialize base class GaudiCommon<Algorithm> A5 DEBUG could not locate CounterSummarySvc, no counter summary will be made -A5 DEBUG List of ALL properties of Test::ViewTester/A5 #properties = 40 -A5 DEBUG Property ['Name': Value] = 'viewNodeName': +A5 DEBUG List of ALL properties of Test::ViewTester/A5 #properties = 33 +A5 DEBUG Property ['Name': Value] = 'viewNodeName':'' A5 DEBUG Property ['Name': Value] = 'viewNumber':0 -A5 DEBUG Property ['Name': Value] = 'baseViewName':view +A5 DEBUG Property ['Name': Value] = 'baseViewName':'view' A5 DEBUG Property ['Name': Value] = 'outKeys':[ ] A5 DEBUG Property ['Name': Value] = 'inpKeys':[ '/Event/a4' ] A5 DEBUG Property ['Name': Value] = 'RequireObjects':[ ] A5 DEBUG Property ['Name': Value] = 'VetoObjects':[ ] -A5 DEBUG Property ['Name': Value] = 'StatEntityList':[ ] A5 DEBUG Property ['Name': Value] = 'CounterList':[ '.*' ] -A5 DEBUG Property ['Name': Value] = 'UseEfficiencyRowFormat':True -A5 DEBUG Property ['Name': Value] = 'EfficiencyRowFormat': |*%|-48.48s|%|50t||%|10d| |%|11.5g| |(%|#9.6g| +- %|-#9.6g|)%%| ------- | ------- | -A5 DEBUG Property ['Name': Value] = 'RegularRowFormat': | %|-48.48s|%|50t||%|10d| |%|11.7g| |%|#11.5g| |%|#11.5g| |%|#12.5g| |%|#12.5g| | -A5 DEBUG Property ['Name': Value] = 'StatTableHeader': | Counter | # | sum | mean/eff^* | rms/err^* | min | max | -A5 DEBUG Property ['Name': Value] = 'Context': +A5 DEBUG Property ['Name': Value] = 'Context':'' A5 DEBUG Property ['Name': Value] = 'TypePrint':True -A5 DEBUG Property ['Name': Value] = 'PrintEmptyCounters':False A5 DEBUG Property ['Name': Value] = 'PropertiesPrint':False A5 DEBUG Property ['Name': Value] = 'ErrorsPrint':True -A5 DEBUG Property ['Name': Value] = 'RootInTES': +A5 DEBUG Property ['Name': Value] = 'RootInTES':'' A5 DEBUG Property ['Name': Value] = 'FilterCircularDependencies':True A5 DEBUG Property ['Name': Value] = 'Blocking':False A5 DEBUG Property ['Name': Value] = 'NeededResources':[ ] A5 DEBUG Property ['Name': Value] = 'Cardinality':1 A5 DEBUG Property ['Name': Value] = 'RegisterForContextService':True -A5 DEBUG Property ['Name': Value] = 'MonitorService':MonitorSvc +A5 DEBUG Property ['Name': Value] = 'MonitorService':'MonitorSvc' A5 DEBUG Property ['Name': Value] = 'Timeline':False A5 DEBUG Property ['Name': Value] = 'AuditStop':False A5 DEBUG Property ['Name': Value] = 'AuditStart':False @@ -331,32 +300,26 @@ A5 DEBUG Data Deps for A5 A6 DEBUG Property update for OutputLevel : new value = 2 A6 DEBUG Initialize base class GaudiCommon<Algorithm> A6 DEBUG could not locate CounterSummarySvc, no counter summary will be made -A6 DEBUG List of ALL properties of Test::ViewTester/A6 #properties = 40 -A6 DEBUG Property ['Name': Value] = 'viewNodeName': +A6 DEBUG List of ALL properties of Test::ViewTester/A6 #properties = 33 +A6 DEBUG Property ['Name': Value] = 'viewNodeName':'' A6 DEBUG Property ['Name': Value] = 'viewNumber':0 -A6 DEBUG Property ['Name': Value] = 'baseViewName':view +A6 DEBUG Property ['Name': Value] = 'baseViewName':'view' A6 DEBUG Property ['Name': Value] = 'outKeys':[ ] A6 DEBUG Property ['Name': Value] = 'inpKeys':[ ] A6 DEBUG Property ['Name': Value] = 'RequireObjects':[ ] A6 DEBUG Property ['Name': Value] = 'VetoObjects':[ ] -A6 DEBUG Property ['Name': Value] = 'StatEntityList':[ ] A6 DEBUG Property ['Name': Value] = 'CounterList':[ '.*' ] -A6 DEBUG Property ['Name': Value] = 'UseEfficiencyRowFormat':True -A6 DEBUG Property ['Name': Value] = 'EfficiencyRowFormat': |*%|-48.48s|%|50t||%|10d| |%|11.5g| |(%|#9.6g| +- %|-#9.6g|)%%| ------- | ------- | -A6 DEBUG Property ['Name': Value] = 'RegularRowFormat': | %|-48.48s|%|50t||%|10d| |%|11.7g| |%|#11.5g| |%|#11.5g| |%|#12.5g| |%|#12.5g| | -A6 DEBUG Property ['Name': Value] = 'StatTableHeader': | Counter | # | sum | mean/eff^* | rms/err^* | min | max | -A6 DEBUG Property ['Name': Value] = 'Context': +A6 DEBUG Property ['Name': Value] = 'Context':'' A6 DEBUG Property ['Name': Value] = 'TypePrint':True -A6 DEBUG Property ['Name': Value] = 'PrintEmptyCounters':False A6 DEBUG Property ['Name': Value] = 'PropertiesPrint':False A6 DEBUG Property ['Name': Value] = 'ErrorsPrint':True -A6 DEBUG Property ['Name': Value] = 'RootInTES': +A6 DEBUG Property ['Name': Value] = 'RootInTES':'' A6 DEBUG Property ['Name': Value] = 'FilterCircularDependencies':True A6 DEBUG Property ['Name': Value] = 'Blocking':False A6 DEBUG Property ['Name': Value] = 'NeededResources':[ ] A6 DEBUG Property ['Name': Value] = 'Cardinality':1 A6 DEBUG Property ['Name': Value] = 'RegisterForContextService':True -A6 DEBUG Property ['Name': Value] = 'MonitorService':MonitorSvc +A6 DEBUG Property ['Name': Value] = 'MonitorService':'MonitorSvc' A6 DEBUG Property ['Name': Value] = 'Timeline':False A6 DEBUG Property ['Name': Value] = 'AuditStop':False A6 DEBUG Property ['Name': Value] = 'AuditStart':False @@ -377,32 +340,26 @@ A6 DEBUG Data Deps for A6 A7 DEBUG Property update for OutputLevel : new value = 2 A7 DEBUG Initialize base class GaudiCommon<Algorithm> A7 DEBUG could not locate CounterSummarySvc, no counter summary will be made -A7 DEBUG List of ALL properties of Test::ViewTester/A7 #properties = 40 -A7 DEBUG Property ['Name': Value] = 'viewNodeName': +A7 DEBUG List of ALL properties of Test::ViewTester/A7 #properties = 33 +A7 DEBUG Property ['Name': Value] = 'viewNodeName':'' A7 DEBUG Property ['Name': Value] = 'viewNumber':0 -A7 DEBUG Property ['Name': Value] = 'baseViewName':view +A7 DEBUG Property ['Name': Value] = 'baseViewName':'view' A7 DEBUG Property ['Name': Value] = 'outKeys':[ ] A7 DEBUG Property ['Name': Value] = 'inpKeys':[ ] A7 DEBUG Property ['Name': Value] = 'RequireObjects':[ ] A7 DEBUG Property ['Name': Value] = 'VetoObjects':[ ] -A7 DEBUG Property ['Name': Value] = 'StatEntityList':[ ] A7 DEBUG Property ['Name': Value] = 'CounterList':[ '.*' ] -A7 DEBUG Property ['Name': Value] = 'UseEfficiencyRowFormat':True -A7 DEBUG Property ['Name': Value] = 'EfficiencyRowFormat': |*%|-48.48s|%|50t||%|10d| |%|11.5g| |(%|#9.6g| +- %|-#9.6g|)%%| ------- | ------- | -A7 DEBUG Property ['Name': Value] = 'RegularRowFormat': | %|-48.48s|%|50t||%|10d| |%|11.7g| |%|#11.5g| |%|#11.5g| |%|#12.5g| |%|#12.5g| | -A7 DEBUG Property ['Name': Value] = 'StatTableHeader': | Counter | # | sum | mean/eff^* | rms/err^* | min | max | -A7 DEBUG Property ['Name': Value] = 'Context': +A7 DEBUG Property ['Name': Value] = 'Context':'' A7 DEBUG Property ['Name': Value] = 'TypePrint':True -A7 DEBUG Property ['Name': Value] = 'PrintEmptyCounters':False A7 DEBUG Property ['Name': Value] = 'PropertiesPrint':False A7 DEBUG Property ['Name': Value] = 'ErrorsPrint':True -A7 DEBUG Property ['Name': Value] = 'RootInTES': +A7 DEBUG Property ['Name': Value] = 'RootInTES':'' A7 DEBUG Property ['Name': Value] = 'FilterCircularDependencies':True A7 DEBUG Property ['Name': Value] = 'Blocking':False A7 DEBUG Property ['Name': Value] = 'NeededResources':[ ] A7 DEBUG Property ['Name': Value] = 'Cardinality':1 A7 DEBUG Property ['Name': Value] = 'RegisterForContextService':True -A7 DEBUG Property ['Name': Value] = 'MonitorService':MonitorSvc +A7 DEBUG Property ['Name': Value] = 'MonitorService':'MonitorSvc' A7 DEBUG Property ['Name': Value] = 'Timeline':False A7 DEBUG Property ['Name': Value] = 'AuditStop':False A7 DEBUG Property ['Name': Value] = 'AuditStart':False @@ -422,13 +379,13 @@ A7 DEBUG output handles: 0 A7 DEBUG Data Deps for A7 createViewSeq VERBOSE ServiceLocatorHelper::service: found service AlgExecStateSvc AlgResourcePool DEBUG List of algorithms is: -AlgResourcePool DEBUG o Test::ViewTester/A1 @ 0x135b850 -AlgResourcePool DEBUG o Test::ViewTester/A2 @ 0x138aa90 -AlgResourcePool DEBUG o Test::ViewTester/A3 @ 0x138c2b0 -AlgResourcePool DEBUG o Test::ViewTester/A4 @ 0x135f230 -AlgResourcePool DEBUG o Test::ViewTester/A5 @ 0x138ed80 -AlgResourcePool DEBUG o Test::ViewTester/A6 @ 0x13905a0 -AlgResourcePool DEBUG o Test::ViewTester/A7 @ 0x1362b30 +AlgResourcePool DEBUG o Test::ViewTester/A1 @ 0x148af30 +AlgResourcePool DEBUG o Test::ViewTester/A2 @ 0x14bfe50 +AlgResourcePool DEBUG o Test::ViewTester/A3 @ 0x14c1be0 +AlgResourcePool DEBUG o Test::ViewTester/A4 @ 0x148ebd0 +AlgResourcePool DEBUG o Test::ViewTester/A5 @ 0x14cd5f0 +AlgResourcePool DEBUG o Test::ViewTester/A6 @ 0x14cf060 +AlgResourcePool DEBUG o Test::ViewTester/A7 @ 0x1492880 AvalancheSchedu... INFO Found 7 algorithms AvalancheSchedu... INFO Data Dependencies for Algorithms: A1 @@ -544,7 +501,7 @@ PrecedenceSvc WARNING To trace temporal and topological aspects of execution HiveSlimEventLo... DEBUG Context obtained HiveSlimEventLo... FATAL Failed event detected on s: 0 e: 0 HiveSlimEventLo... DEBUG Clearing slot 0 (event 0) of the whiteboard -HiveSlimEventLo... INFO ---> Loop Finished (skipping 1st evt) - WSS 67.9219 total time 816101 +HiveSlimEventLo... INFO ---> Loop Finished (skipping 1st evt) - WSS 54.918 total time 12280761 HiveSlimEventLo... INFO 0 events were SKIPed ApplicationMgr INFO Application Manager Stopped successfully createViewSeq DEBUG Tools to release :