Skip to content
Snippets Groups Projects

Remove broken jobO files from DataQuality/GoodRunsListsUser

Merged Walter Lampl requested to merge wlampl/athena:rm_brokenGRLEx into 24.0
3 files
+ 0
193
Compare changes
  • Side-by-side
  • Inline
Files
3
DetDescrVersion="ATLAS-GEO-02-01-00" ## Set your geometry here
#ConditionsTag="COMCOND-REPC-003-00" ## Set the conditions tag here;not needed for AOD
##------------------------------------------------------------
## These 4 lines are needed for actual data
##------------------------------------------------------------
#from AthenaCommon.GlobalFlags import GlobalFlags
#GlobalFlags.DetGeo.set_atlas()
#GlobalFlags.DataSource.set_data()
#from IOVDbSvc.CondDB import conddb
doTrigger = False ## Need to check
EvtMax=-1 ## number of event to process
## include your algorithm job options here
UserAlgs=[ "GoodRunsListsUser/GoodRunsListsUser_default.py",
#"GoodRunsListsUser/GoodRunsListsUser_oneSelection.py"
#"GoodRunsListsUser/GoodRunsListsUser_twoSelections.py",
#"GoodRunsListsUser/GoodRunsListsUser_preEventSelector.py",
#"GoodRunsListsUser/GoodRunsListsUser_coolQuery.py",
#"GoodRunsListsUser/LumiBlock_LumiCalc_GRL_dumper.py",
#"GoodRunsListsUser/GoodRunsListsUser_DQLumiExample.py"
]
## the Input AOD File(s)
from AthenaCommon.AthenaCommonFlags import athenaCommonFlags
athenaCommonFlags.PoolAODInput = [ "/afs/cern.ch/atlas/maxidisk/d36/topmix/user.RichardHawkings.0108175.topmix_Muon.AOD.v5/user.RichardHawkings.0108175.topmix_Muon.AOD.v4._00014.pool.root",
"/afs/cern.ch/atlas/maxidisk/d36/topmix/user.RichardHawkings.0108175.topmix_Muon.AOD.v5/user.RichardHawkings.0108175.topmix_Muon.AOD.v4._00015.pool.root",
]
## Output log setting; this is for the framework in general
## You may over-ride this in your job options for your algorithm
OutputLevel = INFO
## Read settings; for performance DPD set ESD to true
readRDO = False
readESD = False
readAOD = True
## Write settings; keep all of these to false.
## Control the writing of your own n-tuple in the alg's job options
doCBNT = False
doWriteESD = False
doWriteAOD = False
doWriteTAG = False
## need these two flags to turn on lumiblockmetadatatool and output metadatastore
doDPD=True
doFileMetaData=True
## main jobOption - must always be included
include ("RecExCommon/RecExCommon_topOptions.py")
Loading