12from tracking
import add_tracking_reconstruction
13from simulation
import add_simulation
18main = b2.create_path()
21main.add_module(
'EventInfoSetter', expList=[0], runList=[1], evtNumList=[100])
22main.add_module(
'EvtGenInput', logLevel=b2.LogLevel.INFO)
24add_simulation(main, forceSetPXDDataReduction=
True, usePXDDataReduction=
False)
26add_tracking_reconstruction(main, [
'SVD',
'CDC'], mcTrackFinding=
True)
28main.add_module(
'PXDROIFinder',
29 recoTrackListName=
'RecoTracks',
30 PXDInterceptListName=
'PXDIntercepts',
32 logLevel=b2.LogLevel.DEBUG)
34main.add_module(
'PXDROIFinderAnalysis',
35 recoTrackListName=
'RecoTracks',
36 PXDInterceptListName=
'PXDIntercepts',
39 rootFileName=
'pxdDataRedAnalysis_SVDCDC_MCTF_test',
40 logLevel=b2.LogLevel.RESULT)
41main.add_module(
'Progress')