Skip to content
Snippets Groups Projects
Commit 946cfc81 authored by Vakhtang Tsulaia's avatar Vakhtang Tsulaia
Browse files

Merge branch 'test.RecExOnline-20180322' into 'master'

RecExOnline: Fix configuration of test job.

See merge request atlas/athena!9915

Former-commit-id: 250fc617
parents 33f04c34 b5fdc042
No related branches found
No related tags found
No related merge requests found
...@@ -38,11 +38,14 @@ DataSource = 'data' ...@@ -38,11 +38,14 @@ DataSource = 'data'
InputFormat = 'bytestream' InputFormat = 'bytestream'
#fileName = '/afs/cern.ch/user/k/koutsman/OnlineNightly/data/data12_8TeV.00208931.express_express.daq.RAW._lb0123._SFO-9._0001.data' #fileName = '/afs/cern.ch/user/k/koutsman/OnlineNightly/data/data12_8TeV.00208931.express_express.daq.RAW._lb0123._SFO-9._0001.data'
fileName = 'root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/tct/rec_input/00204416/express_express/data12_8TeV.00204416.express_express.merge.RAW._lb0015._SFO-ALL._0001.1' fileName = 'root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/tct/rec_input/00204416/express_express/data12_8TeV.00204416.express_express.merge.RAW._lb0015._SFO-ALL._0001.1'
from RecExConfig.RecFlags import rec
rec.RunNumber.set_Value (204416)
# update for comsics # update for comsics
if beamType == 'cosmics': if beamType == 'cosmics':
fileName = '/afs/cern.ch/atlas/offline/test/data11_cos.00182609.physics_CosmicCalo.merge.RAW._lb0100._SFO-ALL._0001.1.SFO-ALL._0001.1.10evts.data ' fileName = '/afs/cern.ch/atlas/offline/test/data11_cos.00182609.physics_CosmicCalo.merge.RAW._lb0100._SFO-ALL._0001.1.SFO-ALL._0001.1.10evts.data'
streamName ='CosmicCalo_physics' streamName ='CosmicCalo_physics'
rec.RunNumber.set_Value (182609)
doESD = True doESD = True
writeESD = False writeESD = False
...@@ -86,7 +89,19 @@ DQMonFlags.doMuonPhysicsMon.set_Value_and_Lock(False) ...@@ -86,7 +89,19 @@ DQMonFlags.doMuonPhysicsMon.set_Value_and_Lock(False)
from InDetRecExample.InDetJobProperties import InDetFlags from InDetRecExample.InDetJobProperties import InDetFlags
InDetFlags.doTIDE_Ambi.set_Value_and_Lock(False) InDetFlags.doTIDE_Ambi.set_Value_and_Lock(False)
from TriggerJobOpts.TriggerConfigGetter import TriggerConfigGetter
preExec = ['cfg = TriggerConfigGetter(); cfg.setupxAODWriting()']
## main online reco scripts ## main online reco scripts
include ("RecExOnline/RecExOnline_jobOptions.py") include ("RecExOnline/RecExOnline_jobOptions.py")
from TrigConfxAOD.TrigConfxAODConf import TrigConf__xAODMenuWriter
w=TrigConf__xAODMenuWriter()
w.MetaDataStore='InputMetaDataStore'
topSequence.remove(w)
from AthenaCommon import AlgSequence
athBeginSeq = AlgSequence.AthSequencer('AthBeginSeq')
athBeginSeq += w
ToolSvc.GSFBuildPixelToTPIDTool.ReadFromCOOL=False
ToolSvc.CombinedMuonPixelToTPID.ReadFromCOOL=False
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