Unverified Commit a76049be authored by Stephan Lachnit's avatar Stephan Lachnit
Browse files

docs: move module_io shortcode into website layout

parent 55b290ec
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -119,8 +119,6 @@ def hugo_front_matter_convert_pandoc(string: str) -> str:
                else:
                    converted_front_matter += table_format_string.format(key, value) + '\n'
            converted_front_matter += table_enclosing_row
            # remove hugo module_io shortcode
            string_after_yaml = re.sub(r'{{% module_io %}}\n', '', string_after_yaml)

        string = converted_front_matter + string_after_yaml

+0 −2
Original line number Diff line number Diff line
@@ -9,8 +9,6 @@ module_inputs: ["PixelCharge"]
module_outputs: ["PixelHit"]
---

{{% module_io %}}

## Description

Digitization module which translates the collected charges into a digitized signal, emulating a charge sensitive amplifier with Krummenacher feedback.
+0 −2
Original line number Diff line number Diff line
@@ -9,8 +9,6 @@ module_inputs: ["PropagatedCharge"]
module_outputs: ["PixelCharge"]
---

{{% module_io %}}

## Description
Similar to the SimpleTransferModule, this module combines individual sets of propagated charges together to a set of charges on the sensor pixels and thus prepares them for processing by the detector front-end electronics. In addition to the SimpleTransferModule, where the charge close to the implants is transferred only to the closest read-out pixel, this module also copies the propagated charge to the neighboring pixels, scaled by the respective cross-coupling (i.e. `cross_capacitance / nominal_capacitance`), in order to simulate the cross-coupling between neighboring pixels in Capacitively Coupled Pixel Detectors (CCPDs).

+0 −2
Original line number Diff line number Diff line
@@ -8,8 +8,6 @@ module_maintainers: ["Simon Spannagel (<simon.spannagel@cern.ch>)", "Daniel Hynd
module_inputs: ["PixelHit"]
---

{{% module_io %}}

## Description
Takes all digitised pixel hits and converts them into Corryvreckan pixel format. These are then written to an output file in the expected format to be read in by the reconstruction software. Will optionally write out the MC Truth information, storing the MC particle class from Corryvreckan. It is noted that the time resolution is hard-coded as `5ns` for all detectors due to time structure of written out events: events of length `5ns`, with a gap of `10ns` in between events.

+0 −2
Original line number Diff line number Diff line
@@ -8,8 +8,6 @@ module_maintainers: ["Enrico Junior Schioppa (<enrico.junior.schioppa@cern.ch>)"
module_inputs: ["all objects in simulation"]
---

{{% module_io %}}

## Description
This module enables writing the simulation output into a postgreSQL database.
This is useful when fast I/O between applications is needed (e.g. real time visualization and/or analysis).
Loading