Belle II Software  release-05-02-19
hltDQManalysis.py
1 import basf2
2 
3 path = basf2.create_path()
4 
5 path.add_module('DQMHistAnalysisInputRootFile', FileList="dqm_histo.root")
6 path.add_module('DQMHistAnalysisHLT', bhabhaName="accept_bhabha_all", columnMapping={
7  "accept_hadron": "hadron",
8  "accept_bhabha_all": "bhabha_all",
9  "accept_mumutight": "mumutight",
10  "accept_gamma_gamma": "gamma_gamma",
11  "accept_radmumu": "radmumu",
12  "accept_offip": "offip",
13  "cosmic": "cosmic",
14 }, l1Histograms=["fff", "ffo", "lml0", "ffb", "fp"],
15  retentionPerUnit=[
16  "ge3_loose_tracks_inc_1_tight_not_ee2leg",
17  "Elab_gt_0.5_plus_2_others_with_Elab_gt_0.18_plus_no_clust_with_Ecms_gt_2.0",
18  "selectee",
19  "Estargt2_GeV_cluster", ])
20 path.add_module('DQMHistAnalysisOutputFile', SaveHistos=False, SaveCanvases=True)
21 
22 basf2.print_path(path)
23 basf2.process(path)
basf2.process
def process(path, max_event=0)
Definition: __init__.py:25