Belle II Software  release-05-01-25
test1_TCPV.py
1 #!/usr/bin/env python3
2 # -*- coding: utf-8 -*-
3 
4 
5 """
6 <header>
7  <input>../TCPV.dst.root</input>
8  <output>../TCPV.udst.root</output>
9  <contact>reem.rasheed@iphc.cnrs.fr</contact>
10 </header>
11 """
12 
13 
14 import basf2 as b2
15 import modularAnalysis as ma
16 from skim.tdcpv import TDCPV
17 
18 path = b2.Path()
19 
20 fileList = ['../TCPV.dst.root']
21 ma.inputMdstList('default', fileList, path=path)
22 
23 skim = TDCPV(OutputFileName='../TCPV.udst.root')
24 skim(path)
25 b2.process(path)
skim
Definition: __init__.py:1
skim.tdcpv
Definition: tdcpv.py:1