Belle II Software development
klmtrigger.py
1#!/usr/bin/env python
2
3
10
11import basf2 as b2
12
13
14def add_klm_trigger(path):
15 """
16 add the gdl module to path
17 """
18 trgklm = b2.register_module('KLMTrigger')
19 path.add_module(trgklm)