response Module
For simulating the detector response function, mostly to integrate charge
apply_response(response, electrons)
Apply the response function to get a signal amplitude, integral
Scale the response by the number of electrons. Retrieve the amplitude, integral of the response in ADC units. Signals above 11-bit max (4096) are clipped
Parameters:
Name | Type | Description | Default |
---|---|---|---|
response
|
ndarray
|
The response signal |
required |
electrons
|
float
|
The number of electrons to scale by |
required |
Returns:
Type | Description |
---|---|
tuple[float, float]
|
The signal amplitude, integral respectively |
Source code in src/attpc_engine/detector/response.py
get_response(config)
Theoretical response function of GET electronics provided by the chip manufacturer. See https://doi.org/10.1016/j.nima.2016.09.018.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
config
|
Config
|
The simulation configuration |
required |
Returns:
Type | Description |
---|---|
ndarray
|
Returns 1xNUM_TB array of the response function evaluated at each time bucket |