| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
parent directory.. | ||||
This is a short documention for the DPL-DigitizerWorkflow example
At present, the o2-sim-digitizer-workflow executable is a demonstrator of how we intend to do initiate and handle the processing of hits, coming from detector simulation.
The o2-sim-digitizer-workflow currently demonstrates the transformation of hits into TPC digits using realistic bunch crossing and collision sampling. We are also able to overlay hits from background and signal hit inputs.
The main components of the o2-sim-digitizer-workflow are
The SimReader device:
The TPC digitizier device:
The o2-sim-digitizer-workflow executable is already somewhat configurable, both in terms of workflow/topology options as well as individual device options. Some help is available via
o2-sim-digitizer-workflow --help
Other features are demonstrated in he following section.
Let's assume we have a background hit file o2sim_bg.root generated by the O2 simulation with
o2-sim -n 20 -g SOMEBACKGROUNDEVENTGENERATOR -m [detectors] -o o2sim_bg.root
Similar for a signal file o2sim_sg.root
o2-sim -n 50 -g SOMESIGNALEVENTGENERATOR -m [detectors] -o o2sim_sg.root
How can I digitize all sectors for the given background event?
o2-sim-digitizer-workflow -b --simFile o2sim_bg.root
This will run as many TPC digitizer processors as there are logical CPU cores on your machine in parallel. (Note that depending on your available memory, this might cause problems as the digitization needs lots of memory; It might be safer to start with a small number of workers as indicated under point 3.).
How can I only digitize sectors TPC sectors 1 + 2 for the given background event?
o2-sim-digitizer-workflow -b --tpc-sectors=1,2 --simFile o2sim_bg.root
How can I digitize sectors 1-8 using only 2 TPC digitizer devices?
o2-sim-digitizer-workflow -b --tpc-lanes=2 --tpc-sectors=1,2,3,4,5,6,7,8 --simFile o2sim_bg.root
How can I digitize a total of 100 sampled collisions merging background and signal hits for TPC sector 1?
o2-sim-digitizer-workflow -b --tpc-sectors=1 --simFile o2sim_bg.root --simFileS o2sim_sg.root -n 100
At present the digitizer write individual digit files for each sector with names tpc_digi_22_.... It is planned asap to make this more configurable and to outsource the writing to ROOT files in a different device.
Configuration of the workflow via environment variables is going to be substituted via a proper mechanism once this is implemented by DPL.
Digitizers for other detectors shall be added.
The polay distribution should be commicated via CDB or some init mechanism.
| Back | FazBrowse Home | New Git URL |