Skip to content
Snippets Groups Projects
Commit 95a38e1b authored by Marcelo Vogel's avatar Marcelo Vogel Committed by Graeme Stewart
Browse files

Added output type NTUP_MUONCALIB to RAWtoALL (RecJobTransforms-02-00-05)

	* share/skeleton.RAWtoALL_tf.py
	- Add new output type NTUP_MUONCALIB
	- Tagging RecJobTransforms-02-00-05

2016-06-15 Marcelo Vogel <mavogel@cern.ch>
	* share/skeleton.MergePool_tf.py
	- Keep track parameters from first measurement in AOD merging (ATLASJT-324).
	- Tagging RecJobTransforms-02-00-04
parent d7836e57
No related merge requests found
...@@ -37,6 +37,8 @@ if len(DAOD_Output_Key) is 1: ...@@ -37,6 +37,8 @@ if len(DAOD_Output_Key) is 1:
if hasattr(runArgs,"inputFile"): athenaCommonFlags.FilesInput.set_Value_and_Lock( runArgs.inputFile ) if hasattr(runArgs,"inputFile"): athenaCommonFlags.FilesInput.set_Value_and_Lock( runArgs.inputFile )
if hasattr(runArgs,"inputAODFile"): if hasattr(runArgs,"inputAODFile"):
from InDetRecExample.InDetKeys import InDetKeys;
InDetFlags.keepAdditionalHitsOnTrackParticle.set_Value_and_Lock(True)
rec.readAOD.set_Value_and_Lock( True ) rec.readAOD.set_Value_and_Lock( True )
rec.doWriteAOD.set_Value_and_Lock( True ) rec.doWriteAOD.set_Value_and_Lock( True )
athenaCommonFlags.PoolAODInput.set_Value_and_Lock( runArgs.inputAODFile ) athenaCommonFlags.PoolAODInput.set_Value_and_Lock( runArgs.inputAODFile )
......
...@@ -84,6 +84,11 @@ if hasattr(runArgs, "outputTXT_FTKIPFile"): ...@@ -84,6 +84,11 @@ if hasattr(runArgs, "outputTXT_FTKIPFile"):
rec.doTau.set_Value_and_Lock(False) rec.doTau.set_Value_and_Lock(False)
rec.doTrigger.set_Value_and_Lock(False) rec.doTrigger.set_Value_and_Lock(False)
rec.UserAlgs=["FastTrackSimWrap/FastTrackSimWrap_jobOptions.py"] rec.UserAlgs=["FastTrackSimWrap/FastTrackSimWrap_jobOptions.py"]
if hasattr(runArgs,"outputNTUP_MUONCALIBFile"):
from MuonRecExample.MuonRecFlags import muonRecFlags
muonRecFlags.doCalib = True
muonRecFlags.calibNtupleOutput.set_Value_and_Lock( runArgs.outputNTUP_MUONCALIBFile )
# Event display tarballs # Event display tarballs
if hasattr(runArgs, 'outputTXT_JIVEXMLTGZFile'): if hasattr(runArgs, 'outputTXT_JIVEXMLTGZFile'):
......
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