diff --git a/PhysicsAnalysis/DerivationFramework/DerivationFrameworkBPhys/share/BPHY19.py b/PhysicsAnalysis/DerivationFramework/DerivationFrameworkBPhys/share/BPHY19.py new file mode 100644 index 0000000000000000000000000000000000000000..eec3a8eb452f57fb79229a0ae5ae9f97102642e5 --- /dev/null +++ b/PhysicsAnalysis/DerivationFramework/DerivationFrameworkBPhys/share/BPHY19.py @@ -0,0 +1,14 @@ +#==================================================================== +# BPHY19.py +# This an example job options script showing how to set up a +# derivation of the data using the derivation framework. +# It requires the reductionConf flag BPHY19 in Reco_tf.py +#==================================================================== + +# Set up common services and job object. +# This should appear in ALL derivation job options +from DerivationFrameworkCore.DerivationFrameworkMaster import * + +# This is a dummy file thus just printing something + +print "BPHY19 dummy file ... doing nothing." diff --git a/PhysicsAnalysis/DerivationFramework/DerivationFrameworkCore/python/DerivationFrameworkProdFlags.py b/PhysicsAnalysis/DerivationFramework/DerivationFrameworkCore/python/DerivationFrameworkProdFlags.py index 41c2b048d82370633385b27832206a9320019cc4..426b255ec4bba182dbbfac69d39b46992e07b209 100644 --- a/PhysicsAnalysis/DerivationFramework/DerivationFrameworkCore/python/DerivationFrameworkProdFlags.py +++ b/PhysicsAnalysis/DerivationFramework/DerivationFrameworkCore/python/DerivationFrameworkProdFlags.py @@ -2147,6 +2147,19 @@ class WriteDAOD_BPHY18Stream (JobProperty): jobproperties.DerivationFrameworkProdFlags.add_JobProperty(WriteDAOD_BPHY18Stream) listAODtoDPD.append(WriteDAOD_BPHY18Stream.StreamName) +class WriteDAOD_BPHY19Stream (JobProperty): + """BPHY19: di-muon with photon conversions""" + statusOn = True + allowedTypes = ['bool'] + StoredValue = False + StreamName = 'StreamDAOD_BPHY19' + FileName = '' + isVirtual = False + DPDMakerScript = "DerivationFrameworkBPhys/BPHY19.py" + pass +jobproperties.DerivationFrameworkProdFlags.add_JobProperty(WriteDAOD_BPHY19Stream) +listAODtoDPD.append(WriteDAOD_BPHY19Stream.StreamName) + ###################################### # Defined by the MCP group ######################################