Skip to content

Commit

Permalink
small update to setup_and_run_vertexing.md
Browse files Browse the repository at this point in the history
  • Loading branch information
baschlag committed Jun 3, 2020
1 parent 86245e9 commit e1bbcba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/howto/setup_and_run_vertexing.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ A template algorithm file with an (almost) empty ```execute()``` method to be fi
../Examples/Algorithms/Vertexing/src/ExampleAMVFAlgorithm.cpp
```
Open the file in your editor and let's start setting up the AMVF. We will start setting up all necessary components in the ```execute()``` method.
*Note:* You would normally **not** want to do all the following setup steps in the ```execute()``` method (that is run on every single event), but rather in some kind of initialization method that is executed only once (which is however not available in the lightweight example framework we will be using here).
*Note:* You would normally **not** want to do all the following setup steps in the ```execute()``` method (that is run on every single event), but rather in e.g. the constructor. For the sake of this tutorial, however, everything will be set up and run in the ```execute()``` method.

### Setting up required tools: Magnetic field and propagator
Let's start with setting up a constant magnetic field:
Expand Down

0 comments on commit e1bbcba

Please sign in to comment.