This shows you the differences between two versions of the page.
Both sides previous revision Previous revision | |||
2015:groups:tools:lhaad:proposalgrenoble [2016/02/26 14:12] daniel.schmeier |
2015:groups:tools:lhaad:proposalgrenoble [2016/02/26 14:26] (current) daniel.schmeier |
||
---|---|---|---|
Line 66: | Line 66: | ||
==== function ===== | ==== function ===== | ||
<code autoconf> | <code autoconf> | ||
+ | ALTERNATIVE 1 | ||
function function_name | function function_name | ||
arg1 type-of-arg1:name-of-arg1 | arg1 type-of-arg1:name-of-arg1 | ||
Line 74: | Line 75: | ||
</code> | </code> | ||
+ | ALTERNATIVE 2 | ||
<code autoconf> | <code autoconf> | ||
function function_name | function function_name | ||
Line 91: | Line 93: | ||
Example: | Example: | ||
<code autoconf> | <code autoconf> | ||
+ | ALTERNATIVE 1 | ||
function isolation | function isolation | ||
### Sums up activity in the vicinity of a given candidate | ### Sums up activity in the vicinity of a given candidate | ||
Line 102: | Line 105: | ||
doc http://google.de | doc http://google.de | ||
| | ||
+ | ALTERNATIVE 2 | ||
function isolation | function isolation | ||
### Sums up activity in the vicinity of a given candidate | ### Sums up activity in the vicinity of a given candidate | ||
- | arg1 candidate # a single electron, muon or photon | + | arg1 cand # a single electron, muon or photon |
- | arg2 isosource # "calo", "tracks", "eflow" | + | arg2 src # "calo", "tracks", "eflow" |
arg3 dR # dR cone to be probed | arg3 dR # dR cone to be probed | ||
arg4 ptmin # minpt of objects to be counted | arg4 ptmin # minpt of objects to be counted | ||
Line 140: | Line 144: | ||
### Loose muons | ### Loose muons | ||
take external | take external | ||
- | select isolation(muon_l.?, 'tracks', 0.4, 0.5)<0.1 | + | select isolation(cand=muon_l.?, src='tracks', dR=0.4, ptmin=0.5)<0.1 |
code http://muons.mu | code http://muons.mu | ||
doc http://checkmate.muons.mu | doc http://checkmate.muons.mu | ||
Line 147: | Line 151: | ||
### loose electrons | ### loose electrons | ||
take external | take external | ||
- | select isolation(elec_l.?, 'tracks', 0.4, 0.5)<0.1 | + | select isolation(cand=elec_l.?, src='tracks', dR=0.4, ptmin=0.5)<0.1 |
- | reject overlap(elec_l.?, muon_l, 0.4) | + | reject overlap(cand=elec_l.?, neigb=muon_l, dR=0.4) |
code http://elecs.el | code http://elecs.el | ||
doc http://checkmate.elecs.el | doc http://checkmate.elecs.el | ||
Line 155: | Line 159: | ||
### medium electrons | ### medium electrons | ||
take elec_l | take elec_l | ||
- | select hasMediumTag(elec_l.?) | + | select hasMediumTag(cand=elec_m.?) |
code http://elecs.el/medium | code http://elecs.el/medium | ||
doc http://checkmate.elecs.el/medium | doc http://checkmate.elecs.el/medium |