Commit 26ea39d9b93630eb0e25cd0970eab5307f766a5b
1 parent
6bb15422
Update Readme
Showing
1 changed file
with
7 additions
and
5 deletions
Show diff stats
README.md
... | ... | @@ -3,13 +3,15 @@ place the files in analysis/modules/ and compile as normal (scons). |
3 | 3 | |
4 | 4 | |
5 | 5 | ** Running: ** |
6 | -In your steering file add the module as normal (For b2bii data set BelleFlag = True): | |
6 | +In your steering file add the module as normal (For b2bii data set `BelleFlag = True`): | |
7 | 7 | |
8 | +```python | |
8 | 9 | dualTrackTagger = register_module("DualTrackTagger") |
9 | 10 | dualTrackTagger.param("BelleFlag",True) |
10 | 11 | analysis_main.add_module(dualTrackTagger) |
12 | +``` | |
11 | 13 | |
12 | -Save decision to output nTuple via CustomFloats extraInfo, example: | |
13 | -tools += ['CustomFloats[extraInfo(DualTrack)]','K_S0 -> ^pi+ ^pi-'] | |
14 | - | |
15 | - | |
14 | +Save decision to output nTuple via CustomFloats extraInfo, example: | |
15 | +```python | |
16 | +tools += ['CustomFloats[extraInfo(DualTrack)]','K_S0 -> \^pi+ \^pi-'] | |
17 | +``` | |
16 | 18 | \ No newline at end of file | ... | ... |