Disentangling P ANDA s time-based data stream

Size: px
Start display at page:

Download "Disentangling P ANDA s time-based data stream"

Transcription

1 Disentangling P ANDA s time-based data stream M. Tiemens on behalf of the PANDA Collaboration KVI - Center For Advanced Radiation Technology, University of Groningen, Zernikelaan 25, 9747 AA Groningen, The Netherlands m.tiemens@rug.nl Abstract. To allow the online selection of events, the readout of the P ANDA detector will reconstruct particles online. Several algorithms to perform this task in one of the subsystems, the electromagnetic calorimeter, are being developed. The algorithms are discussed, and a simple test case shows that they appear to behave similarly in terms of the ability to reconstruct events, and the time it takes to do this. However, some peculiarities, like the fact that the algorithms show the best performance in what is expected to be the worst-case scenario, still require additional investigation. 1. Introduction This work discusses some software developments for the future P ANDA experiment. For an introduction, the reader is invited to read other publications on the experiment in this proceedings series. The design of the detector is shown in Figure 1. This paper will mainly focus on one subsystem, the electromagnetic calorimeter (EMC), shown in purple in Figure 1. The device consists of four parts: a Barrel, containing 11,360 scintillation crystals and a Backward and Forward Endcap, containing 524 and 3856 crystals, respectively. The faces of the crystals are approximately 2 2 cm. This is complemented by a sampling (shashlik) calorimeter, placed in the forward spectrometer a few meter downstream of the interaction point, to cover very small polar angles. Figure 1: CATIA drawing of the P AN DA detector. Courtesy: A. Cebulla, FZ Jülich, 2014.

2 An important feature of the detector is the ability to reconstruct detected decays online, and perform the event selection based on those reconstructions. To be able to do this, complete information on the final-state particles is required. Some common particles, like photons and electrons (and positrons), are reconstructed using input from the EMC. Three algorithms to perform these reconstructions will be discussed below. Two of these are eligible for implementation on the online platform, providing vital information for the event selection. 2. Cluster Forming An interaction between a proton and an antiproton will be referred to as an event. In the P ANDA experiment, events are generated at a rate of /s at the design luminosity. The interaction may lead to the production of secondary particles. The majority of final-state particles at the end of the decay chain of these reactions will create a particle shower inside the EMC crystals. Due to conservation of momentum, the shower spreads out laterally (i.e., transverse w.r.t. the momentum vector of the incoming particle), which may cause the shower to create hits in neighbouring crystals as well. In this context, a hit is a crystal with an energy deposition above the detection threshold. The formation of particle showers creates groups of hits in the calorimeter, which are called clusters. 3. Cluster Finding To find the four-momentum of the impinging particle, which is needed to be able to perform the online event reconstruction later on, it suffices to add the individual hits in a cluster. However, the high interaction rate, combined with the large variety of intermediate states that can be directly formed, having different decay times, may lead to pile-up and event mixing. These features complicate the task of assigning hits to the correct clusters considerably. As these features occur in the time domain, the timestamp of each hit will play a key role in disentangling the hits. For this reason, the simulation that has been designed to reproduce this structure is called time-based simulation. The distribution of events through time follows a Poisson distribution, with the mean time between two events determined by the interaction rate. This creates a bunched structure in the final data stream. The size of the bunches, called timebunches, can be controlled by a time threshold. Tuning this parameter can help put hits from a single (or few) event(s) into a single timebunch, aiding the assignment of hits to clusters. If multiple events are present in a timebunch, their corresponding hits are likely located in different parts of the detector, because apart from being forward boosted, the decays are isotropic. There are multiple methods under development to search for clusters in these timebunches, but the main aim is to develop a method that can be easily implemented to process the data online. As the data in the EMC is produced at a rate of 80 GB/s, this algorithm needs to consume as little resources as possible. The next sections describe the established ( standard ) method, which cannot be implemented online, and the proposed online versions. The final part will compare the methods against each other Method 1: Standard Cluster Finding The currently implemented version in the offline software package PandaRoot[1] takes the stream of hits, and treats each new hit as a seperate cluster, unless it neighbours 1 to an existing one. In that case, the hit is absorbed in that cluster. + Widely used, well tested. 1 As the time domain is important, in all references, neighbour means close in space and time.

3 Disadvantages: Slow (either each cluster size has to be recalculated when a new hit is processed, or a loop over each existing hit is needed to check for neighbours). When two hits from the same cluster are processed as first and second hit in the stream, they will be put into seperate clusters when they are not direct neighbours. However, in general, the central hit in a cluster will have the lowest timestamp, and will therefore be processed first, so the probabilty for this failure to occur is minimal Method 2: Online Cluster Finding The first proposed version to be eligible for online usage loops over all pairs of hits in the input stream to establish neighbour relations between them. It then uses this information to merge them into clusters. + Fast (it is only needed to loop over hits once). Disadvantages: There are still many iterations involved, making the solution possibly less suitable for implementation online Method 3: Distributed Cluster Finding Before proceeding to the method, a brief introduction to the readout chain is required The Readout Chain of the P ANDA Detector The light created in each crystal is collected at the backface by photosensors, which are read out by digitisation modules. Each module can read out 16 crystals, and sends the information it extracted on to a data concentration stage, which performs some more signal processing. Each Data Concentrator (DC) reads out 8 digitisation modules, and hence has access to 128 crystals a sizeable portion of the calorimeter. The Data Concentrators send their information to the Event Building stage, which performs the online event reconstruction Distributed Cluster Finding As the Data Concentrators have access to a sizeable section of the EMC, it may be possible to look for clusters at this level. This will reduce the load at the later stages. The idea of distributed cluster finding is to first look for clusters in such a section using the Online Cluster Finding Method. However, as can be seen in Figure 2, it is possible that a cluster is located at the edge of two or more sections. In this case, such clusters will be split, so they will need to be merged later on (see, for example, the white-and-gray cluster in Figure 2). Therefore, for the clusters found at this stage, called preclusters, only their (x, y, t) location 2 and radius will be calculated (i.e., no energies or advanced cluster properties). The radius is the circumcircle of the precluster (coloured circles in Figure 2). In the next stage, preclusters are merged if the distance between them is smaller than the sum of their radii. + Each DC processes a small sample of the dataset Fast. + The next stage can use preclusters instead of hits Fast. 2 The idea is to use a 2D map of the EMC, where each crystal is a single point, so the z information is not needed here.

4 Figure 2: Illustration of precluster forming in Data Concentrators (yellow squares). Hits are indicated by black, gray, and white squares. More details can be found in the text. Disadvantages: Some additional operations are needed, such as the calculation of the precluster location and radius. If preclusters have very elliptical shapes, the radius will be greatly overestimated. However, as the incoming particles hit the crystals orthogonal 3, the shower shape is expected to be (approximately) circular. 4. Comparing Methods The next task is to compare these methods. Two tests on an artificial simulated data set, 5000 p p γγ events at a centre-of-mass energy of GeV/c 2, are carried out. It must be noted that the results of these tests are very preliminary, as both the algorithms and the simulation framework are still under development. For each method, three interaction-rate scenarios are considered: High Rate (HR, /s), Low Rate (LR, /s), and Event- Based (EB, completely disjoint events) Test 1: Ability to reconstruct events The first test checks how many of the original 5000 events can be recovered. Because of the forward boosted particle production, the raw cluster energies do not give much information. The invariant mass of the parent p p system is taken for comparison. The spectrum (see Figure 3) shows a peak around that value, which is fitted and integrated to obtain the number of reconstructed events. The results are shown in Figure 4a. The high rate scenario consistently shows higher yields, implying that it is more efficient than the ideal (event-based) case. As the high rate case suffers from pile-up and event mixing effects, this result is unexpected. A check with the information from the event generator will need to be performed to see if the reconstructed events correspond to the simulated events. However, due to technical difficulties, that information is not yet available. Quantitative, all methods obtain similar yields. However, the Online method appears to be slightly less effective, as can also be seen in Figure Test 2: Time needed to reconstruct events As the data is produced at a high rate (see section 3), the runtime of the algorithms is another key parameter to be checked. The results are shown in Figure 4b for the HR case, relative to method 1 (Standard). As desired, the Online method is the fastest, and the two steps of Distributed Cluster Finding (precluster finding and merging) are seperately the fastest. However, no solid conclusions can be drawn at this point, because this test was performed on a CPU, and 3 The crystals in the EMC are oriented to face inwards, pointing just behind the interaction point (to avoid particles to get undetected in the gaps between the crystals).

5 STD 350 Online Dist M γγ (GeV/c ) Figure 3: Comparison between the three cluster finding methods for the high rate scenario. Legend: STD = Standard Cluster Finding, Online = Online Cluster Finding, Dist = Distributed Cluster Finding. the final algorithm will run on an FPGA 4. The performance likely differs on such a device. Hardware prototypes containing FPGAs are available, but the cluster finding algorithm has not yet been implemented on them. That will be done when the algorithm has been debugged and streamlined. Hence, at this moment, the comparison on CPUs is the best that can be done. 5. Summary This paper discussed three methods to search for clusters in the EMC of the future P ANDA experiment. All methods performed similarly in both event reconstruction and runtime, with the Online algorithm being the fastest overall. The two steps in Distributed Cluster Finding, precluster finding and merging, are seperately the fastest, as desired. The yield was higher in the high rate scenario, which is not what would be expected. This will be investigated. After fixing the forementionted bugs, the algorithms will be tested using more complicated decays, such as h c γη c 7γ, and by including background from e.g. a DPM background generator. The effect of so-called bump splitting, where two overlapping clusters, that are identified as one, are seperated, also has to be investigated. Ideally, this should be included, but it will consume additional resources which may not be available. It should therefore be investigated how much will be gained by including this procedure, and then design a lighter version. References [1] Spataro S et al (PANDA Collaboration) 2010 IOP Publishing - Journal of Physics: Conference Series A Field-Programmable Gate Array (FPGA) is an integrated circuit containing an array of programmable logic blocks, connected by a collection of reconfigurable interconnects. Figure 4: Comparison between the three cluster finding methods: (a) Between the number of reconstructed events in three scenarios, (b) Between the runtimes for event reconstruction, relative to the Standard method, for the high rate scenario.

Fast pattern recognition with the ATLAS L1Track trigger for the HL-LHC

Fast pattern recognition with the ATLAS L1Track trigger for the HL-LHC Fast pattern recognition with the ATLAS L1Track trigger for the HL-LHC On behalf of the ATLAS Collaboration Uppsala Universitet E-mail: mikael.martensson@cern.ch ATL-DAQ-PROC-2016-034 09/01/2017 A fast

More information

PANDA EMC Trigger and Data Acquisition Algorithms Development

PANDA EMC Trigger and Data Acquisition Algorithms Development PANDA EMC Trigger and Data Acquisition Algorithms Development a,b, Dapeng Jin b, Andreas Kopp a, Wolfgang Kühn a, Jens Sören Lang a, Yutie Liang a, Ming Liu a, Zhen-an Liu b, David Münchow a, Björn Spruck

More information

Electron and Photon Reconstruction and Identification with the ATLAS Detector

Electron and Photon Reconstruction and Identification with the ATLAS Detector Electron and Photon Reconstruction and Identification with the ATLAS Detector IPRD10 S12 Calorimetry 7th-10th June 2010 Siena, Italy Marine Kuna (CPPM/IN2P3 Univ. de la Méditerranée) on behalf of the ATLAS

More information

Performance of the GlueX Detector Systems

Performance of the GlueX Detector Systems Performance of the GlueX Detector Systems GlueX-doc-2775 Gluex Collaboration August 215 Abstract This document summarizes the status of calibration and performance of the GlueX detector as of summer 215.

More information

05/09/07 CHEP2007 Stefano Spataro. Simulation and Event Reconstruction inside the PandaRoot Framework. Stefano Spataro. for the collaboration

05/09/07 CHEP2007 Stefano Spataro. Simulation and Event Reconstruction inside the PandaRoot Framework. Stefano Spataro. for the collaboration for the collaboration Overview Introduction on Panda Structure of the framework Event generation Detector implementation Reconstruction The Panda experiment AntiProton Annihilations at Darmstadt Multi

More information

A LVL2 Zero Suppression Algorithm for TRT Data

A LVL2 Zero Suppression Algorithm for TRT Data A LVL2 Zero Suppression Algorithm for TRT Data R. Scholte,R.Slopsema,B.vanEijk, N. Ellis, J. Vermeulen May 5, 22 Abstract In the ATLAS experiment B-physics studies will be conducted at low and intermediate

More information

ATLAS NOTE. December 4, ATLAS offline reconstruction timing improvements for run-2. The ATLAS Collaboration. Abstract

ATLAS NOTE. December 4, ATLAS offline reconstruction timing improvements for run-2. The ATLAS Collaboration. Abstract ATLAS NOTE December 4, 2014 ATLAS offline reconstruction timing improvements for run-2 The ATLAS Collaboration Abstract ATL-SOFT-PUB-2014-004 04/12/2014 From 2013 to 2014 the LHC underwent an upgrade to

More information

Precision Timing in High Pile-Up and Time-Based Vertex Reconstruction

Precision Timing in High Pile-Up and Time-Based Vertex Reconstruction Precision Timing in High Pile-Up and Time-Based Vertex Reconstruction Cedric Flamant (CERN Summer Student) - Supervisor: Adi Bornheim Division of High Energy Physics, California Institute of Technology,

More information

PoS(EPS-HEP2017)523. The CMS trigger in Run 2. Mia Tosi CERN

PoS(EPS-HEP2017)523. The CMS trigger in Run 2. Mia Tosi CERN CERN E-mail: mia.tosi@cern.ch During its second period of operation (Run 2) which started in 2015, the LHC will reach a peak instantaneous luminosity of approximately 2 10 34 cm 2 s 1 with an average pile-up

More information

b-jet identification at High Level Trigger in CMS

b-jet identification at High Level Trigger in CMS Journal of Physics: Conference Series PAPER OPEN ACCESS b-jet identification at High Level Trigger in CMS To cite this article: Eric Chabert 2015 J. Phys.: Conf. Ser. 608 012041 View the article online

More information

A New Segment Building Algorithm for the Cathode Strip Chambers in the CMS Experiment

A New Segment Building Algorithm for the Cathode Strip Chambers in the CMS Experiment EPJ Web of Conferences 108, 02023 (2016) DOI: 10.1051/ epjconf/ 201610802023 C Owned by the authors, published by EDP Sciences, 2016 A New Segment Building Algorithm for the Cathode Strip Chambers in the

More information

Beam test measurements of the Belle II vertex detector modules

Beam test measurements of the Belle II vertex detector modules Beam test measurements of the Belle II vertex detector modules Tadeas Bilka Charles University, Prague on behalf of the Belle II Collaboration IPRD 2016, 3 6 October 2016, Siena, Italy Outline Belle II

More information

CMS Alignement and Calibration workflows: lesson learned and future plans

CMS Alignement and Calibration workflows: lesson learned and future plans Available online at www.sciencedirect.com Nuclear and Particle Physics Proceedings 273 275 (2016) 923 928 www.elsevier.com/locate/nppp CMS Alignement and Calibration workflows: lesson learned and future

More information

Update of the BESIII Event Display System

Update of the BESIII Event Display System Journal of Physics: Conference Series PAPER OPEN ACCESS Update of the BESIII Event Display System To cite this article: Shuhui Huang and Zhengyun You 2018 J. Phys.: Conf. Ser. 1085 042027 View the article

More information

First LHCb measurement with data from the LHC Run 2

First LHCb measurement with data from the LHC Run 2 IL NUOVO CIMENTO 40 C (2017) 35 DOI 10.1393/ncc/i2017-17035-4 Colloquia: IFAE 2016 First LHCb measurement with data from the LHC Run 2 L. Anderlini( 1 )ands. Amerio( 2 ) ( 1 ) INFN, Sezione di Firenze

More information

PoS(High-pT physics09)036

PoS(High-pT physics09)036 Triggering on Jets and D 0 in HLT at ALICE 1 University of Bergen Allegaten 55, 5007 Bergen, Norway E-mail: st05886@alf.uib.no The High Level Trigger (HLT) of the ALICE experiment is designed to perform

More information

Performance of Tracking, b-tagging and Jet/MET reconstruction at the CMS High Level Trigger

Performance of Tracking, b-tagging and Jet/MET reconstruction at the CMS High Level Trigger Journal of Physics: Conference Series PAPER OPEN ACCESS Performance of Tracking, b-tagging and Jet/MET reconstruction at the CMS High Level Trigger To cite this article: Mia Tosi 205 J. Phys.: Conf. Ser.

More information

The Progress of TOF on BESIII

The Progress of TOF on BESIII The Progress of TOF on BESIII Yuekun Heng 1, Chong Wu 1, Zhijia Sun 1, Li Zhao 1,2, Cheng Li 2, Qi An 2, Shubin Liu 2, Jinjie Wu 2, Yuda Zhao 1,3, Fengmei Wang 1,4, Xiaojian Zhao 1, Feng Shi 1, Zhenghua

More information

Update of the BESIII Event Display System

Update of the BESIII Event Display System Update of the BESIII Event Display System Shuhui Huang, Zhengyun You Sun Yat-sen University, Guangzhou, 510275, China E-mail: huangshh28@mail2.sysu.edu.cn, youzhy5@mail.sysu.edu.cn Abstract. The BESIII

More information

PoS(TIPP2014)204. Tracking at High Level Trigger in CMS. Mia TOSI Universitá degli Studi di Padova e INFN (IT)

PoS(TIPP2014)204. Tracking at High Level Trigger in CMS. Mia TOSI Universitá degli Studi di Padova e INFN (IT) Universitá degli Studi di Padova e INFN (IT) E-mail: mia.tosi@gmail.com The trigger systems of the LHC detectors play a crucial role in determining the physics capabilities of the experiments. A reduction

More information

ATLAS ITk Layout Design and Optimisation

ATLAS ITk Layout Design and Optimisation ATLAS ITk Layout Design and Optimisation Noemi Calace noemi.calace@cern.ch On behalf of the ATLAS Collaboration 3rd ECFA High Luminosity LHC Experiments Workshop 3-6 October 2016 Aix-Les-Bains Overview

More information

The Compact Muon Solenoid Experiment. Conference Report. Mailing address: CMS CERN, CH-1211 GENEVA 23, Switzerland

The Compact Muon Solenoid Experiment. Conference Report. Mailing address: CMS CERN, CH-1211 GENEVA 23, Switzerland Available on CMS information server CMS CR -2008/100 The Compact Muon Solenoid Experiment Conference Report Mailing address: CMS CERN, CH-1211 GENEVA 23, Switzerland 02 December 2008 (v2, 03 December 2008)

More information

TPC digitization and track reconstruction: efficiency dependence on noise

TPC digitization and track reconstruction: efficiency dependence on noise TPC digitization and track reconstruction: efficiency dependence on noise Daniel Peterson, Cornell University, DESY, May-2007 A study of track reconstruction efficiency in a TPC using simulation of the

More information

Fig. 1. PANDA experiment at the FAIR facility, Darmstadt. The detector comprises two spectrometers. The target spectrometer features tracking

Fig. 1. PANDA experiment at the FAIR facility, Darmstadt. The detector comprises two spectrometers. The target spectrometer features tracking Proc. 12th Int. Conf. Low Energy Antiproton Physics (LEAP2016) https://doi.org/10.7566/jpscp.18.011035 Data Acquisition and Online Event Selection for the PANDA Experiment Wolfgang Kühn 1, Sören Lange

More information

Performance of the ATLAS Inner Detector at the LHC

Performance of the ATLAS Inner Detector at the LHC Performance of the ALAS Inner Detector at the LHC hijs Cornelissen for the ALAS Collaboration Bergische Universität Wuppertal, Gaußstraße 2, 4297 Wuppertal, Germany E-mail: thijs.cornelissen@cern.ch Abstract.

More information

Time and position resolution of high granularity, high counting rate MRPC for the inner zone of the CBM-TOF wall

Time and position resolution of high granularity, high counting rate MRPC for the inner zone of the CBM-TOF wall Time and position resolution of high granularity, high counting rate MRPC for the inner zone of the CBM-TOF wall M. Petris, D. Bartos, G. Caragheorgheopol, M. Petrovici, L. Radulescu, V. Simion IFIN-HH

More information

GPU-based Online Tracking for the PANDA Experiment

GPU-based Online Tracking for the PANDA Experiment GPU-based Online Tracking for the PANDA Experiment Andreas Herten on behalf of the PANDA collaboration Forschungszentrum Jülich, Wilhelm-Johnen-Straße, 52428 Jülich DOI: http://dx.doi.org/.324/desy-proc-24-5/

More information

LAr Event Reconstruction with the PANDORA Software Development Kit

LAr Event Reconstruction with the PANDORA Software Development Kit LAr Event Reconstruction with the PANDORA Software Development Kit Andy Blake, John Marshall, Mark Thomson (Cambridge University) UK Liquid Argon Meeting, Manchester, November 28 th 2012. From ILC/CLIC

More information

A Novel Strip Energy Splitting Algorithm for the Fine Granular Readout of a Scintillator Strip Electromagnetic Calorimeter

A Novel Strip Energy Splitting Algorithm for the Fine Granular Readout of a Scintillator Strip Electromagnetic Calorimeter 1 3 A Novel Strip Energy Splitting Algorithm for the Fine Granular Readout of a Scintillator Strip Electromagnetic Calorimeter 4 Katsushige Kotera a, Daniel Jeans b, Akiya Miyamoto c, and Tohru Takeshita

More information

25 The vibration spiral

25 The vibration spiral 25 The vibration spiral Contents 25.1 The vibration spiral 25.1.1 Zone Plates............................... 10 25.1.2 Circular obstacle and Poisson spot.................. 13 Keywords: Fresnel Diffraction,

More information

CMS Conference Report

CMS Conference Report Available on CMS information server CMS CR 2005/021 CMS Conference Report 29 Septemebr 2005 Track and Vertex Reconstruction with the CMS Detector at LHC S. Cucciarelli CERN, Geneva, Switzerland Abstract

More information

Studies of the KS and KL lifetimes and

Studies of the KS and KL lifetimes and Studies of the KS and KL lifetimes and BR(K ) with KLOE ± ± + Simona S. Bocchetta* on behalf of the KLOE Collaboration KAON09 Tsukuba June 9th 2009 * INFN and University of Roma Tre Outline DA NE and KLOE

More information

ATLAS PILE-UP AND OVERLAY SIMULATION

ATLAS PILE-UP AND OVERLAY SIMULATION ATLAS PILE-UP AND OVERLAY SIMULATION LPCC Detector Simulation Workshop, June 26-27, 2017 ATL-SOFT-SLIDE-2017-375 22/06/2017 Tadej Novak on behalf of the ATLAS Collaboration INTRODUCTION In addition to

More information

LCDG4 Status. Dhiman Chakraborty, Guilherme Lima, Jeremy McCormick, Vishnu Zutshi. LC Simulations Workshop Argonne, June 02 05, 2004

LCDG4 Status. Dhiman Chakraborty, Guilherme Lima, Jeremy McCormick, Vishnu Zutshi. LC Simulations Workshop Argonne, June 02 05, 2004 LCDG4 Status Dhiman Chakraborty, Guilherme Lima, Jeremy McCormick, Vishnu Zutshi LC Simulations Workshop Argonne, June 02 05, 2004 Outline Overview LCDG4 features XML geometry representation SIO contents

More information

PROJECT REPORT. Prototype of an online track and event reconstruction scheme for

PROJECT REPORT. Prototype of an online track and event reconstruction scheme for Prototype of an online track and event reconstruction scheme for the PANDA experiment at FAIR Bjorn Andersson Johan Nordstrom Project in Computational Science: Report January 2017 PROJECT REPORT Institutionen

More information

A Novel Strip Energy Splitting Algorithm for the Fine Granular Readout of a Scintillator Strip Electromagnetic Calorimeter

A Novel Strip Energy Splitting Algorithm for the Fine Granular Readout of a Scintillator Strip Electromagnetic Calorimeter 1 3 A Novel Strip Energy Splitting Algorithm for the Fine Granular Readout of a Scintillator Strip Electromagnetic Calorimeter 4 Katsushige Kotera a, Daniel Jeans b, Akiya Miyamoto c, and Tohru Takeshita

More information

Tracking and flavour tagging selection in the ATLAS High Level Trigger

Tracking and flavour tagging selection in the ATLAS High Level Trigger Tracking and flavour tagging selection in the ATLAS High Level Trigger University of Pisa and INFN E-mail: milene.calvetti@cern.ch In high-energy physics experiments, track based selection in the online

More information

PoS(EPS-HEP2017)492. Performance and recent developments of the real-time track reconstruction and alignment of the LHCb detector.

PoS(EPS-HEP2017)492. Performance and recent developments of the real-time track reconstruction and alignment of the LHCb detector. Performance and recent developments of the real-time track reconstruction and alignment of the LHCb detector. CERN E-mail: agnieszka.dziurda@cern.ch he LHCb detector is a single-arm forward spectrometer

More information

First results from the LHCb Vertex Locator

First results from the LHCb Vertex Locator First results from the LHCb Vertex Locator Act 1: LHCb Intro. Act 2: Velo Design Dec. 2009 Act 3: Initial Performance Chris Parkes for LHCb VELO group Vienna Conference 2010 2 Introducing LHCb LHCb is

More information

Determination of the aperture of the LHCb VELO RF foil

Determination of the aperture of the LHCb VELO RF foil LHCb-PUB-214-12 April 1, 214 Determination of the aperture of the LHCb VELO RF foil M. Ferro-Luzzi 1, T. Latham 2, C. Wallace 2. 1 CERN, Geneva, Switzerland 2 University of Warwick, United Kingdom LHCb-PUB-214-12

More information

The ALICE electromagnetic calorimeter high level triggers

The ALICE electromagnetic calorimeter high level triggers Journal of Physics: Conference Series The ALICE electromagnetic calorimeter high level triggers To cite this article: F Ronchetti et al 22 J. Phys.: Conf. Ser. 96 245 View the article online for updates

More information

FAMOS: A Dynamically Configurable System for Fast Simulation and Reconstruction for CMS

FAMOS: A Dynamically Configurable System for Fast Simulation and Reconstruction for CMS FAMOS: A Dynamically Configurable System for Fast Simulation and Reconstruction for CMS St. Wynhoff Princeton University, Princeton, NJ 08544, USA Detailed detector simulation and reconstruction of physics

More information

ATLAS Tracking Detector Upgrade studies using the Fast Simulation Engine

ATLAS Tracking Detector Upgrade studies using the Fast Simulation Engine Journal of Physics: Conference Series PAPER OPEN ACCESS ATLAS Tracking Detector Upgrade studies using the Fast Simulation Engine To cite this article: Noemi Calace et al 2015 J. Phys.: Conf. Ser. 664 072005

More information

FUZZY CLUSTERING ALGORITHM FOR GAMMA RAY TRACKING IN SEGMENTED DETECTORS

FUZZY CLUSTERING ALGORITHM FOR GAMMA RAY TRACKING IN SEGMENTED DETECTORS Romanian Reports in Physics, Vol. 62, Nos. 1, P. 27 36, 2010 FUZZY CLUSTERING ALGORITHM FOR GAMMA RAY TRACKING IN SEGMENTED DETECTORS G. SULIMAN, D. BUCURESCU Horia Hulubei National Institute for Physics

More information

Online Tracking Algorithms on GPUs for the. ANDA Experiment at. Journal of Physics: Conference Series. Related content.

Online Tracking Algorithms on GPUs for the. ANDA Experiment at. Journal of Physics: Conference Series. Related content. Journal of Physics: Conference Series PAPER OPEN ACCESS Online Tracking Algorithms on GPUs for the P ANDA Experiment at FAIR To cite this article: L Bianchi et al 2015 J. Phys.: Conf. Ser. 664 082006 Related

More information

ATLAS, CMS and LHCb Trigger systems for flavour physics

ATLAS, CMS and LHCb Trigger systems for flavour physics ATLAS, CMS and LHCb Trigger systems for flavour physics Università degli Studi di Bologna and INFN E-mail: guiducci@bo.infn.it The trigger systems of the LHC detectors play a crucial role in determining

More information

Updated Barrel EMC Geometry

Updated Barrel EMC Geometry Updated Barrel EMC Geometry Guang Zhao (zhaog@ihep.ac.cn) Institute of High Energy Physics, CAS PANDA Collaboration Meeting 18/1 March 6 th, 2018 1 Outline pgeometry construction in ROOT pupdates and tests

More information

Analogue, Digital and Semi-Digital Energy Reconstruction in the CALICE AHCAL

Analogue, Digital and Semi-Digital Energy Reconstruction in the CALICE AHCAL Analogue, Digital and Semi-Digital Energy Reconstruction in the AHCAL Deutsches Elektronen Synchrotron (DESY), Hamburg, Germany E-mail: coralie.neubueser@desy.de Within the collaboration different calorimeter

More information

What is the goal of clustering?

What is the goal of clustering? Andrew Askew 2 What is the goal of clustering? Logically group local depositions of energy under the hypothesis that the channels together represent an electromagnetic shower. What is Superclustering?

More information

TORCH: A large-area detector for precision time-of-flight measurements at LHCb

TORCH: A large-area detector for precision time-of-flight measurements at LHCb TORCH: A large-area detector for precision time-of-flight measurements at LHCb Neville Harnew University of Oxford ON BEHALF OF THE LHCb RICH/TORCH COLLABORATION Outline The LHCb upgrade TORCH concept

More information

Cluster errors and Truth information Algorithms

Cluster errors and Truth information Algorithms Cluster errors and Truth information Algorithms Mikael Berggren 1 1 DESY, Hamburg ILD Software Workshop, DESY-HH, Feb 22-26, 2016 Mikael Berggren (DESY-HH) Truth Algorithms ILD SWWS, Feb 2016 1 / 14 Cluster

More information

Tracking and compression techniques

Tracking and compression techniques Tracking and compression techniques for ALICE HLT Anders Strand Vestbø The ALICE experiment at LHC The ALICE High Level Trigger (HLT) Estimated data rate (Central Pb-Pb, TPC only) 200 Hz * 75 MB = ~15

More information

Primary Vertex Reconstruction at LHCb

Primary Vertex Reconstruction at LHCb LHCb-PUB-214-44 October 21, 214 Primary Vertex Reconstruction at LHCb M. Kucharczyk 1,2, P. Morawski 3, M. Witek 1. 1 Henryk Niewodniczanski Institute of Nuclear Physics PAN, Krakow, Poland 2 Sezione INFN

More information

An important feature of CLEO III track finding is the diagnostics package providing information on the conditions encountered & decisions met in selec

An important feature of CLEO III track finding is the diagnostics package providing information on the conditions encountered & decisions met in selec CLEO III track finding uses cell level information in the initial phase, does not depend on intrinsic device resolution, is ideal for high (radial) density, low precision, information. CLEO III track finding

More information

TPC Detector Response Simulation and Track Reconstruction

TPC Detector Response Simulation and Track Reconstruction TPC Detector Response Simulation and Track Reconstruction Physics goals at the Linear Collider drive the detector performance goals: charged particle track reconstruction resolution: δ reconstruction efficiency:

More information

PoS(Baldin ISHEPP XXII)134

PoS(Baldin ISHEPP XXII)134 Implementation of the cellular automaton method for track reconstruction in the inner tracking system of MPD at NICA, G.A. Ososkov and A.I. Zinchenko Joint Institute of Nuclear Research, 141980 Dubna,

More information

HOUGH TRANSFORM CS 6350 C V

HOUGH TRANSFORM CS 6350 C V HOUGH TRANSFORM CS 6350 C V HOUGH TRANSFORM The problem: Given a set of points in 2-D, find if a sub-set of these points, fall on a LINE. Hough Transform One powerful global method for detecting edges

More information

The ATLAS Trigger System: Past, Present and Future

The ATLAS Trigger System: Past, Present and Future Available online at www.sciencedirect.com Nuclear and Particle Physics Proceedings 273 275 (2016) 1065 1071 www.elsevier.com/locate/nppp The ATLAS Trigger System: Past, Present and Future F. Pastore Royal

More information

Modelling of non-gaussian tails of multiple Coulomb scattering in track fitting with a Gaussian-sum filter

Modelling of non-gaussian tails of multiple Coulomb scattering in track fitting with a Gaussian-sum filter Modelling of non-gaussian tails of multiple Coulomb scattering in track fitting with a Gaussian-sum filter A. Strandlie and J. Wroldsen Gjøvik University College, Norway Outline Introduction A Gaussian-sum

More information

A flexible approach to clusterfinding in generic calorimeters of the FLC detector

A flexible approach to clusterfinding in generic calorimeters of the FLC detector A flexible approach to clusterfinding in generic calorimeters of the FLC detector University of Cambridge, U.K. : simulation/reconstruction session Outline Tracker-like clustering algorithm: the basis.

More information

Analysis of Σ 0 baryon, or other particles, or detector outputs from the grid data at ALICE

Analysis of Σ 0 baryon, or other particles, or detector outputs from the grid data at ALICE Analysis of Σ 0 baryon, or other particles, or detector outputs from the grid data at ALICE Introduction Analysis Chain Current status of Σ 0 analysis Examples of root files from the data and MC Discussion

More information

Jet algoritms Pavel Weber , KIP Jet Algorithms 1/23

Jet algoritms Pavel Weber , KIP Jet Algorithms 1/23 Jet algoritms Pavel Weber 29.04.2009, KIP Jet Algorithms 1/23 Evolution of the partonic system parton shower Definition of the jet Different, depends on the algorithm Observation level Calorimeter jet

More information

Optimisation Studies for the CLIC Vertex-Detector Geometry

Optimisation Studies for the CLIC Vertex-Detector Geometry CLICdp-Note04-002 4 July 204 Optimisation Studies for the CLIC Vertex-Detector Geometry Niloufar Alipour Tehrani, Philipp Roloff CERN, Switzerland, ETH Zürich, Switzerland Abstract An improved CLIC detector

More information

Evaluation of the computing resources required for a Nordic research exploitation of the LHC

Evaluation of the computing resources required for a Nordic research exploitation of the LHC PROCEEDINGS Evaluation of the computing resources required for a Nordic research exploitation of the LHC and Sverker Almehed, Chafik Driouichi, Paula Eerola, Ulf Mjörnmark, Oxana Smirnova,TorstenÅkesson

More information

ISOCS Characterization of Sodium Iodide Detectors for Gamma-Ray Spectrometry

ISOCS Characterization of Sodium Iodide Detectors for Gamma-Ray Spectrometry ISOCS Characterization of Sodium Iodide Detectors for Gamma-Ray Spectrometry Sasha A. Philips, Frazier Bronson, Ram Venkataraman, Brian M. Young Abstract--Activity measurements require knowledge of the

More information

FPGA based Sampling ADC for Crystal Barrel

FPGA based Sampling ADC for Crystal Barrel FPGA based Sampling ADC for Crystal Barrel Johannes Müllers for the CBELSA/TAPS collaboration Rheinische Friedrich-Wilhelms-Universität Bonn CBELSA/TAPS Experiment (Bonn) Investigation of the baryon excitation

More information

ALICE tracking system

ALICE tracking system ALICE tracking system Marian Ivanov, GSI Darmstadt, on behalf of the ALICE Collaboration Third International Workshop for Future Challenges in Tracking and Trigger Concepts 1 Outlook Detector description

More information

GEANT4 is used for simulating: RICH testbeam data, HCAL testbeam data. GAUSS Project: LHCb Simulation using GEANT4 with GAUDI.

GEANT4 is used for simulating: RICH testbeam data, HCAL testbeam data. GAUSS Project: LHCb Simulation using GEANT4 with GAUDI. Status of GEANT4 in LHCb S. Easo, RAL, 30-9-2002 The LHCbexperiment. GEANT4 is used for simulating: RICH testbeam data, HCAL testbeam data. GAUSS Project: LHCb Simulation using GEANT4 with GAUDI. Summary.

More information

Direct photon measurements in ALICE. Alexis Mas for the ALICE collaboration

Direct photon measurements in ALICE. Alexis Mas for the ALICE collaboration Direct photon measurements in ALICE Alexis Mas for the ALICE collaboration 1 Outline I - Physics motivations for direct photon measurements II Direct photon measurements in ALICE i - Conversion method

More information

Charged Particle Reconstruction in HIC Detectors

Charged Particle Reconstruction in HIC Detectors Charged Particle Reconstruction in HIC Detectors Ralf-Arno Tripolt, Qiyan Li [http://de.wikipedia.org/wiki/marienburg_(mosel)] H-QM Lecture Week on Introduction to Heavy Ion Physics Kloster Marienburg/Mosel,

More information

TPC Detector Response Simulation and Track Reconstruction

TPC Detector Response Simulation and Track Reconstruction TPC Detector Response Simulation and Track Reconstruction Physics goals at the Linear Collider drive the detector performance goals: charged particle track reconstruction resolution: δ reconstruction efficiency:

More information

Applying Machine Learning for bb-decay Identification

Applying Machine Learning for bb-decay Identification Applying Machine Learning for bb-decay Identification Andrey Elagin University of Chicago Work in progress In collaboration with E.Toropov (Carnegie Mellon), I.Vukotic (Chicago), S.Fraker (MIT), L.Winslow

More information

Status of the TORCH time-of-flight detector

Status of the TORCH time-of-flight detector Status of the TORCH time-of-flight detector Neville Harnew University of Oxford (On behalf of the TORCH collaboration : the Universities of Bath, Bristol and Oxford, CERN, and Photek) August 7-9, 2017

More information

Modules and Front-End Electronics Developments for the ATLAS ITk Strips Upgrade

Modules and Front-End Electronics Developments for the ATLAS ITk Strips Upgrade Modules and Front-End Electronics Developments for the ATLAS ITk Strips Upgrade Carlos García Argos, on behalf of the ATLAS ITk Collaboration University of Freiburg International Conference on Technology

More information

for the DESY/ ECFA study detector

for the DESY/ ECFA study detector The TPC Tracker for the DESY/ ECFA study detector Ties Behnke DESY 1-May-1999 the TPC tracker requirements from physics a TPC at TESLA: can this work? results from simulation technical issues conclusion

More information

Charged Particle Tracking at Cornell: Gas Detectors and Event Reconstruction

Charged Particle Tracking at Cornell: Gas Detectors and Event Reconstruction Charged Particle Tracking at Cornell: Gas Detectors and Event Reconstruction Dan Peterson, Cornell University The Cornell group has constructed, operated and maintained the charged particle tracking detectors

More information

Topic 6 Representation and Description

Topic 6 Representation and Description Topic 6 Representation and Description Background Segmentation divides the image into regions Each region should be represented and described in a form suitable for further processing/decision-making Representation

More information

3D-Triplet Tracking for LHC and Future High Rate Experiments

3D-Triplet Tracking for LHC and Future High Rate Experiments 3D-Triplet Tracking for LHC and Future High Rate Experiments André Schöning Physikalisches Institut, Universität Heidelberg Workshop on Intelligent Trackers WIT 2014 University of Pennsylvania May 14-16,

More information

THE ATLAS INNER DETECTOR OPERATION, DATA QUALITY AND TRACKING PERFORMANCE.

THE ATLAS INNER DETECTOR OPERATION, DATA QUALITY AND TRACKING PERFORMANCE. Proceedings of the PIC 2012, Štrbské Pleso, Slovakia THE ATLAS INNER DETECTOR OPERATION, DATA QUALITY AND TRACKING PERFORMANCE. E.STANECKA, ON BEHALF OF THE ATLAS COLLABORATION Institute of Nuclear Physics

More information

FastSim tutorial for beginners

FastSim tutorial for beginners FastSim tutorial for beginners Matteo Rama Laboratori Nazionali di Frascati 1st SuperB Collaboration meeting London, September 2011 Part I FastSim overview M. Rama - 1st SuperB Collaboration Meeting QMUL

More information

ATLAS Simulation Computing Performance and Pile-Up Simulation in ATLAS

ATLAS Simulation Computing Performance and Pile-Up Simulation in ATLAS ATLAS Simulation Computing Performance and Pile-Up Simulation in ATLAS John Chapman On behalf of the ATLAS Collaboration LPCC Detector Simulation Workshop 6th-7th October 2011, CERN Techniques For Improving

More information

The CLICdp Optimization Process

The CLICdp Optimization Process ILDOptWS, Feb, 2016 A. Sailer: The CLICdp Optimization Process 1/17 The CLICdp Optimization Process André Sailer (CERN-EP-LCD) On Behalf of the CLICdp Collaboration ILD Software and Optimisation Workshop

More information

What is it? How does it work? How do we use it?

What is it? How does it work? How do we use it? What is it? How does it work? How do we use it? Dual Nature http://www.youtube.com/watch?v=dfpeprq7ogc o Electromagnetic Waves display wave behavior o Created by oscillating electric and magnetic fields

More information

arxiv:hep-ph/ v1 11 Mar 2002

arxiv:hep-ph/ v1 11 Mar 2002 High Level Tracker Triggers for CMS Danek Kotliński a Andrey Starodumov b,1 a Paul Scherrer Institut, CH-5232 Villigen, Switzerland arxiv:hep-ph/0203101v1 11 Mar 2002 b INFN Sezione di Pisa, Via Livornese

More information

Detector simulations for in-beam PET with FLUKA. Francesco Pennazio Università di Torino and INFN, TORINO

Detector simulations for in-beam PET with FLUKA. Francesco Pennazio Università di Torino and INFN, TORINO Detector simulations for in-beam PET with FLUKA Francesco Pennazio Università di Torino and INFN, TORINO francesco.pennazio@unito.it Outline Why MC simulations in HadronTherapy monitoring? The role of

More information

ATLAS NOTE ATLAS-CONF July 20, Commissioning of the ATLAS high-performance b-tagging algorithms in the 7 TeV collision data

ATLAS NOTE ATLAS-CONF July 20, Commissioning of the ATLAS high-performance b-tagging algorithms in the 7 TeV collision data ALAS NOE ALAS-CONF-2-2 July 2, 2 Commissioning of the ALAS high-performance b-tagging algorithms in the ev collision data he ALAS collaboration ALAS-CONF-2-2 2 July 2 Abstract he ability to identify jets

More information

CMS Simulation Software

CMS Simulation Software CMS Simulation Software Dmitry Onoprienko Kansas State University on behalf of the CMS collaboration 10th Topical Seminar on Innovative Particle and Radiation Detectors 1-5 October 2006. Siena, Italy Simulation

More information

Full Offline Reconstruction in Real Time with the LHCb Detector

Full Offline Reconstruction in Real Time with the LHCb Detector Full Offline Reconstruction in Real Time with the LHCb Detector Agnieszka Dziurda 1,a on behalf of the LHCb Collaboration 1 CERN, Geneva, Switzerland Abstract. This document describes the novel, unique

More information

Scattering/Wave Terminology A few terms show up throughout the discussion of electron microscopy:

Scattering/Wave Terminology A few terms show up throughout the discussion of electron microscopy: 1. Scattering and Diffraction Scattering/Wave Terology A few terms show up throughout the discussion of electron microscopy: First, what do we mean by the terms elastic and inelastic? These are both related

More information

The performance of the ATLAS Inner Detector Trigger Algorithms in pp collisions at the LHC

The performance of the ATLAS Inner Detector Trigger Algorithms in pp collisions at the LHC X11 opical Seminar IPRD, Siena - 7- th June 20 he performance of the ALAS Inner Detector rigger Algorithms in pp collisions at the LHC Mark Sutton University of Sheffield on behalf of the ALAS Collaboration

More information

Event reconstruction in STAR

Event reconstruction in STAR Chapter 4 Event reconstruction in STAR 4.1 Data aquisition and trigger The STAR data aquisition system (DAQ) [54] receives the input from multiple detectors at different readout rates. The typical recorded

More information

SiD Tracking using VXD. Nick Sinev, University of Oregon

SiD Tracking using VXD. Nick Sinev, University of Oregon SiD Tracking using VXD Nick Sinev, University of Oregon Plan Motivation Track reconstruction algorithm Performance for single tracks Does it have any limits? With backgrounds To do Motivation Tracking

More information

Upgrading the ATLAS Tile Calorimeter electronics

Upgrading the ATLAS Tile Calorimeter electronics ITIM Upgrading the ATLAS Tile Calorimeter electronics Gabriel Popeneciu, on behalf of the ATLAS Tile Calorimeter System INCDTIM Cluj Napoca, Romania Gabriel Popeneciu PANIC 2014, Hamburg 26th August 2014

More information

Enhancing the Detector for Advanced Neutron Capture Experiments

Enhancing the Detector for Advanced Neutron Capture Experiments Enhancing the Detector for Advanced Neutron Capture Experiments A. Couture Los Alamos National Laboratory CGS15 25-30 August 2014 Dresden, Germany Slide 1 Time of Flight with Spallation Neutrons Proton

More information

8.882 LHC Physics. Track Reconstruction and Fitting. [Lecture 8, March 2, 2009] Experimental Methods and Measurements

8.882 LHC Physics. Track Reconstruction and Fitting. [Lecture 8, March 2, 2009] Experimental Methods and Measurements 8.882 LHC Physics Experimental Methods and Measurements Track Reconstruction and Fitting [Lecture 8, March 2, 2009] Organizational Issues Due days for the documented analyses project 1 is due March 12

More information

The Pandora Software Development Kit for. - Particle Flow Calorimetry. Journal of Physics: Conference Series. Related content.

The Pandora Software Development Kit for. - Particle Flow Calorimetry. Journal of Physics: Conference Series. Related content. Journal of Physics: Conference Series The Pandora Software Development Kit for Particle Flow Calorimetry To cite this article: J S Marshall and M A Thomson 2012 J. Phys.: Conf. Ser. 396 022034 Related

More information

EicRoot for tracking R&D studies

EicRoot for tracking R&D studies EicRoot for tracking R&D studies Alexander Kiselev EIC Software Meeting Jefferson Lab September,24 2015 Contents of the talk Tracking code implementation in EicRoot Few particular applications: Basic forward

More information

arxiv:physics/ v1 [physics.ins-det] 18 Dec 1998

arxiv:physics/ v1 [physics.ins-det] 18 Dec 1998 Studies of 1 µm-thick silicon strip detector with analog VLSI readout arxiv:physics/981234v1 [physics.ins-det] 18 Dec 1998 T. Hotta a,1, M. Fujiwara a, T. Kinashi b, Y. Kuno c, M. Kuss a,2, T. Matsumura

More information

The Prototype Trigger-Less Data Acquisition of the PANDA Experiment

The Prototype Trigger-Less Data Acquisition of the PANDA Experiment The Prototype Trigger-Less Data Acquisition of the PANDA Experiment M. N. Wagner II. Physikalisches Institut, Justus Liebig University This work was supported in part by BMBF (05P12RGFPF), HGS-HIRe for

More information

The full detector simulation for the ATLAS experiment: status and outlook

The full detector simulation for the ATLAS experiment: status and outlook The full detector simulation for the ATLAS experiment: status and outlook A. Rimoldi University of Pavia & INFN, Italy A.Dell Acqua CERN, Geneva, CH The simulation of the ATLAS detector is a major challenge,

More information