Exemplo n.º 1
0
rec.doWriteAOD = False
rec.doWriteESD = False

# To read files with trigger config stored as in-file meta-data,
# i.e. 13.0.40 and above: ds
# To read AOD produced with 13.0.30 you need to change ds to aod:
from TriggerJobOpts.TriggerFlags import TriggerFlags
TriggerFlags.configurationSourceList = ['ds']

# set up trigger config service
from TriggerJobOpts.TriggerConfigGetter import TriggerConfigGetter
cfg = TriggerConfigGetter()

# list of the algorithms to be executed at run time
from MissingETPerformance.MissingETPerformanceConf import MissingETPerformance
topSequence.CBNT_AthenaAware += MissingETPerformance()
MissingETPerformance = MissingETPerformance()

############# The properties of the MissingETPerformance Algorithm
MissingETPerformance.OutputLevel = WARNING

############## trigger
#whether to require a trigger from the list to have fired
MissingETPerformance.FilterOnTrigger = False
#List of trigger names to accept
MissingETPerformance.TriggerNames = ["EF_e15_medium", "EF_e5_medium", "EF_J50"]

#turn on/off individual tools here
MissingETPerformance.doEventSelector = True
MissingETPerformance.doBasicPlotsTool = True
MissingETPerformance.doResolutionTool = True
Exemplo n.º 2
0
include("ParticleBuilderOptions/ESD_PoolCnv_jobOptions.py")
include("ParticleBuilderOptions/AOD_PoolCnv_jobOptions.py")
include("ParticleBuilderOptions/McAOD_PoolCnv_jobOptions.py")
include("EventAthenaPool/EventAthenaPool_joboptions.py")

include("MissingETPerformance/MissingETData_jobOptions.py")
include("MissingETPerformance/ContainerComparatorTool_jobOptions.py")
MissingETData.IgnoreMissingContainers = True

# Athena-Aware NTuple making Tools
CBNTAthenaAware = True
include("CBNT_Athena/CBNT_AthenaAware_jobOptions.py")
include("CBNT_Athena/CBNT_EventInfo_jobOptions.py")

from MissingETPerformance.MissingETPerformanceConf import MissingETPerformance
topSequence.CBNT_AthenaAware += MissingETPerformance()
MissingETPerformance = MissingETPerformance()

#only want ContainerComparatorTool on
MissingETPerformance.doContainerComparatorTool = True
MissingETPerformance.FilterOnTrigger = False
MissingETPerformance.doBasicPlotsTool = False
MissingETPerformance.doResolutionTool = False
MissingETPerformance.doLinearityTool = False
MissingETPerformance.doEtaRingsTool = False
MissingETPerformance.doTrigMissingETTool = False
MissingETPerformance.doTrigVsOfflineMissingETTool = False
MissingETPerformance.doFakeMissingETTool = False
MissingETPerformance.doMuonTool = False

##########################################