Skip to content
Snippets Groups Projects
Commit e399d6f2 authored by Elmar Ritsch's avatar Elmar Ritsch Committed by Graeme Stewart
Browse files

adding BarcodeService configurations for 'MC12Plus' and 'MC15aPlus' truth...

adding BarcodeService configurations for 'MC12Plus' and 'MC15aPlus' truth strategies (ATLASSIM-1967) (BarcodeServices-00-01-02)

	* python/BarcodeServicesConfig.py,
	python/BarcodeServicesConfigDb.py - adding BarcodeService configurations
	for 'MC12Plus' and 'MC15aPlus' truth strategies (ATLASSIM-1967)
	* Tagging as BarcodeServices-00-01-02

2015-03-28  John Chapman  <John.Chapman@cern.ch>
	* python/BarcodeServicesConfig.py,
	python/BarcodeServicesConfigDb.py - add getMC15aBarcodeSvc method,
	which copies getMC12BarcodeSvc method. ATLASSIM-1909.
	* Tagging as BarcodeServices-00-01-01
parent 04123e7e
No related branches found
No related tags found
No related merge requests found
......@@ -34,6 +34,15 @@ def getMC12BarcodeSvc(name="Barcode_MC12BarcodeSvc", **kwargs):
from BarcodeServices.BarcodeServicesConf import Barcode__LegacyBarcodeSvc
return Barcode__LegacyBarcodeSvc(name, **kwargs)
def getMC12PlusBarcodeSvc(name="Barcode_MC12PlusBarcodeSvc", **kwargs):
return getMC12BarcodeSvc(name, **kwargs)
def getMC15aPlusBarcodeSvc(name="Barcode_MC15aPlusBarcodeSvc", **kwargs):
return getMC12BarcodeSvc(name, **kwargs)
def getMC15aBarcodeSvc(name="Barcode_MC15aBarcodeSvc", **kwargs):
return getMC12BarcodeSvc(name, **kwargs)
def getPhysicsProcessBarcodeSvc(name="Barcode_PhysicsProcessBarcodeSvc", **kwargs):
kwargs.setdefault("EncodePhysicsProcessInVertexBC", False )
kwargs.setdefault("FirstVertexBarcode" , -200000 )
......
......@@ -16,6 +16,9 @@ import AthenaCommon.SystemOfUnits as Units
# Common tools, services and algorithms used by jobs:
addService("BarcodeServices.BarcodeServicesConfig.getMC12BarcodeSvc" , "Barcode_MC12BarcodeSvc" )
addService("BarcodeServices.BarcodeServicesConfig.getMC12PlusBarcodeSvc" , "Barcode_MC12PlusBarcodeSvc" )
addService("BarcodeServices.BarcodeServicesConfig.getMC15aBarcodeSvc" , "Barcode_MC15aBarcodeSvc" )
addService("BarcodeServices.BarcodeServicesConfig.getMC15aPlusBarcodeSvc" , "Barcode_MC15aPlusBarcodeSvc" )
addService("BarcodeServices.BarcodeServicesConfig.getMC15BarcodeSvc" , "Barcode_MC15BarcodeSvc" )
addService("BarcodeServices.BarcodeServicesConfig.getPhysicsProcessBarcodeSvc", "Barcode_PhysicsProcessBarcodeSvc")
addService("BarcodeServices.BarcodeServicesConfig.getGlobalBarcodeService" , "Barcode_GlobalBarcodeService" )
......
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