A Prototype of the CMS Object Oriented Reconstruction and Analysis Framework for the Beam Test Data

Size: px
Start display at page:

Download "A Prototype of the CMS Object Oriented Reconstruction and Analysis Framework for the Beam Test Data"

Transcription

1 Prototype of the CMS Object Oriented Reconstruction and nalysis Framework for the Beam Test Data CMS Collaboration presented by Lucia Silvestris CERN, Geneve, Suisse and INFN, Bari, Italy bstract. CMS software requirements and computing resources will by far exceed those of any existing high energy physics experiment, not only for the complexity of the detector and of the physics task but also for the size of the collaboration and the long time scale. Therefore, software should be developed keeping in mind not only performance but also modularity, flexibility, maintainability, quality assurance and documentation. Object Orientation has been identified as the enabling technology, since it directly addresses this kind of problems. We will report on the development of an Object Oriented Reconstruction and nalysis Framework for the CMS experiment and in particular on a prototype of a complete analysis chain for the CMS test-beam data. The analysis chain consists of three different components: data acquisition, reconstruction and analysis, and interactive analysis tools. In the online part the data, read from the VME, are stored into an Objectivity federated database. Later, using an automatic procedure, the database files are moved from the disk connected to the online computer system to the disks, and eventually tapes, connected to the off-line system. In the reconstruction and analysis step the data are retrieved from the database and an analysis of the detector performances can be carried out. The final step consists in the visualisation of the Histograms (produced using the LHC++ HISTOO package) and Tags which have been filled during the previous step. HEP-Explorer tools are used for the visualisation. Commercial as well as freely available class libraries have been used to build the functional prototype. review of results and performances of the prototype, based on the data collected during the summer 998, will be presented. INTRODUCTION The CMS experiment [] is one of four approved LHC experiments. Data taking is scheduled to start in 2005 and will last at least ten years. CMS software and computing task [2] will be times bigger than current HEP experiments. Therefore, software should be developed keeping in mind not only performance but also modularity, flexibility, maintainability, quality assurance and documentation.

2 Object Orientation has been identified as the enabling technology, since it directly address this kind of problems. The overall design of the CMS Software rchitecture is motivated by the following underlying principles: Multiple Environments: Various software modules must be able to run in a variety of environments as different computing tasks are performed (examples of these environments are level 3 triggering, production reconstruction, program development, and individual analysis); Migration between environments: a particular software module may start out being developed for one environment, then later used in other unforeseen environments as well; Distributed code development: the software will be developed by organisationally and geographically dispersed groups of part-time non-professional programmers only some portions of the code will be written by computing professionals; Flexibility: not all software requirements will be fully known in advance, therefore the software systems must be adaptable without requiring total rewrites; Ease of use: the software systems must be easily usable by collaboration physicists who are not computing experts and cannot devote large amounts of time to learning computing techniques. These requirements on the software architecture result in the following overall structure for the CMS software: a customisable application framework for each of the computing environments; physics software modules with clearly defined interfaces that can be plugged into the framework; a service and utility Toolkit that can be used by any of the physics modules. The framework will provide at the program control, module scheduling, and input/output. It will be tailored to the task in hand and will most likely be written by computing professionals (or physicists acting in that role) using disciplined software engineering methods. The physics and utility modules can be plugged into any of the application frameworks at run time. One can easily choose between different versions of various modules. The physics modules will not communicate with each other directly but only through the data access protocols that are part of the service layer below. The service and utility toolkit will consist of two major categories of services: physics type services (histogrammers, fitters, physics calculation routines) and computer services (data access, inter module communication, event input and output, etc).

3 CMS TESTBEM SOFTWRE The general goals of the CMS test-beam activities are to investigate and verify the functionality, quality, and performance of detector elements. These tests are carried out under conditions as similar to the real situation as possible, with various configurations of magnetic field, orientation, shielding, and incident beam energy and particle type. In addition to tests of individual subsystem modules, sets of several detectors are tested as a pseudo CMS slice to study the global performance of CMS. Test-beams also serve for calibration and large scale tests during the construction phase. Currently, there are five test-beams in use by CMS at CERN: two in the North rea (H2 and H4) and two in the West rea (X5B and X5C) and one in the East Hall (T9). ll test-beams used by CMS so far either originate from previous R&D projects, or are parasitically used only. The number of user groups varies from one to many, all with different backgrounds, history, equipment, requirements, and experience. This has led to a great diversity of DQ systems which write the raw data to tape with different methods and data formats. Therefore, we are working towards more coherent and common on-line and off-line analysis environments, based on common data formats, utility programs and simulation frameworks. This will result in enhanced productivity, higher quality components, and allow for more mobility between test-beams of the different user groups. It will be an important test for the CMS DQ system and for the CMS analysis and reconstruction framework. The complete analysis chain for the CMS testbeam data consists of three different components: data acquisition, reconstruction and analysis and interactive analysis tools. CMS TESTBEM DT CQUISITION SOFTWRE Data coming from the detectors, and corresponding to a particular spill, are readout using front-end digitisers. The DQ system then has to assemble the event from many buffers into a single buffer in the processing system of the Event Filter Unit. The CMS TestBeam Event Filter Unit [3] is a multi-threaded application: the first thread, called RawData Server, receives new events from an object scanning the VME memory; the second thread, called Data Store, pulls new events from the RawData Server and stores the event data into the database. The structure of event data may be arbitrarily complex. This requires structured storage which can be obtained using databases. Furthermore, the data access pattern of user applications is such that often many events of a certain type or a certain part of many events will be retrieved. These two types of data access make

4 Event RawEvent data()() {persistent} _time : unsigned long RawData() GetHeaderEvent() {persistent} DetUnit represents an elementary part of a detector. It is responsible for creating (online) and retrieving (offline) the corresponding RawData from the event structure..n RawData readoutname : ReadOutUnit detectorname : DetUnit detectorname {persistent} DetUnit detname&cuts : DetChip det&noisecut : DetChannel : HitCollection_per_detector..n RawData() {persistent} DetectorGeom Reconstructed Hit can performs some preliminary reconstruction to transform the rawdata into Reconstructed detectorname Reconstructed Hit detectorname : DetUnit {transient} DetectorGeom encapsulates geometrical properties for the different DetUnit File: /afs/cern.ch/user/l/lucia/rose/nalysistool_new.mdl Page FIGURE. CMS TestBeam Event Model relational databases less appropriate since many time-consuming join operations are required. Object-Oriented databases provide a better performance for these types of data access, match more closely the programming paradigm and better support the storage of complex data types. In this implementation of the CMS TestBeam DQ System Objectivity/DB version 4.02 is used. Fig. shows the event data model that is implemented for the CMS TestBeams: Event (Persistent Class): the entry point to all information about an event; RawEvent (Persistent Class): an index of all RawData objects; DetUnit (Persistent Class): it represents an elementary part of a detector. It is responsible for creating (online) and retrieving (off-line) the corresponding rawdata from the event structure; RawData (Persistent Class): DetUnit is defined has a part of RawData. This means that we have an instance of RawData only if exists an instance of DetUnit; Reconstructed Hit (Transient Class): Reconstructed Hit can perform some preliminary reconstruction to transform the rawdata into reconstructed data; DetectorGeom (Persistent Class) : DetectorGeom encapsulates the geometrical properties for the different DetUnit s. The CMS TestBeam DQ system stores the data into an Objectivity federated database. Later, using an automatic procedure, called Central Data Recording (CDR), the database files are moved from the disks connected to the on-line computer system, to the disks, and eventually tapes, connected to the off-line system. One of the major advantages of CDR is that it obviates the need for tape drives

5 and robotics to be installed with the DQ system, and thus the need for operation and management of such devices at the testbeam site. Using this implementation of the CMS TestBeam DQ system data were acquired in three different test-beam areas: X5B testbeam: 997: the DQ was active for the October testbeam (-5/0/97). More than 40GB were stored in about 20 databases files; 998: the DQ was active from 5 to 0 June 998. More than 22GB were acquired and stored in 79 database files; H2 testbeam: 997: the DQ was active from ugust 6 to September More than 60GB were acquired and stored in about 250 database files; 998: the DQ was active from 0 July to 0 September 998. More than 30GB were acquired and stored in 300 database files; T9 testbeam 998: the DQ was active from 2 to 8 October 998. More than 0GB were acquired and stored in about 00 database files. CMS TESTBEM RECONSTRUCTION ND NLYSIS FRMEWORK There are different components of the CMS nalysis and Reconstruction Framework (Fig. 2 ): Persistent storage manager: the data are persistently stored. Both event and non-event data have to be managed. It will definitely be an application based on an ODBMS. It will incorporate several distinct mechanisms to efficiently retrieve the required objects in response to a user query. Reconstruction Framework: the system which steers reconstruction according to the user request and the availability of already stored and/or still valid objects. It is intimately connected to the persistent storage manager being its major client. nalysis Framework: uses the reconstruction framework to obtain the required reconstruction objects. Event Visualisation Framework: uses the reconstruction framework to visualise the required reconstruction objects. Statistical nalysis Tools: graphical packages. mainly histogramming tools and corresponding

6 CMS Reconstruction & nalysis FRMEWORK Reconstruction lgorithms Event Filters Event Objects Physics nalysis Calibration Objects Visualisation System Common Tools LHC++ ODBMS CLHEP STL (G)UI FIGURE 2. Components of the CMS Reconstruction and nalysis Framework Fitting Tools: such as MINUIT and relates routines. Presentation Tools: whatever is required to represent Physic Results. n important mechanism for the CMS nalysis and Reconstruction Framework is the notification mechanism. Its responsability is to dispatch events to the different observers, i.e. to the different analysis classes. Using this mechanism the user analysis classes will inherit from abstract classes and no changes to the analysis framework are required. Fig. 3 shows the classes collaborating in this mechanisms and their relationships: Dispatcher : It knows its observers. ny number of observer objects may observe a dispatcher. It provides an interface for attaching and detaching observer objects. Observer : It defines an updating interface for objects that should be notified of changes in a Dispatcher. The relationship Dispatcher-Observer implements a well known Observer Pattern [4]. DTBE : It is a dispatcher of TestBeam events. OTBE : It is an observer of TestBeam events. The user analysis (RawDumper, RawHistos etc) can inherit from OTBE class. nalyzer: It is the generic analysis class that it provided to the user. Histogrammer : This class makes the encapsulation of the HistOO package [5]. Silinal : It is an example of user analysis class. This class is a multiple inheritance from analizer and histogrammer classes. Implementing this class

7 T Dispatcher ooref( X5Even DTBE 0.. S T _currentevent 0..n ooref( X5Run) OX5R T Observer X5 User nalysis ooref( X5Even OTBE nalizer X5aMain TBEDumper RaWDumper RaWHistos Silinal tbedumper F F DTBE = Dispatcher Test Beam Event OTBE = Observer Test Beam Event, OX5R = Observer X5 Run TBEDumper = Dump of the Test Beam Events Histogram mer File: /afs/cern.ch/user/l/lucia/rose/x5user.mdl Page FIGURE 3. Notification Mechanisms the user can do the analysis of the test-beam events and can store the results into HistOOgrams [5]. Using the same notification mechanism, but with different types of events like Geant3 [7] or Geant4 [9] events the user is able to analyse not only TestBeam events but also simulated events. CMS TESTBEM INTERCTIVE NLYSIS TOOL The final step consists of the visualisation of the histograms, produced using LHC++ HistOO package [5], and Tags [6] which are produced in the analysis step. HEP-Explorer [8] is used for the visualisation. Fig. 4 shows first results for silicon detectors, that are obtained from the complete CMS TestBeam analysis chain. CONCLUSIONS The complexity of the computing tasks of the CMS experiment requires its software to be developed using methods that will ensure not only its correctness but also flexibility and ease to use. This will cope with the inevitable changes in requirements and detector configuration, in a large collaboration and with a long time scale. In the last years a series of studies and prototypes have shown how Object- Oriented technologies are the best candidate to satisfy those requirements. CMS Framework for Reconstruction and nalysis, entirely based on Object- Oriented components, has been developed to prove several concepts to be used in the final implementation, like:

8 FIGURE 4. X5B TestBeam Results event model; persistent storage manager (ODBMS) notification mechanisms query mechanisms interface with Geant3 and Geant4 simulation It has been successfully tested in H2, X5B and T9 TestBeam data acquisition, simulation and analysis. In 999, this prototype will evolve into a common software to be used in all CMS TestBeam areas and in the outside laboratories where the detectors will be assembled and tested. REFERENCES. CMS - The Compact Muon Solenoid, Technical Proposal CERN/LHCC 94-38, LHCC/P, CERN The Compact Muon Solenoid, Computing Technical Proposal CERN/LHCC 96-45, CERN CMS Online Event Filter Farm Software talk 74, session B, presented at this conference. 4. E. Gamma et al., Design Patterns, ddison Wesley, Reading, Massachusetts, CERN CERN CERN CERN CERN 998.

INTRODUCTION TO THE ANAPHE/LHC++ SOFTWARE SUITE

INTRODUCTION TO THE ANAPHE/LHC++ SOFTWARE SUITE INTRODUCTION TO THE ANAPHE/LHC++ SOFTWARE SUITE Andreas Pfeiffer CERN, Geneva, Switzerland Abstract The Anaphe/LHC++ project is an ongoing effort to provide an Object-Oriented software environment for

More information

Introduction to Geant4

Introduction to Geant4 Introduction to Geant4 Release 10.4 Geant4 Collaboration Rev1.0: Dec 8th, 2017 CONTENTS: 1 Geant4 Scope of Application 3 2 History of Geant4 5 3 Overview of Geant4 Functionality 7 4 Geant4 User Support

More information

CMS event display and data quality monitoring at LHC start-up

CMS event display and data quality monitoring at LHC start-up Journal of Physics: Conference Series CMS event display and data quality monitoring at LHC start-up To cite this article: I Osborne et al 2008 J. Phys.: Conf. Ser. 119 032031 View the article online for

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 -2017/188 The Compact Muon Solenoid Experiment Conference Report Mailing address: CMS CERN, CH-1211 GENEVA 23, Switzerland 29 June 2017 (v2, 07 July 2017) Common

More information

LHCb Computing Strategy

LHCb Computing Strategy LHCb Computing Strategy Nick Brook Computing Model 2008 needs Physics software Harnessing the Grid DIRC GNG Experience & Readiness HCP, Elba May 07 1 Dataflow RW data is reconstructed: e.g. Calo. Energy

More information

Muon Reconstruction and Identification in CMS

Muon Reconstruction and Identification in CMS Muon Reconstruction and Identification in CMS Marcin Konecki Institute of Experimental Physics, University of Warsaw, Poland E-mail: marcin.konecki@gmail.com An event reconstruction at LHC is a challenging

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

The CMS Computing Model

The CMS Computing Model The CMS Computing Model Dorian Kcira California Institute of Technology SuperComputing 2009 November 14-20 2009, Portland, OR CERN s Large Hadron Collider 5000+ Physicists/Engineers 300+ Institutes 70+

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

GAUDI - The Software Architecture and Framework for building LHCb data processing applications. Marco Cattaneo, CERN February 2000

GAUDI - The Software Architecture and Framework for building LHCb data processing applications. Marco Cattaneo, CERN February 2000 GAUDI - The Software Architecture and Framework for building LHCb data processing applications Marco Cattaneo, CERN February 2000 1 Outline Introduction Design choices GAUDI Architecture overview Status

More information

Performance quality monitoring system for the Daya Bay reactor neutrino experiment

Performance quality monitoring system for the Daya Bay reactor neutrino experiment Journal of Physics: Conference Series OPEN ACCESS Performance quality monitoring system for the Daya Bay reactor neutrino experiment To cite this article: Y B Liu and the Daya Bay collaboration 2014 J.

More information

The CMS data quality monitoring software: experience and future prospects

The CMS data quality monitoring software: experience and future prospects The CMS data quality monitoring software: experience and future prospects Federico De Guio on behalf of the CMS Collaboration CERN, Geneva, Switzerland E-mail: federico.de.guio@cern.ch Abstract. The Data

More information

DQM4HEP - A Generic Online Monitor for Particle Physics Experiments

DQM4HEP - A Generic Online Monitor for Particle Physics Experiments DQM4HEP - A Generic Online Monitor for Particle Physics Experiments Carlos Chavez-Barajas, and Fabrizio Salvatore University of Sussex (GB) E-mail: carlos.chavez.barajas@cern.ch, tom.coates@cern.ch, p.f.salvatore@sussex.ac.uk

More information

The COMPASS Event Store in 2002

The COMPASS Event Store in 2002 The COMPASS Event Store in 2002 V. Duic INFN, Trieste, Italy M. Lamanna CERN, Switzerland and INFN, Trieste, Italy COMPASS, the fixed-target experiment at CERN studying the structure of the nucleon and

More information

Clustering and Reclustering HEP Data in Object Databases

Clustering and Reclustering HEP Data in Object Databases Clustering and Reclustering HEP Data in Object Databases Koen Holtman CERN EP division CH - Geneva 3, Switzerland We formulate principles for the clustering of data, applicable to both sequential HEP applications

More information

The BABAR Database: Challenges, Trends and Projections

The BABAR Database: Challenges, Trends and Projections SLAC-PUB-9179 September 2001 The BABAR Database: Challenges, Trends and Projections I. Gaponenko 1, A. Mokhtarani 1, S. Patton 1, D. Quarrie 1, A. Adesanya 2, J. Becla 2, A. Hanushevsky 2, A. Hasan 2,

More information

The BaBar Computing Model *

The BaBar Computing Model * SLAC PUB 9964 April 1997 The BaBar Computing Model * N. Geddes Rutherford Appleton Laboratory, Chilton, Didcot, England OX11 0QX Representing the BaBar Collaboration Abstract The BaBar experiment will

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

Storage and I/O requirements of the LHC experiments

Storage and I/O requirements of the LHC experiments Storage and I/O requirements of the LHC experiments Sverre Jarp CERN openlab, IT Dept where the Web was born 22 June 2006 OpenFabrics Workshop, Paris 1 Briefly about CERN 22 June 2006 OpenFabrics Workshop,

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

Track reconstruction with the CMS tracking detector

Track reconstruction with the CMS tracking detector Track reconstruction with the CMS tracking detector B. Mangano (University of California, San Diego) & O.Gutsche (Fermi National Accelerator Laboratory) Overview The challenges The detector Track reconstruction

More information

S-LINK: A Prototype of the ATLAS Read-out Link

S-LINK: A Prototype of the ATLAS Read-out Link : A Prototype of the ATLAS Read-out Link Erik van der Bij, Robert McLaren, Zoltán Meggyesi EP-Division CERN, CH-1211 Geneva 23 Abstract The ATLAS data acquisition system needs over 1500 read-out links

More information

Stephen J. Gowdy (CERN) 12 th September 2012 XLDB Conference FINDING THE HIGGS IN THE HAYSTACK(S)

Stephen J. Gowdy (CERN) 12 th September 2012 XLDB Conference FINDING THE HIGGS IN THE HAYSTACK(S) Stephen J. Gowdy (CERN) 12 th September 2012 XLDB Conference FINDING THE HIGGS IN THE HAYSTACK(S) Overview Large Hadron Collider (LHC) Compact Muon Solenoid (CMS) experiment The Challenge Worldwide LHC

More information

Data Acquisition Software for CMS HCAL Testbeams

Data Acquisition Software for CMS HCAL Testbeams Data Acquisition Software for CMS HCAL Testbeams J. Mans and W. Fisher Princeton University, Princeton, NJ 08544, USA Although CMS will not start operation for several years, many subdetector groups have

More information

Detector Control LHC

Detector Control LHC Detector Control Systems @ LHC Matthias Richter Department of Physics, University of Oslo IRTG Lecture week Autumn 2012 Oct 18 2012 M. Richter (UiO) DCS @ LHC Oct 09 2012 1 / 39 Detectors in High Energy

More information

Use of ROOT in the DØ Online Event Monitoring System

Use of ROOT in the DØ Online Event Monitoring System Use of ROOT in the DØ Online Event Monitoring System J. Snow 1, P. Canal 2, J. Kowalkowski 2,J.Yu 2 1 Langston University, Langston, Oklahoma 73050, USA 2 Fermi National Accelerator Laboratory, P.O. Box

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

Conference The Data Challenges of the LHC. Reda Tafirout, TRIUMF

Conference The Data Challenges of the LHC. Reda Tafirout, TRIUMF Conference 2017 The Data Challenges of the LHC Reda Tafirout, TRIUMF Outline LHC Science goals, tools and data Worldwide LHC Computing Grid Collaboration & Scale Key challenges Networking ATLAS experiment

More information

Andrea Sciabà CERN, Switzerland

Andrea Sciabà CERN, Switzerland Frascati Physics Series Vol. VVVVVV (xxxx), pp. 000-000 XX Conference Location, Date-start - Date-end, Year THE LHC COMPUTING GRID Andrea Sciabà CERN, Switzerland Abstract The LHC experiments will start

More information

Hall D and IT. at Internal Review of IT in the 12 GeV Era. Mark M. Ito. May 20, Hall D. Hall D and IT. M. Ito. Introduction.

Hall D and IT. at Internal Review of IT in the 12 GeV Era. Mark M. Ito. May 20, Hall D. Hall D and IT. M. Ito. Introduction. at Internal Review of IT in the 12 GeV Era Mark Hall D May 20, 2011 Hall D in a Nutshell search for exotic mesons in the 1.5 to 2.0 GeV region 12 GeV electron beam coherent bremsstrahlung photon beam coherent

More information

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

Multi-threaded, discrete event simulation of distributed computing systems

Multi-threaded, discrete event simulation of distributed computing systems Multi-threaded, discrete event simulation of distributed computing systems Iosif C. Legrand California Institute of Technology, Pasadena, CA, U.S.A Abstract The LHC experiments have envisaged computing

More information

Monte Carlo programs

Monte Carlo programs Monte Carlo programs Alexander Khanov PHYS6260: Experimental Methods is HEP Oklahoma State University November 15, 2017 Simulation steps: event generator Input = data cards (program options) this is the

More information

Challenges and Evolution of the LHC Production Grid. April 13, 2011 Ian Fisk

Challenges and Evolution of the LHC Production Grid. April 13, 2011 Ian Fisk Challenges and Evolution of the LHC Production Grid April 13, 2011 Ian Fisk 1 Evolution Uni x ALICE Remote Access PD2P/ Popularity Tier-2 Tier-2 Uni u Open Lab m Tier-2 Science Uni x Grid Uni z USA Tier-2

More information

Gamma-ray Large Area Space Telescope. Work Breakdown Structure

Gamma-ray Large Area Space Telescope. Work Breakdown Structure Gamma-ray Large Area Space Telescope Work Breakdown Structure 4.1.D Science Analysis Software The Science Analysis Software comprises several components: (1) Prompt processing of instrument data through

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

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

IGUANA Architecture, Framework and Toolkit for Interactive Graphics

IGUANA Architecture, Framework and Toolkit for Interactive Graphics IGUANA Architecture, Framework and Toolkit for Interactive Graphics George Alverson, Giulio Eulisse, Shahzad Muzaffar, Ianna Osborne, Lassi A. Tuura, Lucas Taylor Northeastern University, Boston, USA IGUANA

More information

Atlas event data model optimization studies based on the use of segmented VArray in Objectivity/DB.

Atlas event data model optimization studies based on the use of segmented VArray in Objectivity/DB. Atlas event data model optimization studies based on the use of segmented VArray in Objectivity/DB. S. Rolli, A. Salvadori 2,A.C. Schaffer 2 3,M. Schaller 2 4 Tufts University, Medford, MA, USA 2 CERN,

More information

The ALICE Glance Shift Accounting Management System (SAMS)

The ALICE Glance Shift Accounting Management System (SAMS) Journal of Physics: Conference Series PAPER OPEN ACCESS The ALICE Glance Shift Accounting Management System (SAMS) To cite this article: H. Martins Silva et al 2015 J. Phys.: Conf. Ser. 664 052037 View

More information

Real-time dataflow and workflow with the CMS tracker data

Real-time dataflow and workflow with the CMS tracker data Journal of Physics: Conference Series Real-time dataflow and workflow with the CMS tracker data To cite this article: N D Filippis et al 2008 J. Phys.: Conf. Ser. 119 072015 View the article online for

More information

Development and test of a versatile DAQ system based on the ATCA standard

Development and test of a versatile DAQ system based on the ATCA standard Development and test of a versatile DAQ system based on the ATCA standard M.Bianco, a P.J.Loesel, b S.Martoiu, c, ad and A.Zibell e a CERN PH Department, Geneve, Switzerland b Ludwig-Maximilians-Univ.

More information

Software and computing evolution: the HL-LHC challenge. Simone Campana, CERN

Software and computing evolution: the HL-LHC challenge. Simone Campana, CERN Software and computing evolution: the HL-LHC challenge Simone Campana, CERN Higgs discovery in Run-1 The Large Hadron Collider at CERN We are here: Run-2 (Fernando s talk) High Luminosity: the HL-LHC challenge

More information

Track pattern-recognition on GPGPUs in the LHCb experiment

Track pattern-recognition on GPGPUs in the LHCb experiment Track pattern-recognition on GPGPUs in the LHCb experiment Stefano Gallorini 1,2 1 University and INFN Padova, Via Marzolo 8, 35131, Padova, Italy 2 CERN, 1211 Geneve 23, Switzerland DOI: http://dx.doi.org/10.3204/desy-proc-2014-05/7

More information

Production and Quality Assurance of Detector Modules for the LHCb Silicon Tracker

Production and Quality Assurance of Detector Modules for the LHCb Silicon Tracker Production and Quality Assurance of Detector Modules for the LHCb Silicon Tracker Olaf Steinkamp for Dmytro Volyanskyy Physik-Institut der Universität Zürich 10th ICATPP Conference on Astroparticle, Particle,

More information

The CMS L1 Global Trigger Offline Software

The CMS L1 Global Trigger Offline Software The CMS L1 Global Offline Software Vasile Mihai Ghete Institute for High Energy Physics, Vienna, Austria Seminar 08-09 June 2009, HEPHY Vienna CMS experiment Tracker pixel detector: 3 barrel layers, 2

More information

Geant4 in a Distributed Computing Environment

Geant4 in a Distributed Computing Environment Geant4 in a Distributed Computing Environment S. Guatelli 1, P. Mendez Lorenzo 2, J. Moscicki 2, M.G. Pia 1 1. INFN Genova, Italy, 2. CERN, Geneva, Switzerland Geant4 2005 10 th user conference and collaboration

More information

Simulation and data reconstruction framework slic & lcsim. Norman Graf, Jeremy McCormick SLAC HPS Collaboration Meeting May 27, 2011

Simulation and data reconstruction framework slic & lcsim. Norman Graf, Jeremy McCormick SLAC HPS Collaboration Meeting May 27, 2011 Simulation and data reconstruction framework slic & lcsim Norman Graf, Jeremy McCormick SLAC HPS Collaboration Meeting May 27, 2011 Simulation Mission Statement Provide full simulation capabilities for

More information

Data Transfers Between LHC Grid Sites Dorian Kcira

Data Transfers Between LHC Grid Sites Dorian Kcira Data Transfers Between LHC Grid Sites Dorian Kcira dkcira@caltech.edu Caltech High Energy Physics Group hep.caltech.edu/cms CERN Site: LHC and the Experiments Large Hadron Collider 27 km circumference

More information

AGIS: The ATLAS Grid Information System

AGIS: The ATLAS Grid Information System AGIS: The ATLAS Grid Information System Alexey Anisenkov 1, Sergey Belov 2, Alessandro Di Girolamo 3, Stavro Gayazov 1, Alexei Klimentov 4, Danila Oleynik 2, Alexander Senchenko 1 on behalf of the ATLAS

More information

Data Flow & Leve1 1 Pipeline

Data Flow & Leve1 1 Pipeline Data Flow & Leve1 1 Pipeline High level specs in L3 & L4 documents: Level 4 - LAT-SS-00505-01 Level 3 - LAT-SS-00020-01 Pipeline Server Implementation Plan - LAT-TD-00773-01 (draft in review) Database

More information

Kondo GNANVO Florida Institute of Technology, Melbourne FL

Kondo GNANVO Florida Institute of Technology, Melbourne FL Kondo GNANVO Florida Institute of Technology, Melbourne FL OUTLINE Development of AMORE software for online monitoring and data analysis of MT station Preliminary cosmic data results from triple-gem chambers

More information

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

The Compact Muon Solenoid Experiment. CMS Note. Mailing address: CMS CERN, CH-1211 GENEVA 23, Switzerland Available on CMS information server CMS NOTE 998/4 The Compact Muon Solenoid Experiment CMS Note Mailing address: CMS CERN, CH-2 GENEVA 23, Switzerland 29 July 998 Muon DTBX Chamber Trigger Simulation

More information

Data Quality Monitoring Display for ATLAS experiment

Data Quality Monitoring Display for ATLAS experiment Data Quality Monitoring Display for ATLAS experiment Y Ilchenko 1, C Cuenca Almenar 2, A Corso-Radu 2, H Hadavand 1, S Kolos 2, K Slagle 2, A Taffard 2 1 Southern Methodist University, Dept. of Physics,

More information

Track reconstruction of real cosmic muon events with CMS tracker detector

Track reconstruction of real cosmic muon events with CMS tracker detector Track reconstruction of real cosmic muon events with CMS tracker detector Piergiulio Lenzi a, Chiara Genta a, Boris Mangano b a Università degli Studi di Firenze and Istituto Nazionale di Fisica Nucleare

More information

Real-time Analysis with the ALICE High Level Trigger.

Real-time Analysis with the ALICE High Level Trigger. Real-time Analysis with the ALICE High Level Trigger C. Loizides 1,3, V.Lindenstruth 2, D.Röhrich 3, B.Skaali 4, T.Steinbeck 2, R. Stock 1, H. TilsnerK.Ullaland 3, A.Vestbø 3 and T.Vik 4 for the ALICE

More information

A PROPOSAL FOR MODELING THE CONTROL SYSTEM FOR THE SPANISH LIGHT SOURCE IN UML

A PROPOSAL FOR MODELING THE CONTROL SYSTEM FOR THE SPANISH LIGHT SOURCE IN UML A PROPOSAL FOR MODELING THE CONTROL SYSTEM FOR THE SPANISH LIGHT SOURCE IN UML D. Beltran*, LLS, Barcelona, Spain M. Gonzalez, CERN, Geneva, Switzerlan Abstract CELLS (Consorcio para la construcción, equipamiento

More information

Massive-Scale Data Management using Standards-Based Solutions

Massive-Scale Data Management using Standards-Based Solutions Massive-Scale Data Management using Standards-Based Solutions Abstract Jamie Shiers CERN Geneva Switzerland In common with many large institutes, CERN has traditionally developed and maintained its own

More information

Optimizing Parallel Access to the BaBar Database System Using CORBA Servers

Optimizing Parallel Access to the BaBar Database System Using CORBA Servers SLAC-PUB-9176 September 2001 Optimizing Parallel Access to the BaBar Database System Using CORBA Servers Jacek Becla 1, Igor Gaponenko 2 1 Stanford Linear Accelerator Center Stanford University, Stanford,

More information

Object oriented data analysis in ALEPH

Object oriented data analysis in ALEPH EPS-HEP99 Abstract # 5-707 Parallel sessions: 6 Plenary sessions: 5 ALEPH 99-056 CONF 99-03 June 30, 999 PRELIMINARY OPEN-99-250 30/06/99 Object oriented data analysis in ALEPH The ALEPH Collaboration

More information

The creation of a Tier-1 Data Center for the ALICE experiment in the UNAM. Lukas Nellen ICN-UNAM

The creation of a Tier-1 Data Center for the ALICE experiment in the UNAM. Lukas Nellen ICN-UNAM The creation of a Tier-1 Data Center for the ALICE experiment in the UNAM Lukas Nellen ICN-UNAM lukas@nucleares.unam.mx 3rd BigData BigNetworks Conference Puerto Vallarta April 23, 2015 Who Am I? ALICE

More information

Tracking and Vertexing performance in CMS

Tracking and Vertexing performance in CMS Vertex 2012, 16-21 September, Jeju, Korea Tracking and Vertexing performance in CMS Antonio Tropiano (Università and INFN, Firenze) on behalf of the CMS collaboration Outline Tracker description Track

More information

Distributing storage of LHC data - in the nordic countries

Distributing storage of LHC data - in the nordic countries Distributing storage of LHC data - in the nordic countries Gerd Behrmann INTEGRATE ASG Lund, May 11th, 2016 Agenda WLCG: A world wide computing grid for the LHC NDGF: The Nordic Tier 1 dcache: Distributed

More information

VISPA: Visual Physics Analysis Environment

VISPA: Visual Physics Analysis Environment VISPA: Visual Physics Analysis Environment Tatsiana Klimkovich for the VISPA group (O.Actis, M.Erdmann, R.Fischer, A.Hinzmann, M.Kirsch, G.Müller, M.Plum, J.Steggemann) DESY Computing Seminar, 27 October

More information

AN OVERVIEW OF THE LHC EXPERIMENTS' CONTROL SYSTEMS

AN OVERVIEW OF THE LHC EXPERIMENTS' CONTROL SYSTEMS AN OVERVIEW OF THE LHC EXPERIMENTS' CONTROL SYSTEMS C. Gaspar, CERN, Geneva, Switzerland Abstract The four LHC experiments (ALICE, ATLAS, CMS and LHCb), either by need or by choice have defined different

More information

The GAP project: GPU applications for High Level Trigger and Medical Imaging

The GAP project: GPU applications for High Level Trigger and Medical Imaging The GAP project: GPU applications for High Level Trigger and Medical Imaging Matteo Bauce 1,2, Andrea Messina 1,2,3, Marco Rescigno 3, Stefano Giagu 1,3, Gianluca Lamanna 4,6, Massimiliano Fiorini 5 1

More information

Run Control and Monitor System for the CMS Experiment

Run Control and Monitor System for the CMS Experiment Run Control and Monitor System for the CMS Experiment V. Brigljevic, G. Bruno, E. Cano, S. Cittolin, A. Csilling, D. Gigi, F. Glege, R. Gomez-Reino, M. Gulmini 1,*, J. Gutleber, C. Jacobs, M. Kozlovszky,

More information

Benchmarking the ATLAS software through the Kit Validation engine

Benchmarking the ATLAS software through the Kit Validation engine Benchmarking the ATLAS software through the Kit Validation engine Alessandro De Salvo (1), Franco Brasolin (2) (1) Istituto Nazionale di Fisica Nucleare, Sezione di Roma, (2) Istituto Nazionale di Fisica

More information

Machine Learning in Data Quality Monitoring

Machine Learning in Data Quality Monitoring CERN openlab workshop on Machine Learning and Data Analytics April 27 th, 2017 Machine Learning in Data Quality Monitoring a point of view Goal Maximize the best Quality Data for physics analysis Data

More information

SLAC Testbeam Data Analysis: High Occupancy Tracking & FE-I4 Cluster Study

SLAC Testbeam Data Analysis: High Occupancy Tracking & FE-I4 Cluster Study SLAC Testbeam Data Analysis: High Occupancy Tracking & FE-I4 Cluster Study DESY Summer Student Project 2014 Martin Klassen, University of Heidelberg, Germany September 27, 2014 Abstract In this report

More information

PoS(ACAT08)100. FROG: The Fast & Realistic OPENGL Event Displayer

PoS(ACAT08)100. FROG: The Fast & Realistic OPENGL Event Displayer FROG: The Fast & Realistic OPENGL Event Displayer Center for Particle Physics and Phenomenology (CP3) Université catholique de Louvain Chemin du cyclotron 2, B-1348-Louvain-la-Neuve - Belgium E-mail: loic.quertenmont@cern.ch

More information

A new approach for ATLAS Athena job configuration

A new approach for ATLAS Athena job configuration A new approach for ATLAS Athena job configuration Walter Lampl 1, on behalf of the ATLAS Collaboration 1 University of Arizona, 1118 E 4th Street, Tucson AZ, 85721 ATL-SOFT-PROC-2018-049 01 December 2018

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 -2009/098 The Compact Muon Solenoid Experiment Conference Report Mailing address: CMS CERN, CH-1211 GENEVA 23, Switzerland 15 April 2009 FROG: The Fast And Realistic

More information

Virtualizing a Batch. University Grid Center

Virtualizing a Batch. University Grid Center Virtualizing a Batch Queuing System at a University Grid Center Volker Büge (1,2), Yves Kemp (1), Günter Quast (1), Oliver Oberst (1), Marcel Kunze (2) (1) University of Karlsruhe (2) Forschungszentrum

More information

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

The Compact Muon Solenoid Experiment. CMS Note. Mailing address: CMS CERN, CH-1211 GENEVA 23, Switzerland Available on CMS information server CMS NOTE 998/ The Compact Muon Solenoid Experiment CMS Note Mailing address: CMS CERN, CH- GENEVA 3, Switzerland 8 July 998 A simplified Track Assembler I/O for the

More information

SoLID GEM Detectors in US

SoLID GEM Detectors in US SoLID GEM Detectors in US Kondo Gnanvo University of Virginia SoLID Collaboration Meeting @ JLab, 08/26/2016 Outline Design Optimization U-V strips readout design Large GEMs for PRad in Hall B Requirements

More information

ISTITUTO NAZIONALE DI FISICA NUCLEARE

ISTITUTO NAZIONALE DI FISICA NUCLEARE ISTITUTO NAZIONALE DI FISICA NUCLEARE Sezione di Perugia INFN/TC-05/10 July 4, 2005 DESIGN, IMPLEMENTATION AND CONFIGURATION OF A GRID SITE WITH A PRIVATE NETWORK ARCHITECTURE Leonello Servoli 1,2!, Mirko

More information

Summary of CERN Workshop on Future Challenges in Tracking and Trigger Concepts. Abdeslem DJAOUI PPD Rutherford Appleton Laboratory

Summary of CERN Workshop on Future Challenges in Tracking and Trigger Concepts. Abdeslem DJAOUI PPD Rutherford Appleton Laboratory Summary of CERN Workshop on Future Challenges in Tracking and Trigger Concepts Abdeslem DJAOUI PPD Rutherford Appleton Laboratory Background to Workshop Organised by CERN OpenLab and held in IT Auditorium,

More information

Summary of the LHC Computing Review

Summary of the LHC Computing Review Summary of the LHC Computing Review http://lhc-computing-review-public.web.cern.ch John Harvey CERN/EP May 10 th, 2001 LHCb Collaboration Meeting The Scale Data taking rate : 50,100, 200 Hz (ALICE, ATLAS-CMS,

More information

L1 and Subsequent Triggers

L1 and Subsequent Triggers April 8, 2003 L1 and Subsequent Triggers Abstract During the last year the scope of the L1 trigger has changed rather drastically compared to the TP. This note aims at summarising the changes, both in

More information

Stefan Koestner on behalf of the LHCb Online Group ( IEEE - Nuclear Science Symposium San Diego, Oct.

Stefan Koestner on behalf of the LHCb Online Group (  IEEE - Nuclear Science Symposium San Diego, Oct. Stefan Koestner on behalf of the LHCb Online Group (email: Stefan.Koestner@cern.ch) IEEE - Nuclear Science Symposium San Diego, Oct. 31 st 2006 Dedicated to B-physics : single arm forward spectrometer

More information

CMS data quality monitoring: Systems and experiences

CMS data quality monitoring: Systems and experiences Journal of Physics: Conference Series CMS data quality monitoring: Systems and experiences To cite this article: L Tuura et al 2010 J. Phys.: Conf. Ser. 219 072020 Related content - The CMS data quality

More information

Prompt data reconstruction at the ATLAS experiment

Prompt data reconstruction at the ATLAS experiment Prompt data reconstruction at the ATLAS experiment Graeme Andrew Stewart 1, Jamie Boyd 1, João Firmino da Costa 2, Joseph Tuggle 3 and Guillaume Unal 1, on behalf of the ATLAS Collaboration 1 European

More information

Computing in High Energy and Nuclear Physics, March 2003, La Jolla, California

Computing in High Energy and Nuclear Physics, March 2003, La Jolla, California Simulation in ALICE Computing in High Energy and Nuclear Physics, 24-28 March 2003, La Jolla, California F. Carminati, A. Morsch on behalf of the ALICE Offline Project CERN, 1211 Geneva 23, Switzerland

More information

Data services for LHC computing

Data services for LHC computing Data services for LHC computing SLAC 1 Xavier Espinal on behalf of IT/ST DAQ to CC 8GB/s+4xReco Hot files Reliable Fast Processing DAQ Feedback loop WAN aware Tier-1/2 replica, multi-site High throughout

More information

Physics CMS Muon High Level Trigger: Level 3 reconstruction algorithm development and optimization

Physics CMS Muon High Level Trigger: Level 3 reconstruction algorithm development and optimization Scientifica Acta 2, No. 2, 74 79 (28) Physics CMS Muon High Level Trigger: Level 3 reconstruction algorithm development and optimization Alessandro Grelli Dipartimento di Fisica Nucleare e Teorica, Università

More information

(for the CMS Collaboration) CHEP 03, La Jolla, 24th March 2003

(for the CMS Collaboration) CHEP 03, La Jolla, 24th March 2003 Validation of GEANT4 by the CMS Experiment ARCE Pedro 1,2, ARCELLI Silvia 3, BANERJEE Sunanda 4, BANERJEE Sudeshna 4, BOCCALI Tommaso 5, DE LA CRUZ Begoña 1, DE ROECK Albert 2, DUTTA Suchandra 5, ELVIRA

More information

Validation of the front-end electronics and firmware for LHCb vertex locator.

Validation of the front-end electronics and firmware for LHCb vertex locator. Validation of the front-end electronics and firmware for LHCb vertex locator. Antonio Fernández Prieto Universidade de santiago de compostela, Spain E-mail: antonio.fernandez.prieto@cern.ch Pablo Vázquez

More information

Monitoring of Computing Resource Use of Active Software Releases at ATLAS

Monitoring of Computing Resource Use of Active Software Releases at ATLAS 1 2 3 4 5 6 Monitoring of Computing Resource Use of Active Software Releases at ATLAS Antonio Limosani on behalf of the ATLAS Collaboration CERN CH-1211 Geneva 23 Switzerland and University of Sydney,

More information

SoLID GEM Detectors in US

SoLID GEM Detectors in US SoLID GEM Detectors in US Kondo Gnanvo University of Virginia SoLID Collaboration Meeting @ Jlab, 01/13/2016 Outline Overview of SoLID GEM Trackers Large area GEM R&D @ UVa Update on APV25 Electronics

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

The Track-Finding Processor for the Level-1 Trigger of the CMS Endcap Muon System

The Track-Finding Processor for the Level-1 Trigger of the CMS Endcap Muon System The Track-Finding Processor for the Level- Trigger of the CMS Endcap Muon System D. Acosta, A. Madorsky (Madorsky@phys.ufl.edu), B. Scurlock, S.M. Wang University of Florida A. Atamanchuk, V. Golovtsov,

More information

Suez: Job Control and User Interface for CLEO III

Suez: Job Control and User Interface for CLEO III Suez: Job Control and User Interface for CLEO III Martin Lohner, Christopher D. Jones, Paul Avery University of Florida, Gainesville Abstract. Suez standardizes the way CLEO III data is processed by providing

More information

PoS(ACAT08)101. An Overview of the b-tagging Algorithms in the CMS Offline Software. Christophe Saout

PoS(ACAT08)101. An Overview of the b-tagging Algorithms in the CMS Offline Software. Christophe Saout An Overview of the b-tagging Algorithms in the CMS Offline Software Christophe Saout CERN, Geneva, Switzerland E-mail: christophe.saout@cern.ch The CMS Offline software contains a widespread set of algorithms

More information

The LHC Compact Muon Solenoid experiment Detector Control System

The LHC Compact Muon Solenoid experiment Detector Control System Journal of Physics: Conference Series The LHC Compact Muon Solenoid experiment Detector Control System To cite this article: G Bauer et al 2011 J. Phys.: Conf. Ser. 331 022009 View the article online for

More information

LCIO: A Persistency Framework and Event Data Model for HEP. Steve Aplin, Jan Engels, Frank Gaede, Norman A. Graf, Tony Johnson, Jeremy McCormick

LCIO: A Persistency Framework and Event Data Model for HEP. Steve Aplin, Jan Engels, Frank Gaede, Norman A. Graf, Tony Johnson, Jeremy McCormick LCIO: A Persistency Framework and Event Data Model for HEP Steve Aplin, Jan Engels, Frank Gaede, Norman A. Graf, Tony Johnson, Jeremy McCormick SLAC-PUB-15296 Abstract LCIO is a persistency framework and

More information

Data Quality Monitoring at CMS with Machine Learning

Data Quality Monitoring at CMS with Machine Learning Data Quality Monitoring at CMS with Machine Learning July-August 2016 Author: Aytaj Aghabayli Supervisors: Jean-Roch Vlimant Maurizio Pierini CERN openlab Summer Student Report 2016 Abstract The Data Quality

More information

Improving Packet Processing Performance of a Memory- Bounded Application

Improving Packet Processing Performance of a Memory- Bounded Application Improving Packet Processing Performance of a Memory- Bounded Application Jörn Schumacher CERN / University of Paderborn, Germany jorn.schumacher@cern.ch On behalf of the ATLAS FELIX Developer Team LHCb

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

LHC-B. 60 silicon vertex detector elements. (strips not to scale) [cm] [cm] = 1265 strips

LHC-B. 60 silicon vertex detector elements. (strips not to scale) [cm] [cm] = 1265 strips LHCb 97-020, TRAC November 25 1997 Comparison of analogue and binary read-out in the silicon strips vertex detector of LHCb. P. Koppenburg 1 Institut de Physique Nucleaire, Universite de Lausanne Abstract

More information