ROOT Course. Vincenzo Vitale, Dip. Fisica and INFN Roma 2

Size: px
Start display at page:

Download "ROOT Course. Vincenzo Vitale, Dip. Fisica and INFN Roma 2"

Transcription

1 ROOT Course Vincenzo Vitale, Dip. Fisica and INFN Roma 2

2 Introduction This is a basic introduction to ROOT. The purpose of the course is to provide a starting knowledge and some practical experiences on ROOT. This material is based on the ROOT documentation and other ROOT tutorials. LEGO strategy: use what you have or find what you need. Comparison of different ROOT experiences might be useful 2

3 OUTLINE What is ROOT Before ROOT: PAW ROOT and LHC What ROOT can do for you Some ROOT users Open Source Project ROOT modes Exercise: command line, GUI 3

4 What is ROOT ROOT is an object-oriented software package developed by CERN.(*) It was originally designed for particle physics data analysis and contains several features specific to this field. But it is also commonly used in other applications such as astronomy and data mining. * from Wikipedia 4

5 What is ROOT Development was initiated by René Brun and Fons Rademakers in ROOT is written in C++ 5

6 Before ROOT: PAW PAW widely used in particle physics Composed: HBOOK, ZEBRA, KUIP, COMIS, SIGMA Data analysis with NTUPLE (tables) Simple and Efficient No way to insert more complex structures Difficult to extend Expensive to maintain Too many different languages:fortran, KUIP, SIGMA 6

7 ROOT goals Support full data analysis chain Complete objects Object hierarchies Histogramming Fitting Visualization Only one language : C++ Better maintainable: OOP Extensible: OO framework tech. 7

8 Differences from PAW Regular grammar (C++) on command line Single language (compiled and interpreted) Object Oriented (use your class in the interpreter) Advanced Interactive User Interface Well Documented code. HTML class descriptions for every class. Object I/O including Schema Evolution 3-D interfaces with OpenGL and X3D. 8

9 ROOT and LHC The Large Hadron Collider's experiments will collect several tens of Petabytes of data per year. (1 Petabyte = 1000 Terabytes, compare with your PC harddisk) LHC data will be analyzed with ROOT. Then ROOT focus is on high performances, because of the amount of data C++ provides modularity and performances 9

10 What ROOT can do for you histogramming and graphing to visualize and analyze distributions and functions, curve fitting (regression analysis) and minimization of functionals, statistics tools used for data analysis, matrix algebra, four-vector computations, as used in high energy physics, standard mathematical functions, multivariate data analysis, e.g. using Neural Networks, image manipulation, used e.g. to analyze astronomical pictures, access to distributed data (in the context of the Grid) distributed computing, to parallelize data analyses, persistence and serialization of objects, which can cope with changes in class definitions of persistent data, access to databases, 3D visualizations (geometry) creating files in various graphics formats, like PostScript, JPEG, SVG, interfacing Python and Ruby code in both directions, interfacing Monte Carlo event generators... 10

11 Examples Histograms 11

12 Examples Data visualization and analysis 12

13 Examples Graphics in 2 and 3 dim 13

14 Examples Graphics in 2 and 3 dim 14

15 Examples LATEX support 15

16 Examples ALICE central Pb-Pb simulated event 16

17 Examples Astrophysical data handling 17

18 some ROOT users BaBar CDF COMPASS DZero H1 MINOS PHENIX PHOBOS STAR ZEUS CRESST... ALICE ATLAS CMS LHCb NOνA PANDA GLAST MAGIC PAMELA ICECUBE H.E.S.S. Milagro (experiment) Pierre Auger Observatory VERITAS... 18

19 Open Source Project Developed as a collaboration: CERN, FermiLAB, Japan, MIT, others Thousand of users giving feedback, comments and other contributions Open Source Project, source is available under GPL license 3/4 major releases a year Annual workshop Let users become developers 19

20 Distribution ROOT is FREELY available at ROOT is well maintained All the new releases and patches are available Large documentation and forums 20

21 ROOT modes Interactive Session (ROOT command line interface) Macro (Script Processor) Compiled executables Scripting languages C++ is the language for all the operating modes 21

22 Exercise 1 2 hours will be dedicated to exercises Log on...(address given by voice for security) User: glast Temporary password: nopass > bash or Download binaries from ROOT page on your laptop Set ROOTSYS, PATH and LD_LIBRARY_PATH environment variables 22

23 Exercise 1 Start ROOT Quit ROOT Output on screen Run a minimal macro > root root [ ].q 23

24 Exercise 1 Output on screen root [] root [] float x = 45.6 root [] float y = sqrt(x); root [] float z = x+y; root [] x root [] y root [] z root [] cout << hallo world << endl; 24

25 CINT Extensions to C++ 1. Declaration can be omitted f = new TFile("Example.root") 2. "." notation rather than "->" f.ls() 3. Search for an object by its name TH1F *smallhisto = new TH1F("small","fPx 100",100,-5,5); small->draw(); Warning: These will not work in compiled code! 25

26 CINT Commands [expression] evaluates the expression.files show loaded source files.class [name] show class definition.g prints all objects in the root session.ls ls on current directory.pwd list the current directory, canvas, and style. 26

27 Exercise 1 Run a minimal macro root [].x macro1.c Void macro1() { cout << this is a ROOT macro << endl; } Histogram macro root [].x histo2.c 27

28 Open a File Open a file for reading root [] TFile f( example.root ) Listing the file content root [].x f.ls Or use TBrowser root [] TBrowser t 28

29 The Editor Panel The Editor Panel Adding Error bars Changing colors Styles 29

30 Color and Error Bars Colors root [] main->setfillcolor(9) Error Bars root [] main->draw( e1 same ) Fit root [] main->fit( gaus ) 30

31 The Editor Panel Sliders Rebining 31

32 Fitting, Coloring, and Zooming Adding a gaussian fit Coloring the histogram Zooming/unzooming 32

33 Basic Navigation by Clicking Left Click select the object drag the object resize the object Right Click context menu class::name methods Middle Click activate canvas pop pads freezes event status bar 33

34 Dividing the Canvas Create a new Canvas Divide it in 2 Draw two histograms 34

35 1-D Drawing Options Any object in the canvas is clickable and editable 35

ROOT: An object-orientated analysis framework

ROOT: An object-orientated analysis framework C++ programming for physicists ROOT: An object-orientated analysis framework PD Dr H Kroha, Dr J Dubbert, Dr M Flowerdew 1 Kroha, Dubbert, Flowerdew 14/04/11 What is ROOT? An object-orientated framework

More information

HEP data analysis using ROOT

HEP data analysis using ROOT HEP data analysis using ROOT week I ROOT, CLING and the command line Histograms, Graphs and Trees Mark Hodgkinson Course contents ROOT, CLING and the command line Histograms, Graphs and Trees File I/O,

More information

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

ROOT Trips & Tricks. Ole Hansen. Jefferson Lab. Hall A & C Analysis Workshop June 26 27, 2017

ROOT Trips & Tricks. Ole Hansen. Jefferson Lab. Hall A & C Analysis Workshop June 26 27, 2017 ROOT Trips & Tricks Ole Hansen Jefferson Lab Hall A & C Analysis Workshop June 26 27, 2017 Ole Hansen (Jefferson Lab) ROOT Trips & Tricks Analysis Workshop 2017 1 / 25 Brief Introduction Ole Hansen (Jefferson

More information

Offline Tutorial I. Małgorzata Janik Łukasz Graczykowski. Warsaw University of Technology

Offline Tutorial I. Małgorzata Janik Łukasz Graczykowski. Warsaw University of Technology Offline Tutorial I Małgorzata Janik Łukasz Graczykowski Warsaw University of Technology Offline Tutorial, 5.07.2011 1 Contents ALICE experiment AliROOT ROOT GRID & AliEn Event generators - Monte Carlo

More information

Getting Started with ROOT

Getting Started with ROOT Getting Started with ROOT Welcome to Getting Started with ROOT. Physicists are involved in the business of getting data into files, analyzing it, and then producing histogram plots and fits. This tutorial

More information

ALICE Simulation Architecture

ALICE Simulation Architecture ALICE Simulation Architecture Linear Collider Workshop November 15 René Brun CERN ALICE Simulation Architecture 1 ALICE Event/100 Front View of a simulated event with only 1/100 of the expected multiplicity

More information

PROOF-Condor integration for ATLAS

PROOF-Condor integration for ATLAS PROOF-Condor integration for ATLAS G. Ganis,, J. Iwaszkiewicz, F. Rademakers CERN / PH-SFT M. Livny, B. Mellado, Neng Xu,, Sau Lan Wu University Of Wisconsin Condor Week, Madison, 29 Apr 2 May 2008 Outline

More information

PAW: Physicist Analysis Workstation

PAW: Physicist Analysis Workstation PAW: Physicist Analysis Workstation What is PAW? A tool to display and manipulate data. Learning PAW See ref. in your induction week notes. Running PAW: 2 Versions:- PAW: 2 windows: A terminal window for

More information

An Introduction to Root I/O

An Introduction to Root I/O An Introduction to Root I/O C Coleman-Smith Duke Physics cec24@phy.duke.edu March 31, 2010 Outline Getting Started With Root What is root What can root do Compiling, installing, getting help Macros & Functions

More information

INTRODUCTION TUTORIAL

INTRODUCTION TUTORIAL INTRODUCTION TUTORIAL Introduction to ROOT Adrian Bevan YETI January 2007 Uses ROOT 5.12.00 OVERVIEW 3 tutorials over the next two days: Introduction: Introduction to ROOT. Multi Variate Analysis: Training

More information

Existing Tools in HEP and Particle Astrophysics

Existing Tools in HEP and Particle Astrophysics Existing Tools in HEP and Particle Astrophysics Richard Dubois richard@slac.stanford.edu R.Dubois Existing Tools in HEP and Particle Astro 1/20 Outline Introduction: Fermi as example user Analysis Toolkits:

More information

Introduction to ROOT. Sebastian Fleischmann. 06th March 2012 Terascale Introductory School PHYSICS AT THE. University of Wuppertal TERA SCALE SCALE

Introduction to ROOT. Sebastian Fleischmann. 06th March 2012 Terascale Introductory School PHYSICS AT THE. University of Wuppertal TERA SCALE SCALE to ROOT University of Wuppertal 06th March 2012 Terascale Introductory School 22 1 2 3 Basic ROOT classes 4 Interlude: 5 in ROOT 6 es and legends 7 Graphical user interface 8 ROOT trees 9 Appendix: s 33

More information

ROOT. Introduction. Spring 2010 Lecture 5. S. Lehti and V.Karimäki. COMPUTING METHODS IN HIGH ENERGY PHYSICS (page 1)

ROOT. Introduction. Spring 2010 Lecture 5. S. Lehti and V.Karimäki. COMPUTING METHODS IN HIGH ENERGY PHYSICS (page 1) Introduction ROOT is an object-oriented framework aimed at solving data analysis challenges of high energy physics. The commonly used components of ROOT are Command line interpreter Histogramming and fitting

More information

A Geometrical Modeller for HEP

A Geometrical Modeller for HEP A Geometrical Modeller for HEP R. Brun, A. Gheata CERN, CH 1211, Geneva 23, Switzerland M. Gheata ISS, RO 76900, Bucharest MG23, Romania For ALICE off-line collaboration Geometrical modelling generally

More information

Open data and scientific reproducibility

Open data and scientific reproducibility Open data and scientific reproducibility Victoria Stodden School of Information Sciences University of Illinois at Urbana-Champaign Data Science @ LHC 2015 Workshop CERN Nov 13, 2015 Closing Remarks: Open

More information

High-Energy Physics Data-Storage Challenges

High-Energy Physics Data-Storage Challenges High-Energy Physics Data-Storage Challenges Richard P. Mount SLAC SC2003 Experimental HENP Understanding the quantum world requires: Repeated measurement billions of collisions Large (500 2000 physicist)

More information

Introduction to ROOT and application to data analysis at the LHC

Introduction to ROOT and application to data analysis at the LHC Introduction to ROOT and application to data analysis at the LHC INSTITUTE OF PHYSICS, HANOI August 13, 2014 1 Outline 1 ROOT: Motivation and Introduction 2 ROOT basics 3 ROOT analysis 4 Application to

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

Practical Statistics for Particle Physics Analyses: Introduction to Computing Examples

Practical Statistics for Particle Physics Analyses: Introduction to Computing Examples Practical Statistics for Particle Physics Analyses: Introduction to Computing Examples Louis Lyons (Imperial College), Lorenzo Moneta (CERN) IPMU, 27-29 March 2017 Introduction Hands-on session based on

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

JAIDA, JAS3, WIRED4 and the AIDA tag library experience and new developments

JAIDA, JAS3, WIRED4 and the AIDA tag library experience and new developments SLAC-PUB-12950 March 2008 JAIDA, JAS3, WIRED4 and the AIDA tag library experience and new developments M Donszelmann 1, T Johnson 1, V V Serbo 1, M Turri 1 1 SLAC, 2575 Sand Hill Road, Menlo Park, CA 94025,

More information

ROOT Course. Vincenzo Vitale, Dip. Fisica and INFN Roma 2

ROOT Course. Vincenzo Vitale, Dip. Fisica and INFN Roma 2 ROOT Course Vincenzo Vitale, Dip. Fisica and INFN Roma 2 OUTLINE Object-Oriented programming Procedural and OO paradigms Fundamental Concepts A ROOT class Vincenzo Vitale, Astro & Particle Physics SW,

More information

Python Scripting for Computational Science

Python Scripting for Computational Science Hans Petter Langtangen Python Scripting for Computational Science Third Edition With 62 Figures 43 Springer Table of Contents 1 Introduction... 1 1.1 Scripting versus Traditional Programming... 1 1.1.1

More information

Introduction to ROOT. M. Eads PHYS 474/790B. Friday, January 17, 14

Introduction to ROOT. M. Eads PHYS 474/790B. Friday, January 17, 14 Introduction to ROOT What is ROOT? ROOT is a software framework containing a large number of utilities useful for particle physics: More stuff than you can ever possibly need (or want)! 2 ROOT is written

More information

ROOT for beginners. First Day Discovering the graphical environment

ROOT for beginners. First Day Discovering the graphical environment ROOT for beginners First Day Discovering the graphical environment Welcome to ROOT! Today's menu: Handling ROOT files Plotting 1-D spectra Handling canvases Decorating a figure Fitting a 1-D spectrum Operations

More information

AIDA JAS Massimiliano Turri, SLAC Massimiliano Turri, SLAC INFN-LNF, 7 July 2003

AIDA JAS Massimiliano Turri, SLAC Massimiliano Turri, SLAC INFN-LNF, 7 July 2003 AIDA JAS Massimiliano Turri, SLAC AIDA Abstract Interfaces for Data Analysis http://aida.freehep.org AIDA Outline Abstract Interfaces for Data Analysis Introduction Features - Advantages History Organization

More information

Data Analysis Frameworks

Data Analysis Frameworks Data Analysis Frameworks ROOT Data Analysis Frameworks Computational Physics Prof. Paul Eugenio Department of Physics Florida State University April 10, 2018 Exercise 8 Due Date extended to Noon Thursday

More information

Volunteer Computing at CERN

Volunteer Computing at CERN Volunteer Computing at CERN BOINC workshop Sep 2014, Budapest Tomi Asp & Pete Jones, on behalf the LHC@Home team Agenda Overview Status of the LHC@Home projects Additional BOINC projects Service consolidation

More information

Python Scripting for Computational Science

Python Scripting for Computational Science Hans Petter Langtangen Python Scripting for Computational Science Third Edition With 62 Figures Sprin ger Table of Contents 1 Introduction 1 1.1 Scripting versus Traditional Programming 1 1.1.1 Why Scripting

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

Large Scale Software Building with CMake in ATLAS

Large Scale Software Building with CMake in ATLAS 1 Large Scale Software Building with CMake in ATLAS 2 3 4 5 6 7 J Elmsheuser 1, A Krasznahorkay 2, E Obreshkov 3, A Undrus 1 on behalf of the ATLAS Collaboration 1 Brookhaven National Laboratory, USA 2

More information

Detector controls meets JEE on the web

Detector controls meets JEE on the web Detector controls meets JEE on the web ICALEPCS 2015 Frank Glege Outline Part 1: Web based Remote access to controls systems Part 2: JEE for controls 20.10.2015 Frank Glege 2 About CERN 20.10.2015 Frank

More information

Computational Physics Operating systems

Computational Physics Operating systems Computational Physics numerical methods with C++ (and UNIX) 2018-19 Fernando Barao Instituto Superior Tecnico, Dep. Fisica email: fernando.barao@tecnico.ulisboa.pt Computational Physics 2018-19 (Phys Dep

More information

PAW++ Physics Analysis Workstation. User s Guide. Version 2.02 (September 1993) Application Software Group. Computing and Networks Division

PAW++ Physics Analysis Workstation. User s Guide. Version 2.02 (September 1993) Application Software Group. Computing and Networks Division CERN Program Library Long Writeup Q121 PAW++ Physics Analysis Workstation User s Guide Version 2.02 (September 1993) Application Software Group Computing and Networks Division CERN Geneva, Switzerland

More information

INTRODUCTION TO ROOT & BASIC APPLICATIONS

INTRODUCTION TO ROOT & BASIC APPLICATIONS INTRODUCTION TO ROOT & BASIC APPLICATIONS by Alexis Pompili (pompili@ba.infn.it) Master course Laboratorio di Analisi Da3 Esercitazione 0 LABORATORIO ANALISI DATI Alexis Pompili How to access the Virtual

More information

MATLAB 7. The Language of Technical Computing KEY FEATURES

MATLAB 7. The Language of Technical Computing KEY FEATURES MATLAB 7 The Language of Technical Computing MATLAB is a high-level technical computing language and interactive environment for algorithm development, data visualization, data analysis, and numerical

More information

How to...create a Video VBOX Gauge in Inkscape. So you want to create your own gauge? How about a transparent background for those text elements?

How to...create a Video VBOX Gauge in Inkscape. So you want to create your own gauge? How about a transparent background for those text elements? BASIC GAUGE CREATION The Video VBox setup software is capable of using many different image formats for gauge backgrounds, static images, or logos, including Bitmaps, JPEGs, or PNG s. When the software

More information

PAW++ CERN Program Library Long Writeup Q121. Physics Analysis Workstation. User s Guide. Application Software Group. Computing and Networks Division

PAW++ CERN Program Library Long Writeup Q121. Physics Analysis Workstation. User s Guide. Application Software Group. Computing and Networks Division CERN Program Library Long Writeup Q121 PAW++ Physics Analysis Workstation User s Guide Application Software Group Computing and Networks Division CERN Geneva, Switzerland Copyright Notice PAW Physics Analysis

More information

Machine Learning Software ROOT/TMVA

Machine Learning Software ROOT/TMVA Machine Learning Software ROOT/TMVA LIP Data Science School / 12-14 March 2018 ROOT ROOT is a software toolkit which provides building blocks for: Data processing Data analysis Data visualisation Data

More information

Recasting LHC analyses with MADANALYSIS 5

Recasting LHC analyses with MADANALYSIS 5 Recasting LHC analyses with MADANALYSIS 5 Fuks Benjamin IPHC - U. Strasbourg With E. Conte & the PAD team (S. Kraml et al., K. Mawatari & K. de Causmaecker, etc.) MC4BSM 2015 @ Fermilab, USA 18-21 May

More information

The Run 2 ATLAS Analysis Event Data Model

The Run 2 ATLAS Analysis Event Data Model The Run 2 ATLAS Analysis Event Data Model Marcin Nowak, BNL On behalf of the ATLAS Analysis Software Group and Event Store Group 16 th International workshop on Advanced Computing and Analysis Techniques

More information

Matplotlib Python Plotting

Matplotlib Python Plotting Matplotlib Python Plotting 1 / 6 2 / 6 3 / 6 Matplotlib Python Plotting Matplotlib is a Python 2D plotting library which produces publication quality figures in a variety of hardcopy formats and interactive

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

ROOT TUTORIAL. Dirk Krücker, Kelly Beernaert, Ilya Bobovnikov.

ROOT TUTORIAL. Dirk Krücker, Kelly Beernaert, Ilya Bobovnikov. ROOT TUTORIAL Dirk Krücker, Kelly Beernaert, Ilya Bobovnikov https://indico.desy.de/conferencedisplay.py?confid=15780 July 21 th, 2016 DESY Summer Student Program 2016 What is ROOT? 2 ROOT is the Swiss

More information

Physics Analysis Workstation. User s Guide. Version 2.02 (September 1993) Application Software Group. Computing and Networks Division

Physics Analysis Workstation. User s Guide. Version 2.02 (September 1993) Application Software Group. Computing and Networks Division CERN Program Library Long Writeup Q121 Physics Analysis Workstation User s Guide Version 2.02 (September 1993) Application Software Group Computing and Networks Division CERN Geneva, Switzerland Copyright

More information

New Developments of ROOT Mathematical Software Libraries

New Developments of ROOT Mathematical Software Libraries New Developments of ROOT Mathematical Software Libraries Lorenzo Moneta CERN/PH-SFT Root Math Work Package Main responsibilities for this work package: Evaluation of basic mathematical functions Numerical

More information

CSCS CERN videoconference CFD applications

CSCS CERN videoconference CFD applications CSCS CERN videoconference CFD applications TS/CV/Detector Cooling - CFD Team CERN June 13 th 2006 Michele Battistin June 2006 CERN & CFD Presentation 1 TOPICS - Some feedback about already existing collaboration

More information

Monitoring the software quality in FairRoot. Gesellschaft für Schwerionenforschung, Plankstrasse 1, Darmstadt, Germany

Monitoring the software quality in FairRoot. Gesellschaft für Schwerionenforschung, Plankstrasse 1, Darmstadt, Germany Gesellschaft für Schwerionenforschung, Plankstrasse 1, 64291 Darmstadt, Germany E-mail: f.uhlig@gsi.de Mohammad Al-Turany Gesellschaft für Schwerionenforschung, Plankstrasse 1, 64291 Darmstadt, Germany

More information

P445/515 Data Analysis using PAW

P445/515 Data Analysis using PAW P445/515 Data Analysis using PAW C. McGrew February 10, 2003 Abstract PAW (Physics Analysis Workstation) is a complete physics analysis package developed at CERN to handle high energy physics data. It

More information

Contents. LS-DYNA is a registered trademark of Livermore Software Technology Corporation. back to contents

Contents. LS-DYNA is a registered trademark of Livermore Software Technology Corporation. back to contents REPORTER 9.2 Contents Introduction to Reporter User interface menu layout Creating a template first steps Text Editing objects Variables D3PLOT images T/HIS graphs Lines, arrows, etc Library programs Ordering

More information

Grid and Cloud Activities in KISTI

Grid and Cloud Activities in KISTI Grid and Cloud Activities in KISTI March 23, 2011 Soonwook Hwang KISTI, KOREA 1 Outline Grid Operation and Infrastructure KISTI ALICE Tier2 Center FKPPL VO: Production Grid Infrastructure Global Science

More information

Potential use of JAS/JAIDA etc. SAS J2EE Review

Potential use of JAS/JAIDA etc. SAS J2EE Review Potential use of JAS/JAIDA etc. SAS J2EE Review Mark Donszelmann (standing in for Max Turri) SLAC Java Tools Group Outline Review of existing tools developed for GLAST GLAST System Tests Interface Enhanced

More information

Physics Analysis Workstation

Physics Analysis Workstation CERN Program Library Long Writeup Q121 Physics Analysis Workstation User s guide Information Technology Division CERN, Geneva, Switzerland Copyright Notice PAW Physics Analysis Workstation CERN Program

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

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

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

ROOT Analysis Framework (I) Introduction. Qipeng Hu March 15 th, 2015

ROOT Analysis Framework (I) Introduction. Qipeng Hu March 15 th, 2015 ROOT Analysis Framework (I) Introduction Qipeng Hu March 15 th, 2015 What is ROOT? Why do we use it? Simple answer: It makes plots! Graph [fb/gev] dσ jet /de T,jet 7 6 5 4 3 2 s = 14 TeV η

More information

Frank Gaede, DESY, LCWS 2005, Stanford, CA March Overview of Simulation and Reconstruction Tools in Europe

Frank Gaede, DESY, LCWS 2005, Stanford, CA March Overview of Simulation and Reconstruction Tools in Europe Overview of Simulation and Reconstruction Tools in Europe Frank Gaede, DESY LCWS 2005, Stanford, CA March 18 22 2005 1 Outline Introduction LCIO data model & persistency Simulation SIMDET fast simulation

More information

ROOT Status and Future Developments

ROOT Status and Future Developments ROOT Status and Future Developments R. Brun, F. Rademakers CERN, CH 1211, Geneva 23, Switzerland P. Canal FNAL, Batavia, IL 60510, USA M. Goto Agilent Technologies, Suginami-ku, Tokyo 168, JAPAN In this

More information

Verification and Diagnostics Framework in ATLAS Trigger/DAQ

Verification and Diagnostics Framework in ATLAS Trigger/DAQ Verification and Diagnostics Framework in ATLAS Trigger/DAQ M.Barczyk, D.Burckhart-Chromek, M.Caprini 1, J.Da Silva Conceicao, M.Dobson, J.Flammer, R.Jones, A.Kazarov 2,3, S.Kolos 2, D.Liko, L.Lucio, L.Mapelli,

More information

WEB SITE. Interface publication Instructions

WEB SITE. Interface publication Instructions WEB SITE Interface publication Instructions Version 1.0 Language: English I Introduction 1.1 - Organisation of the site The site of EU-HOU is a site of CMS type, which allows the recorded users to publish

More information

GSI Experiment Electronics

GSI Experiment Electronics J.Adamczewski-Musch, S.Linev GSI Experiment Electronics Workshop 2011 J.Adamczewski-Musch 1 Workshop schedule Time Action Tutors 10:00 10:30 10:30-12:00 12:00-13:00 13:00-15:00 15:00-15:30 15:30-16:00

More information

Lecture I: Basics REU Root Duke Jen Raaf

Lecture I: Basics REU Root Duke Jen Raaf Lecture I: Basics Linux commands What is ROOT? Interactive ROOT session - command line vs. macros vs. user-compiled code Opening files / accessing information Histograms and Trees and Functions, Oh My!

More information

CS-Studio Display Builder

CS-Studio Display Builder CS-Studio Display Builder Tutorial presented: Spring 2017 EPICS Collaboration Meeting at KURRI, Osaka, Japan Megan Grodowitz, Kay Kasemir (kasemir@ornl.gov) Overview Display Builder replaces OPI Builder

More information

From raw data to new fundamental particles: The data management lifecycle at the Large Hadron Collider

From raw data to new fundamental particles: The data management lifecycle at the Large Hadron Collider From raw data to new fundamental particles: The data management lifecycle at the Large Hadron Collider Andrew Washbrook School of Physics and Astronomy University of Edinburgh Dealing with Data Conference

More information

An SQL-based approach to physics analysis

An SQL-based approach to physics analysis Journal of Physics: Conference Series OPEN ACCESS An SQL-based approach to physics analysis To cite this article: Dr Maaike Limper 2014 J. Phys.: Conf. Ser. 513 022022 View the article online for updates

More information

Outline. policies. with some potential answers... MCS 260 Lecture 19 Introduction to Computer Science Jan Verschelde, 24 February 2016

Outline. policies. with some potential answers... MCS 260 Lecture 19 Introduction to Computer Science Jan Verschelde, 24 February 2016 Outline 1 midterm exam on Friday 26 February 2016 policies 2 questions with some potential answers... MCS 260 Lecture 19 Introduction to Computer Science Jan Verschelde, 24 February 2016 Intro to Computer

More information

Geant4 activities at DESY

Geant4 activities at DESY Geant4 activities at DESY 3 rd Ecfa/Desy workshop Prague November 2002 Frank Gaede DESY -IT- Outline Introduction Current work Near term goals Looking ahead Conclusion ECFA/DESY workshop Prague 11/02 Frank

More information

Experience of the WLCG data management system from the first two years of the LHC data taking

Experience of the WLCG data management system from the first two years of the LHC data taking Experience of the WLCG data management system from the first two years of the LHC data taking 1 Nuclear Physics Institute, Czech Academy of Sciences Rez near Prague, CZ 25068, Czech Republic E-mail: adamova@ujf.cas.cz

More information

RooFit Tutorial. Jeff Haas Florida State University April 16, 2010

RooFit Tutorial. Jeff Haas Florida State University April 16, 2010 RooFit Tutorial Jeff Haas Florida State University April 16, 2010 Outline Purpose Structure Basic Classes Implementation Toy Monte Carlo Fitting data Fitting options & results April 16, 2009 FSU CMS Meeting

More information

CouchDB-based system for data management in a Grid environment Implementation and Experience

CouchDB-based system for data management in a Grid environment Implementation and Experience CouchDB-based system for data management in a Grid environment Implementation and Experience Hassen Riahi IT/SDC, CERN Outline Context Problematic and strategy System architecture Integration and deployment

More information

ROOT5. L. Peter Alonzi III. November 10, University of Virginia

ROOT5. L. Peter Alonzi III. November 10, University of Virginia ROOT5 L. Peter Alonzi III University of Virginia November 10, 2010 Philosophy ROOT was written by people who haven t done physics for 20 years for people who won t do physics for 20 years. Back in the

More information

Data handling and processing at the LHC experiments

Data handling and processing at the LHC experiments 1 Data handling and processing at the LHC experiments Astronomy and Bio-informatic Farida Fassi CC-IN2P3/CNRS EPAM 2011, Taza, Morocco 2 The presentation will be LHC centric, which is very relevant for

More information

ALICE Grid/Analysis Tutorial Exercise-Solutions

ALICE Grid/Analysis Tutorial Exercise-Solutions WLCG Asia Workshop, 2.12.2006 ALICE Grid/Analysis Tutorial Exercise-Solutions Andreas-Joachim Peters CERN www.eu-egee.org cern.ch/lcg http://cern.ch/arda EGEE is a project funded by the European Union

More information

CMS - HLT Configuration Management System

CMS - HLT Configuration Management System Journal of Physics: Conference Series PAPER OPEN ACCESS CMS - HLT Configuration Management System To cite this article: Vincenzo Daponte and Andrea Bocci 2015 J. Phys.: Conf. Ser. 664 082008 View the article

More information

Chapter 11 Program Development and Programming Languages

Chapter 11 Program Development and Programming Languages Chapter 11 Program Development and Programming Languages permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use. Programming

More information

HippoDraw and Hippoplotamus*

HippoDraw and Hippoplotamus* SLAC-PUB-5758 February 1992 (E/I) ESTABLISHED 1962 HippoDraw and Hippoplotamus* Michael F. Gravina, Paul F. Kunz, Tomas J. Pavel, and Paul E. Rensing Stanford Linear Accelerator Center Stanford University

More information

Software Installation - Accessing Linux and Checking your Environmental Variables

Software Installation - Accessing Linux and Checking your Environmental Variables Accessing Linux and Checking your Environmental Although you may be fortunate enough to have a powerful multi-processor desktop running Linux, most of our sponsors do not. Most of our sponsors will have

More information

For more info and downloads go to: Gerrit Stols

For more info and downloads go to:   Gerrit Stols For more info and downloads go to: http://school-maths.com Gerrit Stols Acknowledgements GeoGebra is dynamic mathematics open source (free) software for learning and teaching mathematics in schools. It

More information

Scientific Data Curation and the Grid

Scientific Data Curation and the Grid Scientific Data Curation and the Grid David Boyd CLRC e-science Centre http://www.e-science.clrc.ac.uk/ d.r.s.boyd@rl.ac.uk 19 October 2001 Digital Curation Seminar 1 Outline Some perspectives on scientific

More information

Recasting with. Eric Conte, Benjamin Fuks. (Re)interpreting the results of new physics searches at the LHC June CERN

Recasting with. Eric Conte, Benjamin Fuks. (Re)interpreting the results of new physics searches at the LHC June CERN Recasting with Eric Conte, Benjamin Fuks (Re)interpreting the results of new physics searches at the LHC June 15-17 2016 @ CERN 1 Outlines 1. What is MadAnalysis 5? 2. Normal & expert mode 3. MadAnalysis

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

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

Tutorial: Introduction to Flow Graph

Tutorial: Introduction to Flow Graph Tutorial: Introduction to Flow Graph This tutorial introduces you to Flow Graph, including its core concepts, the Flow Graph editor and how to use it to create game logic. At the end of this tutorial,

More information

Summary of Image and Plotting Software (IPS) packages collected. for possible use with GLAST Science Analysis Tools

Summary of Image and Plotting Software (IPS) packages collected. for possible use with GLAST Science Analysis Tools Summary of Image and Software (IPS) packages collected for possible use with GLAST Science Analysis Tools For the Science Analysis Tools, we will need the capability to make plots, and display images on

More information

LCB Workshop, Marseille 1999

LCB Workshop, Marseille 1999 LCB Workshop Marseille, 27/9-2/10 1999 Event Filter Farms Distributed Computing and Regional Centres Architecture Round Table on Software Process Simulation Persistency at LHC Data Analysis Technology

More information

CERN openlab II. CERN openlab and. Sverre Jarp CERN openlab CTO 16 September 2008

CERN openlab II. CERN openlab and. Sverre Jarp CERN openlab CTO 16 September 2008 CERN openlab II CERN openlab and Intel: Today and Tomorrow Sverre Jarp CERN openlab CTO 16 September 2008 Overview of CERN 2 CERN is the world's largest particle physics centre What is CERN? Particle physics

More information

GROUP CANVAS USER SIDE FUNCTIONS

GROUP CANVAS USER SIDE FUNCTIONS Group Canvas V5.0 17 GROUP CANVAS USER SIDE FUNCTIONS INTRODUCTION Once the template is available on the user side there are a number of functions that the users have access to. This section of the manual

More information

GÉANT Mission and Services

GÉANT Mission and Services GÉANT Mission and Services Vincenzo Capone Senior Technical Business Development Officer CREMLIN WP2 Workshop on Big Data Management 15 February 2017, Moscow GÉANT - Networks Manages research & education

More information

Blender Notes. Introduction to Digital Modelling and Animation in Design Blender Tutorial - week 1 The Blender Interface and Basic Shapes

Blender Notes. Introduction to Digital Modelling and Animation in Design Blender Tutorial - week 1 The Blender Interface and Basic Shapes Blender Notes Introduction to Digital Modelling and Animation in Design Blender Tutorial - week 1 The Blender Interface and Basic Shapes Introduction Blender is a powerful modeling, animation and rendering

More information

SHARPE Interface User's Manual Version 1.01

SHARPE Interface User's Manual Version 1.01 SHARPE Interface User's Manual Version 1.01 Contact information: Professor Kishor S. Trivedi Center for Advanced Computing and Communication (CACC) Department of Electrical and Computer Engineering Duke

More information

Session 1: Accessing MUGrid and Command Line Basics

Session 1: Accessing MUGrid and Command Line Basics Session 1: Accessing MUGrid and Command Line Basics Craig A. Struble, Ph.D. July 14, 2010 1 Introduction The Marquette University Grid (MUGrid) is a collection of dedicated and opportunistic resources

More information

ROOT. Data Storage & Analysis Framework. Stanford, XLDB2015 René Brun / CERN

ROOT. Data Storage & Analysis Framework. Stanford, XLDB2015 René Brun / CERN ROOT Data Storage & Analysis Framework Stanford, XLDB2015 René Brun / CERN h:p://root.cern.ch R.Brun: ROOT: data storage & analysis framework May 22 2015 2 HEP (High Energy Physics) Observable Details

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

ENVI Tutorial: Introduction to ENVI

ENVI Tutorial: Introduction to ENVI ENVI Tutorial: Introduction to ENVI Table of Contents OVERVIEW OF THIS TUTORIAL...1 GETTING STARTED WITH ENVI...1 Starting ENVI...1 Starting ENVI on Windows Machines...1 Starting ENVI in UNIX...1 Starting

More information

Programming, numerics and optimization

Programming, numerics and optimization Programming, numerics and optimization Lecture A-4: Object-oriented programming Łukasz Jankowski ljank@ippt.pan.pl Institute of Fundamental Technological Research Room 4.32, Phone +22.8261281 ext. 428

More information

1 Introduction. V. Fine, Y. l%yak,?? Perevoztchikov, T.Wenaus

1 Introduction. V. Fine, Y. l%yak,?? Perevoztchikov, T.Wenaus r. Proc. Computing in High Energy Physics February 7-11, 2000 Padova, Italy The STAR offline framework V. Fine, Y. l%yak,?? Perevoztchikov, T.Wenaus Brookhaven National Laboratory, USA J( J( BNL-68207

More information

Using the GeoX Framework

Using the GeoX Framework Using the GeoX Framework Michael Wand February 3rd, 2014 1. Introduction GeoX is a collection of C++ libraries for experimenting with geometric modeling techniques (GeoX = geometry experiments). It consists

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