TbUT analysis software
This page provides information about the
TbUT package. The software is a part of the
Kepler project
. The main aim of this software is to perform whole processing of the testbeam data using
Gaudi framework
.
Contact persons
Adam Dendek
Mail
Setup
To setup the
TbUT you just need to:
Running the TbUT software
The
TbUT software can be run in two modes,
Pedestal and
Run. The description below contains instructions on how to run
TbUT in
standalone mode (no other Kepler stuff).
You should also look at the
Tools for the LHCb Software Environment TWiki page for a better understanding how to run Gaudi-like application.
Pedestal mode -- computing the pedestals
- The aim of the pedestal training is to calculate the pedestals values, which will then be used in Run mode in order to subtract the pedestal from the raw data during execution of the Pedestal Subtraction algorithm.
- In this mode only 2 algorithms are executed :
Raw Data Reader
and Pedestal Subtractor
for more detailed description of this algorithms look to the developers section.
- Preparation of the options. You just need to modify the file (
Tb/TbUT/options/TbUTPedestal.py
): option name | brief description |
app.inputData | type of string, contains path to the input data |
app.eventMax | type of integer, number of event to process |
app.app.pedestaOutputData | type of string, contains path to the output file ( contains pedestal values) |
Run mode
- In run mode the TbUT performs the whole processing of testbeam data.
- In this mode all processing algorithms are executed.
algorithm | brief description |
Raw Data Reader | Reads raw data from the DUT (Mamba board output) and saves the output into the TES |
Pedestal Subtractor | Gets raw data from the TES, removes the calculated pedestals from the Pedestal mode run, and stores the output into theTES |
Common Mode Subtractor (CMS) | Gets data after Pedestal Subtraction; removes the common mode noise, a single value per 32 Beetle channels (mean value of ADC); save the output into the TES |
Cluster Creator | Gets data after CMS, create clusters and saves it information in the TES |
Beyond the listed algorithms, a set of corresponding monitoring algorithms has been implemented. The detailed descriptions of processing and monitoring algorithms see
developers section.
- Preparation of the options. You just need to modify the file (
Tb/TbUT/options/TbUTRun.py
): option name | brief description |
app.inputData | type of string, contains path to the input data |
app.eventMax | type of integer, number of event to process |
app.pedestalInputData | type of string, contains path to pedestal file (created during execution TbUT in Pedestal mode) |
app.eventNumberDisplay | type of integer, informs how many event snapshots will be saved (see section exemplary outputs ) |
Known issues
- The TbUT cannot read eos files. *workaround: copy analysed file into your work directory.
- TbUT (run mode) need to be run executed to correct calculate noise and extract clusters.
- The tools should inherit from GaudTool class.
- The unit test have to be implemented
Developers section
General overview
Every
TbUT component class is a member of
TbUT
namespace.
Algorithms
The
TbUT is a Gaudi based application. The application is separated into two sets of Gaudi algorithms. First group is responsible for processing the testbeam data. This algorithms inherit from
GaudiAlgorithm class.
The names of it contains string
Algorithm
for instance
TbUTRawDataReaderAlgorithm
.
To understand TbUT source code, the algorithm classes should be treated as a starting point
The second group was designed to prepare monitoring plots. This classes inherit from base called
TbUTDataMonitorAlgorithm
( see also
implementation 
).
According to the file name convention it's names have to contains string
DataMonitorAlgorithm
in their's file names. E.g.
TbUTPedestalSubtractorDataMonitorAlgorithm
.
Tools
That kind of classes are responsible of performing the data modification. Each of this inherit from virtual interface called
IProcessingEngine
, therefore they have to implement
processEvent
method.
Tool's Factories
This kind of classes are responsible for dynamic, depend of options, creation of proper version of tools. This classes based on
Factory design pattern
(see also the
beautiful explanation
why is is so useful). See for example
Raw Data Reader Factory
and it
implementation
Other types
- Data structures (inherits from
GaudiKernel/DataObject
) are used to be manipulated via the tools and be stored in TES. The TbUT package contains Raw Data
and Clusters
.
- Additional data structures. Can be distinguished noise
and pedestals
. Their are used as a auxiliary structures by the tools.
- Additional services. Used for manipulation of the additional data structures. See for instance Noise Calculator
. Each of this services has own interface ( e.g. Noise calculator are based on INoiseCalculator
).
TbUT high level architecture
Description of the algorithms
Raw Data Reader
This algorithm is designed to read raw data from specific input file. Currently TbUT can work with files produced by Alibava and Mamba DAQs. The heart of this algorithm is tool inherit from interface IDataReader . This tool acts fascade for specific DAQ reader.
The execution of Raw Data Reader can be modified using options:
option name |
brief description |
InputDataType |
type of string, choose one of DAQs data format (Mamba or Alibava) |
inputData |
type of string, path to the input data. |
standalone |
type of boolean, if is true the run is executed with Kepler (haven't been tested yet) |
Pedestal Subtractor
The pedestal subtraction algorithm has two phases. In first, optional one, the pedestal values are calculated. This phase is also called training. During the second one the determined pedestal values are subtracted from the raw ADC data.
From technical point of view the Pedestal Subtractor Algorithm calls two types of tools. One of them calculates or retrieves pedestals values( this classes inherit from I pedestal following ) and the second one remove pedestals values from the raw data. See data flow.
The execution of Pedestal Subtractor Algorithm can be modified using options:
option name |
brief description |
ChannelMaskInputLocation |
type of string, location of the channel mask |
FollowingOption |
type of string, choose type of execution (training or run) |
PedestalInputFile |
type of string, path to the location where previously calculated pedestals are stored |
PedestalOutputFile |
type of string, path to the location where calculated pedestal have to be stored |
standalone |
type of boolean, if is true the run is executed with Kepler (haven't been tested yet) |
treningEntry |
type of integer, number of training entry |
Pedestal following
From the mathematical point of view the calculation of the pedestal can be described as a running average. In every training event then pedestal sum is updated. This update takes into account the previous value of the pedestal sum and the current ADC count. The pedestal sum is calculated for each channel separately. To be more precisely, the pedestal sum, , for channel and event can be expressed as follows:
Where the is a event to pedestal correction. This correction is expressed as:
To increase the suitability of the pedestal the limit for correction is applied. If the condition:
is not fulfilled the correction value is set to 15.
To determinate the pedestal values the pedestal sum should be normalized, so:
Pedestal removing algorithm
The second phase of the pedestal subtraction algorithm is subtraction determined pedestal values from the raw data. This procedure can be expressed as fallows:
where: is signal value after pedestal subtraction for event , is a raw data and the is the pedestal value. Each of this quantities are in the unit of ADC counts.
Additional scripts
All scripts are stored in TbUT/scripts directory. (Not yet committed)
- Noise monitor This script takes as an input noise file. The exemplary output:
|
-- AdamMateuszDendek - 2015-08-03
This topic: LHCb > WebPreferences > TbUT
Topic revision: r7 - 2015-09-01 - AdamMateuszDendek
 Copyright &© 2008-2021 by the contributing authors. All material on this collaboration platform is the property of the contributing authors. or Ideas, requests, problems regarding TWiki? use Discourse or Send feedback
|