Skip to content
Snippets Groups Projects

Update input_raw_format default value

Merged Giovanni Bassi requested to merge update_tutorial_docs into master
Files
2
@@ -12,12 +12,12 @@ This is the data type that stores raw information right after simulation.
It does not contain reconstruction information, as it has not been performed yet;
Instead, you need to run it.
This is described in the `Enable real-time reconstruction <https://lhcbdoc.web.cern.ch/lhcbdoc/moore/master/tutorials/run_with_reconstruction.html>`_ tutorial.
``input_type`` should be set to ``ROOT`` and ``input_raw_format``, to ``0.3``.
``input_type`` should be set to ``ROOT`` and ``input_raw_format``, to ``0.5``.
In summary, these lines should be added to your script::
from Moore import options
options.input_type = "ROOT"
options.input_raw_format = 0.3
options.input_raw_format = 0.5
from RecoConf.reconstruction_objects import reconstruction
@@ -34,7 +34,7 @@ It is mostly similar to the `DIGI` case, but here ``input_type`` must be set to
from Moore import options
options.input_type = "MDF"
options.input_raw_format = 0.3
options.input_raw_format = 0.5
from RecoConf.reconstruction_objects import reconstruction
Loading