Skip to content
Snippets Groups Projects
Commit 82187368 authored by Charles Leggett's avatar Charles Leggett
Browse files

update Gaudi to v28r2

Former-commit-id: c427e80e
parent d867907b
No related branches found
No related tags found
No related merge requests found
#
# Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
#
#
# get_files LVL1config_Physics_pp_v7.xml
#
......@@ -66,10 +70,9 @@ nThreads = jp.ConcurrencyFlags.NumThreads()
print ' nThreads : ',nThreads
if nThreads >= 1:
## get a handle on the ForwardScheduler
from GaudiHive.GaudiHiveConf import ForwardSchedulerSvc
svcMgr += ForwardSchedulerSvc()
svcMgr.ForwardSchedulerSvc.CheckDependencies = True
## get a handle on the Scheduler
from AthenaCommon.AlgScheduler import AlgScheduler
AlgScheduler.CheckDependencies( True )
# Use McEventSelector so we can run with AthenaMP
#import AthenaCommon.AtlasUnixGeneratorJob
......
......@@ -467,7 +467,7 @@ StatusCode FTKTrackFitterAlgo::initialize(){
if(m_PrintSSBConstants){
log << MSG::INFO << "*** Printing EXP and TF constants in a txt file ****" << endreq;
log << MSG::INFO << "*** Printing EXP and TF constants in a txt file ****" << endmsg;
ofstream myfile;
myfile.open (Form("EXPConstants_reg%d.txt",ir));
......@@ -480,7 +480,7 @@ StatusCode FTKTrackFitterAlgo::initialize(){
vecOfMapSecID.clear();
vecOfMapNconn.clear();
log << MSG::INFO << "*** Reading the connection file and mapping 8L -> 12L " << endreq;
log << MSG::INFO << "*** Reading the connection file and mapping 8L -> 12L " << endmsg;
vector<vector<int>> moduleIDvec;
moduleIDvec.clear();
......
#
# Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
#
#
# get_files LVL1config_Physics_pp_v5.xml
# ln -s /afs/cern.ch/atlas/project/trigger/pesa-sw/validation/atn-test/data15_13TeV.00266904.physics_EnhancedBias.merge.RAW._lb0452._SFO-1._0001.1 input.data
......@@ -28,10 +32,9 @@ from AthenaCommon.ConcurrencyFlags import jobproperties as jp
nThreads = jp.ConcurrencyFlags.NumThreads()
if nThreads >= 1:
## get a handle on the ForwardScheduler
from GaudiHive.GaudiHiveConf import ForwardSchedulerSvc
svcMgr += ForwardSchedulerSvc()
svcMgr.ForwardSchedulerSvc.CheckDependencies = True
## get a handle on the Scheduler
from AthenaCommon.AlgScheduler import AlgScheduler
AlgScheduler.CheckDependencies( True )
# Use McEventSelector so we can run with AthenaMP
#import AthenaCommon.AtlasUnixGeneratorJob
......
#
# Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
#
#
# get_files -xmls LVL1config_Physics_pp_v5.xml
# ln -s /afs/cern.ch/atlas/project/trigger/pesa-sw/validation/atn-test/data15_13TeV.00266904.physics_EnhancedBias.merge.RAW._lb0452._SFO-1._0001.1 input.data
......@@ -87,13 +91,10 @@ print svcMgr
theApp.EvtMax = 1
from GaudiHive.GaudiHiveConf import ForwardSchedulerSvc
svcMgr += ForwardSchedulerSvc()
svcMgr.ForwardSchedulerSvc.MaxEventsInFlight = 1
svcMgr.ForwardSchedulerSvc.MaxAlgosInFlight = 1
svcMgr.ForwardSchedulerSvc.ThreadPoolSize = 1
svcMgr.ForwardSchedulerSvc.CheckDependencies = True
from AthenaCommon.AlgScheduler import AlgScheduler
AlgScheduler.setThreadPoolSize( 1 )
AlgScheduler.CheckDependencies( True )
svcMgr.EventDataSvc.NSlots = 1
print "topSequence dump:", topSequence
#
......
#
# Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
#
# an example of minimal jO based on RecExCommon configuration running the FastTrackFinder
# to find tracks in predefined RoIs
# 20/2/2017 Jiri.Masik@manchester.ac.uk
......@@ -13,11 +17,10 @@
# source/Trigger/TrigAlgorithms/TrigFastTrackFinder
# with the mods to the configuration of the TrigOnlineSpacePointTool
from GaudiHive.GaudiHiveConf import ForwardSchedulerSvc
from AthenaCommon.AppMgr import ServiceMgr as svcMgr
# svcMgr += ForwardSchedulerSvc()
svcMgr.ForwardSchedulerSvc.CheckDependencies = True
svcMgr.ForwardSchedulerSvc.OutputLevel=VERBOSE
from AthenaCommon.AlgScheduler import AlgScheduler
AlgScheduler.CheckDependencies( True )
AlgScheduler.OutputLevel( VERBOSE )
## get a handle on the ServiceManager
from AthenaCommon.AlgSequence import AlgSequence
......
#
# Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
#
#inputfile="MemGrowEvents.data"
......@@ -99,10 +103,9 @@ from AthenaCommon.ConcurrencyFlags import jobproperties as jp
nThreads = jp.ConcurrencyFlags.NumThreads()
if nThreads >= 1:
## get a handle on the ForwardScheduler
from GaudiHive.GaudiHiveConf import ForwardSchedulerSvc
svcMgr += ForwardSchedulerSvc()
svcMgr.ForwardSchedulerSvc.CheckDependencies = True
## get a handle on the Scheduler
from AthenaCommon.AlgScheduler import AlgScheduler
AlgScheduler.CheckDependencies( True )
import MagFieldServices.SetupField
......
#
# Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
#
#Early failure warning
from GaudiHive.GaudiHiveConf import ForwardSchedulerSvc
from AthenaCommon.AppMgr import ServiceMgr as svcMgr
svcMgr += ForwardSchedulerSvc()
svcMgr.ForwardSchedulerSvc.CheckDependencies = True
## get a handle on the ServiceManager
from AthenaCommon.AppMgr import ServiceMgr as svcMgr
from AthenaCommon.AlgScheduler import AlgScheduler
AlgScheduler.CheckDataDependencies( True )
## get a handle on the ServiceManager
from AthenaCommon.AppMgr import ServiceMgr as svcMgr
from AthenaCommon.AlgSequence import AlgSequence
topSequence = AlgSequence()
from SGComps.SGCompsConf import SGInputLoader
......
#
# Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
#
#
# get_files -xmls LVL1config_Physics_pp_v5.xml
#
......@@ -24,9 +28,8 @@ from AthenaCommon.AppMgr import ServiceMgr as svcMgr
#
from GaudiHive.GaudiHiveConf import ForwardSchedulerSvc
svcMgr += ForwardSchedulerSvc()
svcMgr.ForwardSchedulerSvc.CheckDependencies = True
from AthenaCommon.AlgScheduler import AlgScheduler
AlgScheduler.CheckDependencies( True )
# Use McEventSelector so we can run with AthenaMP
import AthenaCommon.AtlasUnixGeneratorJob
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment