From eb2f0542ab470fa1a240d732c1ce67fcb0a24d4a Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Tue, 27 Aug 2024 01:35:34 +0000 Subject: [PATCH] site deploy Auto-generated via {sandpaper} Source : 88a64fa9df6df6bb4c20a5723063241eec51778f Branch : md-outputs Author : GitHub Actions Time : 2024-07-26 15:19:18 +0000 Message : markdown source builds Auto-generated via {sandpaper} Source : 3603001687d7cf172ebd585d30b8ff7b351c761e Branch : main Author : Julie Hogan Time : 2024-07-26 15:18:26 +0000 Message : Update 05-using-root-with-python.md --- 02-cpp-hello-world.html | 19 ++-- 03-root-and-cpp-read-and-write.html | 40 +++---- 04-root-and-cpp-fill-a-histogram.html | 25 ++--- 05-using-root-with-python.html | 19 ++-- 06-uproot.html | 22 ++-- 07-awkward.html | 26 ++--- 404.html | 9 +- CODE_OF_CONDUCT.html | 4 +- LICENSE.html | 16 ++- aio.html | 100 +++++------------- images.html | 6 +- index.html | 6 +- instructor-notes.html | 6 +- instructor/02-cpp-hello-world.html | 19 ++-- .../03-root-and-cpp-read-and-write.html | 40 +++---- .../04-root-and-cpp-fill-a-histogram.html | 25 ++--- instructor/05-using-root-with-python.html | 19 ++-- instructor/06-uproot.html | 22 ++-- instructor/07-awkward.html | 26 ++--- instructor/404.html | 9 +- instructor/CODE_OF_CONDUCT.html | 4 +- instructor/LICENSE.html | 16 ++- instructor/aio.html | 100 +++++------------- instructor/images.html | 6 +- instructor/index.html | 6 +- instructor/instructor-notes.html | 6 +- instructor/introduction.html | 19 ++-- instructor/key-points.html | 6 +- instructor/profiles.html | 6 +- introduction.html | 19 ++-- key-points.html | 6 +- pkgdown.yml | 2 +- profiles.html | 6 +- 33 files changed, 229 insertions(+), 431 deletions(-) diff --git a/02-cpp-hello-world.html b/02-cpp-hello-world.html index f2385b6..ce761db 100644 --- a/02-cpp-hello-world.html +++ b/02-cpp-hello-world.html @@ -358,8 +358,7 @@

Objectives

-

Setting up your working area -

+

Setting up your working area


If you completed the Docker pre-exercises you should already have worked through this episode, under Download the docker images for ROOT and @@ -383,8 +382,7 @@

BASH
-

If you’re using apptainer: -

+

If you’re using apptainer:

Whenever you see a docker start instruction, replace it with apptainer shell to open either the ROOT or Python @@ -398,8 +396,7 @@

If you’re using apptainer:

-

Your first C/C++ program (Optional Review!) -

+

Your first C/C++ program (Optional Review!)


Let’s start with writing a simple hello world program in C. First we’ll edit the source code with an editor of your choice.

@@ -452,8 +449,7 @@

CPP
-

Warning! -

+

Warning!

Note that at the end of return 0, we have a semicolon ;, which is how C/C++ programs terminate lines. If you’re @@ -552,8 +548,7 @@

OUTPUT