Commit 79254952f8af37566660982506815365265ff929
1 parent
da777eb5
Update Readme
Showing
1 changed file
with
8 additions
and
2 deletions
Show diff stats
README.md
... | ... | @@ -8,10 +8,16 @@ In your steering file add the module as normal (For b2bii data set `BelleFlag = |
8 | 8 | ```python |
9 | 9 | dualTrackTagger = register_module("DualTrackTagger") |
10 | 10 | dualTrackTagger.param("BelleFlag",True) |
11 | +dualTrackTagger.param("MCFlag",True) # if this flag is selected additional truth histograms are output | |
12 | +dualTrackTagger.param("particleLists",["pi+:95eff"]) #input particle lists | |
11 | 13 | analysis_main.add_module(dualTrackTagger) |
12 | 14 | ``` |
13 | 15 | |
14 | -Save decision to output nTuple via CustomFloats extraInfo, example: | |
16 | +Save decision and other info to output nTuple via CustomFloats extraInfo, example: | |
15 | 17 | ```python |
16 | -tools += ['CustomFloats[extraInfo(DualTrack)]','K_S0 -> ^pi+ ^pi-'] | |
18 | +tools += ['CustomFloats[extraInfo(CurlTrack)]','^pi+'] #If track was marked curl (1 or 0) | |
19 | +tools += ['CustomFloats[extraInfo(ClusterSize)]','^pi+'] #How many tracks are considered possible curls/duplicates of each other | |
20 | + | |
21 | +#only for MC | |
22 | +tools += ['CustomFloats[extraInfo(genParticleIndexMultiplicity)]','^pi+'] #Multiplicity of particles genParticleIndex, should correspond to number of reconstructed particles for single generated particle | |
17 | 23 | ``` |
18 | 24 | \ No newline at end of file | ... | ... |