14 <input>PartGunChargedStableGenSim.root</input>
15 <output>CombinedPIDPerformance.root</output>
16 <description>This steering script fully reconstructs particle gun events for a set of charged stable particles,
17 making plots for PID performance validation</description>
18 <contact>jbennett@phy.olemiss.edu</contact>
19 <interval>release</interval>
24 from reconstruction
import add_reconstruction
26 main = basf2.create_path()
29 inputFileName =
"../PartGunChargedStableGenSim.root"
30 main.add_module(
"RootInput", inputFileName=inputFileName)
33 main.add_module(
"Gearbox")
35 main.add_module(
"Geometry")
38 add_reconstruction(main)
41 pidperformance = basf2.register_module(
'CombinedPIDPerformance')
42 pidperformance.param(
'outputFileName',
'CombinedPIDPerformance.root')
43 pidperformance.param(
'numberOfBins', 50)
44 main.add_module(pidperformance)
46 main.add_module(
"ProgressBar")
49 print(basf2.statistics)