Next Article in Journal
Polyethylene Identification in Ocean Water Samples by Means of 50 keV Energy Electron Beam
Next Article in Special Issue
Optical Readout of the ARIADNE LArTPC Using a Timepix3-Based Camera
Previous Article in Journal
Development of Radiation-Tolerant HTS Magnet for Muon Production Solenoid
Previous Article in Special Issue
First Demonstration of a Pixelated Charge Readout for Single-Phase Liquid Argon Time Projection Chambers
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

TITUS: Visualization of Neutrino Events in Liquid Argon Time Projection Chambers

1
Argonne National Labpratory, Lemont, IL 60439, USA
2
Fermi National Accelerator Laboratory, Batavia, IL 60510, USA
*
Author to whom correspondence should be addressed.
Submission received: 24 September 2020 / Revised: 12 October 2020 / Accepted: 14 October 2020 / Published: 21 October 2020
(This article belongs to the Special Issue Liquid Argon Detectors: Instrumentation and Applications)

Abstract

:
The amount and complexity of data recorded by high energy physics experiments are rapidly growing, and with these grow the difficulties in visualizing such data. To study the physics of neutrinos, a type of elementary particle, scientists use liquid argon time projection chamber (LArTPC) detectors, among other technologies. LArTPCs have a very high spatial resolution and resolve many of the elementary particles that come out of a neutrino interacting within the argon in the detector. Visualizing these neutrino interactions is of fundamental importance to understanding the properties of neutrinos, but also monitoring and checking on the detector conditions and operations. From these ideas, we have developed TITUS, an event display that shows images recorded by these neutrino detectors. TITUS is a piece of software that reads data coming from LArTPC detectors (as well as the corresponding simulation) and allows users to explore such data in multiple ways. TITUS is flexible to enable fast prototyping and customization.

1. Introduction

Neutrinos are elementary particles that have many properties that are not yet understood. Many physics experiments are currently focused on studying neutrinos, and many of the current experiments are now employing a piece of detector technology called the liquid argon time projection chamber (LArTPC). These detectors are used to create digital images of the neutrino interactions with matter, which allow scientists to study and understand many of the properties of the neutrinos.
LArTPC detectors are at the forefront of experimental neutrino research, building larger and larger experiments, such as the Short Baseline Neutrino Program at Fermilab [1], the ProtoDUNE experiments at CERN [2], and eventually, the Deep Underground Neutrino Experiment (DUNE) [3,4,5]. The operational principle of a LArTPC detector is illustrated in Figure 1. In LArTPC detectors, charged particles traversing the volume filled with liquid argon release trails of ionization electrons, which are transported to one side of the detector thanks to an electric field. Here, the electrons are read out thanks to a series of sense wires. There are usually two or more planes of sense wires and the electrons induce a signal on the first planes (orange and green in the picture) and are collected on the last plane (blue) where electric field lines terminate. The result is a collection of waveforms from every single wire. The amplitude of such waveforms depends on the amount of detected electron charge, which changes as some particles are more ionizing than others. Placing all the waveforms next to each other gives rise to an image, and in the end, each LArTPC digitizes a collection of 2D image-like signals, across several projections of 3D space corresponding to the wire orientation on the different wire planes (in the figure, the images result in a top-down projection, and at two angles offset from vertical). The waveforms that make the images are digitized at up to 2 MHz timing resolution. The collection of projected images from the same 3D interaction is referred to as an event. In the smallest detector of those mentioned above, the images produced have a resolution of ( 2400 × 9600 ) pixels for two images at angles, and a resolution of ( 3456 × 9600 ) pixels for the vertical image.
With these detectors that provide such incredible insights into the neutrinos, a visualization tool is required to display the images of the neutrino interactions. The tool must be interactive and accommodate the unique nature of this data (multiple simultaneous projections of 3D space), as well as the large image size. Additionally, for the analysis of this data, we must also visualize the higher-level data products derived from these images, such as the detected charge from particle interactions, the clustered depositions, and even the projection of objects from 3D (from high-level analysis) onto the 2D planes.
From these ideas comes TITUS: an event display to visualize neutrino interactions in time projection chambers. This display is currently in use in many neutrino experiments at the Fermi National Accelerator Laboratory: MicroBooNE, SBND, and ICARUS [1,6,7]. Additionally, techniques developed for TITUS have been extended to visualize other neutrino experiments, including ProtoDUNE and LArIAT [8]. Three examples of event visualization with TITUS are shown in Figure 2.
The philosophy behind TITUS is to develop a software package that allows users to easily customize the displayed objects and quickly add new ones that may be needed by particular physics analyses. Each type of data is rendered with only a few lines of Python, meaning a user can easily understand and extend a rendering routine. As an example, it is trivial to change the color of reconstructed tracks if they are reconstructed as “neutrino” in origin instead of “cosmic” background. The speed and simple layout of this viewer, alongside its simple customization, significantly shortens the time it takes to go from a raw data file to visualized content, hence speeding up physics analyses.

2. Related Work

LArTPC technology has been in large scale experiments, beyond the R&D phase, for fundamental physics for nearly two decades, and we are not the first to visualize the data. We took inspiration from the visualization tools of larsoft [10] and ICARUS’s QScan [11], but recreated from scratch a modern tool that incorporates successes from the past with modern software practices.
The visualization tool from the larsoft software package allowed users to accurately image neutrino interactions; however, it contained fundamental shortcomings. First, images are based on rendering 2D histograms from the ROOT [12] package, which was slow and memory intensive. Second, the configuration of the viewer was C++ based and not trivial to modify or customize by a user.
A predecessor of the larsoft event display is QScan [11], a tool developed by the ICARUS collaboration. QScan used Qt [13] to render images and create interactions with user, a practice we have adopted with TITUS as well. However, QScan was developed exclusively for the ICARUS collaboration, and we have developed instead a cross-platform tool that works with multiple experiments in neutrino physics. Further, QScan is a pure C++ program, but we have implemented a Python-based front-end to lower the customization barrier for users.

3. Challenges

There are several unique challenges to developing a tool to accurately and efficiently display a LArTPC image set, while most importantly enhancing the ability of a physicist to understand and analyze the data. First, a physicist is typically interested in viewing a single event in an intuitive way, including all aspects of that event. This includes raw data, which are typically large and cumbersome for traditional rendering programs to process. This also includes derived data products, including, for example, reconstructed locations of signal depositions or the projection of a reconstructed 3D track onto original images for validation. LArTPC detectors have a non-trivial geometry, and the complexities of producing a mapping from 2D to 3D in a visual tool encourage a dedicated tool such as TITUS.
Additionally, the large collaborative structure of these experiments implies that one physicist may not necessarily be aware of all of the derived data products, nor aware of the relations between them. This challenge naturally does not apply only to neutrino physics, but to any complex dataset. Nevertheless, in TITUS we have striven to present an intuitive, easy-to-use application that presumes no prior knowledge from the reader. Anything available to be visualized is easy to do so, with nothing “hidden”.
A last obstacle for a user to visualize neutrino data is the data format itself. While there are very many visualization techniques available in nearly every programming language, most assume the user is able to easily retrieve the raw objects from file that they want to visualize. In the case of neutrino physics, the large and complex datasets have given rise to dedicated data structures that are unique, and consequently, not intuitive to a non-expert. The field of visualization, applied to neutrino physics, therefore, requires tools that lower the barrier to entry for physicists in all aspects: geometrical complexity, data availability, and data access. TITUS specifically addresses all of these aspects.

4. Data Description

Data are stored in ROOT [12] files with custom layers produced by larsoft, built upon the art framework [14]. Access of the data is performed using gallery [15], a lightweight access tool for art data products. There are no images stored in the files, but rather, each column of pixels is stored as an array, with columns in arbitrary order. This arises from the data collection and digitization scheme, which can be explored further here [16,17]. Each data file contains several events, and each event is a collection of raw image data along with derived objects and metadata. Metadata includes high-level event indexing, typically denoted with “run,” “subrun,” and “event” indexes, as well as timestamps for data collection and whether the event is recorded from a detector or simulated.
Derived data products, such as the identification of charge depositions in a column of pixels (referred to as a “hit”) are typically created in offline reconstruction and analysis modules in the larsoft package (such as the GaussHitFinder [18]). Products are stored via a standardized serialization model, which for “hits” includes the central location, width, peak, and corresponding uncertainties. While the algorithm to find charge depositions (or other data products) may vary, the data product model is fixed by the larsoft package. The raw image data, stored in a column of pixels referred to as a “wire” (the name comes from the wire-based readout system in the physical detectors) are connected to the derived “hits” through associations of data products in larsoft.

5. System Architecture and Implementation

The TITUS display is designed to be fast, intuitive, and extensible. To support this, we have developed the entire interface through PyQt [13,19], and use the PyQtGraph [20] package to efficiently render images with OpenGL. The larsoft package is exclusively C++, while we want to enable customization and extensibility through Python. To do this, we have created C++ processing kernels, along with wrappers to enable them in Python, enabling optimized data fetching with easy access to the data products in Python. For each event to be visualized, the data processing kernel is enabled by the GUI through the actions of the user: if a user selects raw images or derived products to be drawn (typically through a drop-down menu in the GUI), the appropriate kernel is added to the list of processing kernels and it’s visualization routines are called.
At each change of event, or when the user changes the features to be drawn, the event is re-processed and re-rendered. The user also has the ability to jump to random events in the file they are using, allowing the physicist user to seek events of interest. When data products are present in a file but not requested to be drawn, they are not read from disk, which enables fast loading of the viewer and similarly fast random access of events from files.

6. Data Processing

Upon the first opening of a file, TITUS scans all available data products in the file and creates a list of identifiers for each data product. As experimental software, with diverse research teams designing multiple algorithms to produce similar derived data products, the larsoft framework supports creation and serialization of multiple instances of each data product. As an example, there are several algorithms to find the depositions of charge upon each sense wire, and therefore multiple independent collections of “hits”. TITUS will identify all instances of “hits” data products (for example), and collect their identification string for the user to select from. In the right column of the display, seen in Figure 3, the user will see “- -None- -” for data products not present in the file, and “- -Select- -” for data products that are available in the file.
For each data-processing kernel the user has selected, a minimal amount of data processing is performed. Typically, the data is retrieved from file as an std::vector<[DataProduct]> object, where the data product contains significantly more information than needs to be rendered. The TITUS processing kernels, therefore, inspect the data product arrays, copy only the necessary information to a structure, and expose that structure to Python to render via the PyQt package.
Exceptions to the processing scheme are the image-like data products, known as “rawdigit” for the raw detector data, and “wire” for the de-convolved and noise-removed image data. In this case, TITUS reads each wire (which do not necessarily come in order) and copies the raw data into a memory buffer large enough to hold the entire image. The buffer is then wrapped in a NumPy PyArray_Object, which is passed to the Python rendering tools. A flowchart of the data processing is shown in Figure 4.

7. Visual Design

The main user interface is encapsulated in several Python classes to build a centralized view window with surrounding interactive features. As can be seen in Figure 3, the bulk of the display is used for visualizing the data, with the ability to pan, zoom, stretch, and export the rendered images. The user can visualize the event using the same spatial scale of different scales independently, one per projection. All data products selected to be rendered are viewed in the central display and derived data types (like “hits”) can be overlaid on the images. As the user mouses over the display, the information bar at the bottom updates with the location (in detector coordinates) of the mouse in the image. The central view area uses a rainbow based heat map for visualizing the data, which is common in this type of application, however it fully customizable by modifying the appropriate Python class.
Additionally, several derived data products will display their metadata when a “mouse hover” action is used. Surrounding the central view area is a suite of controls to enable full use of the display.
Event Control: Users must be able to easily select an event within a file for random access. In the top left of the display, we allow users to toggle through a file in forward or reverse order or jump, at random, to an event. Users may also easily select a new file from here.
Drawing Options: In the central left location, we have collected all of the most common whole-image operations, including but not limited to pedestal subtraction for raw data, inclusion of a scale bar, and the ability to add additional auxiliary information (logo, timestamps) for producing publication-quality images.
Plane Control: Each event, as mentioned, includes several projected 2D images of a 3D space. Here, we allow users to disable some views interactively to render other projections more clearly. Additionally, these technologies include an auxiliary detection system, called the “optical” system, which can be viewed using this control area for the same event.
Data Product Rendering Control: As mentioned above, there are multiple derived data types from the raw image-like data. On the right side of the display, the user is given full control over what data products are rendered in the view. At the top is a filter for the data processing “stage”, since multiple instances of a single data product can be produced during the data processing. The full enumeration of derived data products is beyond the scope of this paper, however, all “official” larsoft data products are supported by TITUS if they represent objects that may be visualized.

8. Case Studies

There are two main scenarios in which this event display is used: to constantly monitor the raw data coming from a LArTPC detector and to analyze the data afterward.
TITUS visualizes the MicroBooNE detector’s data in a constant stream, 24/7, and it shows the latest data recorded. This enables operators in the experiment’s control room to make sure that the raw data have an acceptable quality, and allows them to immediately identify potential issues with the detector. The event display shows stability over long periods of time and it is fast and intuitive to use for control-room operators who often have to act quickly to understand and fix potential issues. SBND and ICARUS, as of this publication, are not yet taking data.
The MicroBooNE, SBND, and ICARUS collaborations are also using TITUS for the second, offline application. Here, TITUS is used when the data being analyzed have already been recorded, processed, and potentially (though not necessarily) reconstructed. Analysts can visualize more complex and derivative products, like particle tracks in the detector. TITUS has shown its success by being an important tool for many analyzers to understand the data and to bring physics analyses to completion.

9. Performance

The main performance considerations for TITUS are two-fold. First, the software must quickly load and display data from file with no significant latency, even for large image sizes. Second, the display must be smooth and responsive to pan/zoom and other interactive measures.
To address the latency of file loading, we have ensured fast performance with C++ based IO interactions, which are wrapped in Python for use in the display. Each time TITUS needs to fetch data from file, only the data requested by the user are loaded to ensure the fastest loading time. Particularly intensive data, such as raw images, are read directly into numpy [21] arrays using the Python-C API.
Further, the GUI is built on PyQt and all rendered objects leverage the Qt framework for visualization. In this way, we leverage industry-standard tools to ensure smooth and responsive performance. The rendering of 1D plots, and fast render of 2D images, is simplified with the use of pyqtgraph [20].

10. Conclusions

In this paper, we have presented TITUS, a piece of software for visualization of data coming from LArTPC detectors. TITUS is a cross experiment software, and it is currently used by several collaborations. We have described the system architecture, the design, and the implementation, each showing how TITUS meets the challenging mission of providing a fast event viewer that can work across different experiments, and that allows users easy customization to tailor specific experiment’s needs.
TITUS has been used extensively by the MicroBooNE collaboration, both in online and offline operations. This tool has enabled quick review and checking of their detector data as it comes in. Additionally, it has been used to validate and check the reconstructed data products produced by MircoBooNE’s physics analyses. Further, TITUS has developed an efficient and extensible software framework that allows it to visualize data from SBND and ICARUS experiments, though they have different geometries from MicroBooNE.
Rendering leverages open source, standard tools such as Qt and Python. The user interface, designed to be intuitive and flexible, was built via PyQT and pyqtgraph, leveraging the efficiency of numpy for data manipulation and OpenGL for 2D rendering. In summary, TITUS delivers performance, ease of use, and portability across experiments, leading to its adoption in multiple LArTPC neutrino experiments.

Author Contributions

Conceptualization, C.A.; Project administration, M.d.T.; Software, C.A. and M.d.T.; Visualization, C.A.; Writing—original draft, M.d.T. All authors have read and agreed to the published version of the manuscript.

Funding

This research received no external funding.

Acknowledgments

We gratefully thank the SBND collaboration for giving us access to their simulations. The submitted manuscript has been created by UChicago Argonne, LLC, Operator of Argonne National Laboratory ("Argonne"). Argonne, a U.S. Department of Energy Office of Science laboratory, is operated under contract number DE-AC02-06CH11357. Additionally, this document was prepared using the resources of the Fermi National Accelerator Laboratory (Fermilab), a U.S. Department of Energy, Office of Science, HEP User Facility. Fermilab is managed by Fermi Research Alliance, LLC (FRA), acting under contract number DE-AC02-07CH11359.

Conflicts of Interest

The authors declare no conflict of interest.

References

  1. Acciarri, R.; Adams, C.; An, R.; Andreopoulos, C.; Ankowski, A.M.; Antonello, M.; Asaadi, J.; Badgett, W.; Bagby, L.; Baibussinov, B.; et al. A Proposal for a Three Detector Short-Baseline Neutrino Oscillation Program in the Fermilab Booster Neutrino Beam. arXiv 2015, arXiv:1503.01520. [Google Scholar]
  2. Abi, B.; Acciarri, R.; Acero, M.A.; Adamowski, M.; Adams, C.; Adams, D.L.; Adamson, P.; Adinolfi, M.; Ahmad, Z.; Albright, C.H.; et al. The Single-Phase ProtoDUNE Technical Design Report. arXiv 2017, arXiv:1706.07081. [Google Scholar]
  3. Abi, B.; Acciarri, R.; Acero, M.A.; Adamowski, M.; Adams, C.; Adams, D.; Adamson, P.; Adinolfi, M.; Ahmad, Z.; Albright, C.H.; et al. The DUNE far detector interim design report, Volume 1: Physics, technology and strategies. arXiv 2018, arXiv:1807.10334. [Google Scholar]
  4. Abi, B.; Acciarri, R.; Acero, M.A.; Adamowski, M.; Adams, C.; Adams, D.; Adamson, P.; Adinolfi, M.; Ahmad, Z.; Albright, C.H.; et al. The DUNE far detector interim design report, Volume 2: Single-phase module. arXiv 2018, arXiv:1807.10327. [Google Scholar]
  5. Abi, B.; Bansal, S.; Friedl, A.; Kocaman, B.; Djurcic, Z.; Goudzovski, E.; Rakotondravohitra, L.; Salukvadze, G.; Mazzucato, E.; Densham, C.; et al. The DUNE far detector interim design report, Volume 3: Dual-phase module. arXiv 2018, arXiv:1807.10340. [Google Scholar]
  6. Acciarri, R.; Adams, C.; An, R.; Aparicio, A.; Aponte, S.; Asaadi, J.; Auger, M.; Ayoub, N.; Bagby, L.; Baller, B.; et al. Design and Construction of the MicroBooNE Detector. JINST 2017, 12, P02017. [Google Scholar] [CrossRef]
  7. Benetti, P. A three-ton liquid argon time projection chamber. Nucl. Instruments Methods Phys. Res. Sect. A Accel. Spectrometers Detect. Assoc. Equip. 1993, 332, 395–412. [Google Scholar] [CrossRef] [Green Version]
  8. Acciarri, R.; Adams, C.; Asaadi, J.A.; Backfish, M.; Badgett, W.; Baller, B.; Rodrigues, O.B.; Blaszczyk, F.D.; Bouabid, R.; Bromberg, C.; et al. The Liquid Argon In A Testbeam (LArIAT) Experiment. arXiv 2019, arXiv:1911.10379. [Google Scholar] [CrossRef]
  9. MicroBooNE Website. Available online: https://microboone.fnal.gov (accessed on 18 May 2020).
  10. Snider, E.L.; Petrillo, G. LArSoft: Toolkit for Simulation, Reconstruction and Analysis of Liquid Argon TPC Neutrino Detectors. J. Phys. Conf. Ser. 2017, 898, 042057. [Google Scholar] [CrossRef]
  11. Lussi, D. QScan. 2011. Available online: https://indico.cern.ch/event/129268/contributions/1348759/attachments/88181/126234/Lussi_Qscan_GLA2011.pdf (accessed on 11 July 2020).
  12. Brun, R.; Rademakers, F. ROOT—An Object Oriented Data Analysis Framework. Nucl. Inst. Meth. Phys. Res. A 1997, 389, 81–86. [Google Scholar] [CrossRef]
  13. Qt. Available online: https://www.qt.io (accessed on 8 June 2020).
  14. Green, C.; Kowalkowski, J.; Paterno, M.; Fischler, M.; Garren, L.; Lu, Q. The Art Framework. J. Phys. Conf. Ser. 2012, 396, 022020. [Google Scholar] [CrossRef]
  15. Gallery. Available online: https://art.fnal.gov/gallery/ (accessed on 12 October 2020).
  16. Adams, C.; An, R.; Anthony, J.; Asaadi, J.; Auger, M.; Balasubramanian, S.; Baller, B.; Barnes, C.; Barr, G.; Bass, M.; et al. Ionization electron signal processing in single phase LArTPCs. Part II. Data/simulation comparison and performance in MicroBooNE. J. Instrum. 2018, 13, P07007. [Google Scholar] [CrossRef] [Green Version]
  17. Adams, C.; An, R.; Anthony, J.; Asaadi, J.; Auger, M.; Bagby, L.; Balasubramanian, S.; Baller, B.; Barnes, C.; Barr, G.; et al. Ionization electron signal processing in single phase LArTPCs. Part I. Algorithm Description and quantitative evaluation with MicroBooNE simulation. J. Instrum. 2018, 13, P07006. [Google Scholar] [CrossRef] [Green Version]
  18. Baller, B. Liquid argon TPC signal formation, signal processing and reconstruction techniques. J. Instrum. 2017, 12, P07010. [Google Scholar] [CrossRef] [Green Version]
  19. PyQt. Available online: https://riverbankcomputing.com/software/pyqt/ (accessed on 8 June 2020).
  20. PyQtGraph. Available online: http://www.pyqtgraph.org (accessed on 8 June 2020).
  21. Harris, C.R.; Millman, K.J.; van der Walt, S.J.; Gommers, R.; Virtanen, P.; Cournapeau, D.; Wieser, E.; Taylor, J.; Berg, S.; Smith, N.J.; et al. Array programming with NumPy. Nature 2020, 585, 357–362. [Google Scholar] [CrossRef] [PubMed]
Figure 1. Operational principle of a generic LArTPC.
Figure 1. Operational principle of a generic LArTPC.
Instruments 04 00031 g001
Figure 2. TITUS displays of neutrino candidate interactions with matter as recorded by the MicroBooNE experiment [9].
Figure 2. TITUS displays of neutrino candidate interactions with matter as recorded by the MicroBooNE experiment [9].
Instruments 04 00031 g002
Figure 3. The main view of the TITUS event display. Here showing a simulated neutrino event in the SBND detector [1].
Figure 3. The main view of the TITUS event display. Here showing a simulated neutrino event in the SBND detector [1].
Instruments 04 00031 g003
Figure 4. Data processing. The blue part is written in C++, while the green part is in Python.
Figure 4. Data processing. The blue part is written in C++, while the green part is in Python.
Instruments 04 00031 g004
Publisher’s Note: MDPI stays neutral with regard to jurisdictional claims in published maps and institutional affiliations.

Share and Cite

MDPI and ACS Style

Adams, C.; del Tutto, M. TITUS: Visualization of Neutrino Events in Liquid Argon Time Projection Chambers. Instruments 2020, 4, 31. https://0-doi-org.brum.beds.ac.uk/10.3390/instruments4040031

AMA Style

Adams C, del Tutto M. TITUS: Visualization of Neutrino Events in Liquid Argon Time Projection Chambers. Instruments. 2020; 4(4):31. https://0-doi-org.brum.beds.ac.uk/10.3390/instruments4040031

Chicago/Turabian Style

Adams, Corey, and Marco del Tutto. 2020. "TITUS: Visualization of Neutrino Events in Liquid Argon Time Projection Chambers" Instruments 4, no. 4: 31. https://0-doi-org.brum.beds.ac.uk/10.3390/instruments4040031

Article Metrics

Back to TopTop