Skip to content

Commit

Permalink
more
Browse files Browse the repository at this point in the history
  • Loading branch information
VanyaBelyaev committed Mar 3, 2018
1 parent 07cef91 commit 4eb0868
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
6 changes: 4 additions & 2 deletions SUMMARY.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
# Summary

* [The bender tutorials](README.md)
* [Contributing](CONTRIBUTING.md)

----

* [Getting started](getting-started/README.md)
* [Examples of formatting](getting-started/formatting-examples.md)
* [The first two (almost useless) examples](getting-started/twouseless.md)
* [The first algorithms](getting-started/firstalgorithms.md)
* [Loops & compounds](getting-started/createcompounds.md)
Expand All @@ -30,4 +28,8 @@

----

* [Contributing](CONTRIBUTING.md)
* [Examples of formatting](getting-started/formatting-examples.md)

----
* [Download PDF](ref://bender-tutorials.pdf)
11 changes: 9 additions & 2 deletions advanced-bender/fill.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@
The n-tuple filling functionality, described [above](getting-started/firstalgorithms.md) is
drasticlaly extended using the functions from `BenderTools.Fill` module.
The import of this module add following functions to the base class `Algo`:

| Method | Short description |
| --- | --- |
| `treatPions` | add information about pions |
| `treatKaons` | add information about kaons |
| `treatProtons' | add information about protons |
| `treatProtons` | add information about protons |
| `treatMuons` | add information about muons |
| `treatPhotons` | add information about photons |
| `treatDiGammas` | add information about di-photons (pi0, eta,...) |
Expand All @@ -17,4 +18,10 @@ The import of this module add following functions to the base class `Algo`:
| `addRecSummary` | add rec-summary information |
| `addGecInfo` | add some GEC-info |

q
These methods can be considered as a kind of very light _tuple-tools_.
All of them are (well) documented and one can easily inspect them:
```python
import BenderTools.Fill
from Bender.Main import Algo
help(Algo.treatPions)
```

0 comments on commit 4eb0868

Please sign in to comment.