Skip to content
Snippets Groups Projects
Commit 61b2c06c authored by Claire Antel's avatar Claire Antel :sunny:
Browse files

making naive=False default for WaveReco

parent 99792a6b
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ from OutputStreamAthenaPool.OutputStreamConfig import OutputStreamCfg ...@@ -5,7 +5,7 @@ from OutputStreamAthenaPool.OutputStreamConfig import OutputStreamCfg
# One stop shopping for normal FASER data # One stop shopping for normal FASER data
def CaloWaveformDigitizationCfg(flags, naive = False): def CaloWaveformDigitizationCfg(flags):
""" Return all algorithms and tools for Waveform digitization """ """ Return all algorithms and tools for Waveform digitization """
acc = ComponentAccumulator() acc = ComponentAccumulator()
......
...@@ -5,7 +5,7 @@ from OutputStreamAthenaPool.OutputStreamConfig import OutputStreamCfg ...@@ -5,7 +5,7 @@ from OutputStreamAthenaPool.OutputStreamConfig import OutputStreamCfg
# One stop shopping for normal FASER data # One stop shopping for normal FASER data
def ScintWaveformDigitizationCfg(flags, naive = False): def ScintWaveformDigitizationCfg(flags):
""" Return all algorithms and tools for Waveform digitization """ """ Return all algorithms and tools for Waveform digitization """
acc = ComponentAccumulator() acc = ComponentAccumulator()
......
...@@ -11,7 +11,7 @@ WaveformReconstructionTool = CompFactory.WaveformReconstructionTool ...@@ -11,7 +11,7 @@ WaveformReconstructionTool = CompFactory.WaveformReconstructionTool
ClockReconstructionTool = CompFactory.ClockReconstructionTool ClockReconstructionTool = CompFactory.ClockReconstructionTool
# One stop shopping for normal FASER data # One stop shopping for normal FASER data
def WaveformReconstructionCfg(flags, naive = True): def WaveformReconstructionCfg(flags, naive = False):
""" Return all algorithms and tools for Waveform reconstruction """ """ Return all algorithms and tools for Waveform reconstruction """
acc = ComponentAccumulator() acc = ComponentAccumulator()
......
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