Liceo S.G. Calasanzio of Carcare

Slides:



Advertisements
Similar presentations
1 Regression as Moment Structure. 2 Regression Equation Y =  X + v Observable Variables Y z = X Moment matrix  YY  YX  =  YX  XX Moment structure.
Advertisements

Why ROOT?. ROOT ROOT: is an object_oriented frame work aimed at solving the data analysis challenges of high energy physics Object _oriented: by encapsulation,
June 21, PROOF - Parallel ROOT Facility Maarten Ballintijn, Rene Brun, Fons Rademakers, Gunter Roland Bring the KB to the PB.
Detect Unknown Systematic Effect: Diagnose bad fit to multiple data sets Advanced Statistical Techniques in Particle Physics Grey College, Durham 18 -
Chapter 11 Simple Regression
ROOT An object oriented HEP analysis framework.. Computing in Physics Physics = experimental science =>Experiments (e.g. at CERN) Planning phase Physics.
ROOT: A Data Mining Tool from CERN Arun Tripathi and Ravi Kumar 2008 CAS Ratemaking Seminar on Ratemaking 17 March 2008 Cambridge, Massachusetts.
© The McGraw-Hill Companies, Inc., 2000 Business and Finance College Principles of Statistics Lecture 10 aaed EL Rabai week
Vladimir Frolov for Torino group. Experimental activities: The system for testing the MRPC in the Torino INFN laboratory has been fully mounted and checked;
Introduction of ROOT Yao. ROOT Development In the mid 1990's, René Brun and Fons Rademakers, they had lead successful projects such as PAW, PIAF, and.
Overview: The goal of this lesson is to explore the concept of firmware using the NXT. Students will connect the NXT to a computer to download firmware.
Created on 29/10/2008yahaya.wordpress.com1 Trees Another common nonlinear data structure is the tree. We have already seen an example of a tree when we.
Inquiry 1 written AND oral reports due Th 9/24 or M 9/28.
Title your notes “Scientific Method & Controlled Experiment “ BIG BOOK.
Thomas Knotts. Engineers often: Regress data  Analysis  Fit to theory  Data reduction Use the regression of others  Antoine Equation  DIPPR.
2014. Engineers often: Regress data  Analysis  Fit to theory  Data reduction Use the regression of others  Antoine Equation  DIPPR We need to be.
Introduction to Quadratic Equations & Solving by Finding Square Roots Chapter 5.3.
Dr. Engr. Sami ur Rahman Data Analysis Correlational Research.
Not Invented Here: The Re-use of Commercial Components in HEP Computing Jeremy Walton The Numerical Algorithms Group Ltd, UK.
Sec. 2-4: Using Linear Models. Scatter Plots 1.Dependent Variable: The variable whose value DEPENDS on another’s value. (y) 2.Independent Variable: The.
WRITING REPORTS Introduction Section 0 Lecture 1 Slide 1 Lecture 6 Slide 1 INTRODUCTION TO Modern Physics PHYX 2710 Fall 2004 Intermediate 3870 Fall 2015.
Slide 1/29 Informed Prefetching in ROOT Leandro Franco 23 June 2006 ROOT Team Meeting CERN.
V. Rouillard  Introduction to measurement and statistical analysis CURVE FITTING In graphical form, drawing a line (curve) of best fit through.
THINKING LIKE A SCIENTIST. HOW GOOD SCIENCE IS CONDUCTED We use the Scientific Method to solve scientific problems.
Lecture 10 Introduction to Linear Regression and Correlation Analysis.
Chi Square Test for Goodness of Fit Determining if our sample fits the way it should be.
Chapter 14 Introduction to Regression Analysis. Objectives Regression Analysis Uses of Regression Analysis Method of Least Squares Difference between.
Eurostat May 2016 Eurostat, Unit B3 – IT solutions for statistical production Test Client Jean-Francois LEBLANC Christian SEBASTIAN.
Simple Linear Regression In many scientific investigations, one is interested to find how something is related with something else. For example the distance.
Slide 1 Structured Naming. Slide 2 Given Credit Where It Is Due The following slides are borrowed from Dr. Katerina Goseva-Popstojanova at West Virginia.
Statistics & Evidence-Based Practice
Theme 6. Linear regression
DEPARTMENT OF HUMAN AND SOCIAL CIENCES APPLIED LINGUISTICS IN ENGLISH CAREER    “THE INFLUENCE OF TEACHER’S ATTITUDES AND BELIEFS INTO TECHNOLOGY-RELATED.
Indexing Goals: Store large files Support multiple search keys
REGRESSION (R2).
Regression Analysis Module 3.
LESSON 3.
Best-fit bin packing in O(n log n) time
R Programming Language
Lesson 4.8 – Interpreting the Correlation Coefficient and Distinguishing between Correlation & Causation EQ: How do you calculate the correlation coefficient?
Lesson 3 – 1.6/1.7 – Linear Equations & Inequalities
Title.
Using the Answer Booklet
Physics 114: Exam 2 Review Material from Weeks 7-11
Ch8: Sorting in Linear Time Ming-Te Chi
CHAPTER 29: Multiple Regression*
Simple Linear Regression
دانشگاه شهیدرجایی تهران
مناهــــج البحث العلمي
Machine Requirements 8/24/04 Paul A. Jensen
تعهدات مشتری در کنوانسیون بیع بین المللی
Dealing with Objections
Correlation and Regression
Learning to Program in Python
Objective - To solve quadratic equations by completing the square.
Files Management – The interfacing
Regression Statistics
Computer Consultant Assignment
Sihua Peng, PhD Shanghai Ocean University
Amos Introduction In this tutorial, you will be briefly introduced to the student version of the SEM software known as Amos. You should download the current.
Statistics for Business and Economics
How to write a good report
АВЛИГАТАЙ ТЭМЦЭХ ҮНДЭСНИЙ ХӨТӨЛБӨР /танилцуулга/
Daily Warm Up 08/26/2015 – 08/27/2015 List, in order, the steps of the scientific method. The independent variable is the thing that is _______________.
Introduction to 8th Grade General Science
Experimental research methods.
TITLE OF THE PRESENTATION
First steps in data visualisation with CERN-Root Software
Regression and Correlation of Data
Jean-Francois LEBLANC Christian SEBASTIAN
Presentation transcript:

Liceo S.G. Calasanzio of Carcare INTRODUCTION TO ROOT Liceo S.G. Calasanzio of Carcare Represented by: Fracchia Caterina Rinaldi Marco Profssa Occhetto Michela

ROOT is a modular scientific software framework ROOT is a modular scientific software framework. It provides all the functionalities needed to deal with big data processing, statistical analysis, visualisation and storage. It is mainly written in C++. ROOT was a software developed by CERN and it was initiated by René Brun and Fons Rademakers in 1994.

A key feature of ROOT is a data container called tree, with its substructures branches and leaves. A tree can be seen as a sliding window to the raw data, as stored in a file. ROOT is designed for high computing efficiency, as it is required to process data from the Large Hadron Collider's experiments.

Although the infinitive program’s functions, we are able only to realise experimental graphics and we are able to fit them with basic functions like linear functions and parables. This program deal with different unity of work called “classes” and the first we explain is TGraphErrors.

In this moment ROOT has realised our graphic, but it doesn’t show it In this moment ROOT has realised our graphic, but it doesn’t show it. To see this graphic we have to use the method .Draw(“AP”) and we obtain the following screen. To set the title it’s enough to write graphname.SetTitle(“Title”).

Now we have to fit the graphic verifying that experimental data are conformed with the theoretical one. The relation that we are used to find is a line or an parable. and to do that we have to use TF1 class. This class deal with function with only one independent variable and we obtain the following screen.

At the end we want to visualise the parameters’ values composed by “Chi- Square” and the parameters correlated to the previous function (line or parable). f(x)=ax+b line f(x)=ax2+bx+c parable

For more information you may refer to his link: https://drive.google.com/file/d/1j136x_aw8gE3-bLs29fm1vfJRNg6ZVTJ/view?usp=sharing https://drive.google.com/file/d/1x2UzHLFrN-TtWgpzRBASy-Cz-UyBgPVX/view?usp=sharing

Liceo s.g.calasanzio Thanks for your attention.