├── .gitignore ├── BasicCourse ├── Exercises │ ├── .gitkeep │ ├── C++Interpreter │ │ ├── .gitkeep │ │ ├── geometricSeries.C │ │ ├── myMacro.C │ │ ├── readme.md │ │ └── simpleProgram.cpp │ ├── DevelopingPackages │ │ └── .gitkeep │ ├── Fitting │ │ ├── .gitkeep │ │ ├── PoissonGausEquivalence.C │ │ ├── correlatedParameters.C │ │ ├── firstFit.C │ │ ├── firstFit_Solution.C │ │ ├── fitPanel.C │ │ └── readme.md │ ├── Graphics │ │ ├── macro1.C │ │ ├── macro1NoFit.C │ │ ├── macro2.C │ │ └── readme.md │ ├── HistogramsGraphsFunctions │ │ ├── .gitkeep │ │ ├── SimpleFunction.C │ │ ├── SimpleGraph.C │ │ ├── SimpleHistogram.C │ │ ├── myFirstFunction.C │ │ ├── myFirstGraph.C │ │ ├── myFirstHistogram.C │ │ └── readme.md │ ├── PythonInterface │ │ ├── .gitkeep │ │ ├── DynamicCpp.py │ │ ├── Fitting.py │ │ ├── FunctionGaus.py │ │ ├── Graph.py │ │ ├── HistoPol1.py │ │ ├── PythonTutorial.py │ │ └── readme.md │ ├── ROOTBooks │ │ ├── .gitkeep │ │ ├── CentralLimitTheorem.ipynb │ │ ├── CentralLimitTheorem_Solution.ipynb │ │ ├── CreateAHistogram.ipynb │ │ ├── CreateAHistogramCpp_Solution.ipynb │ │ ├── CreateAHistogram_Solution.ipynb │ │ ├── FittingExample.ipynb │ │ ├── FittingExample_Solution.ipynb │ │ ├── GausFit.ipynb │ │ ├── GausFit_Solution.ipynb │ │ ├── Hgg.txt │ │ ├── HiggsBinFit.ipynb │ │ ├── graphDraw.ipynb │ │ ├── graphDraw_Solution.ipynb │ │ └── readme.md │ ├── WorkingWithColumnarData │ │ ├── .gitkeep │ │ ├── CMSDimuonMass.C │ │ ├── hsimpleCpp.C │ │ ├── hsimplePy.py │ │ ├── hsimpleTTreeDraw.C │ │ └── readme.md │ ├── WorkingWithFiles │ │ ├── .gitkeep │ │ ├── WritingOnFiles.ipynb │ │ ├── WritingOnFiles_Solution.ipynb │ │ └── readme.md │ └── readme.md └── readme.md ├── HASCO ├── exercises │ ├── README.md │ ├── img │ │ └── zz.png │ └── solutions │ │ ├── 1_1_SimpleHistogram.ipynb │ │ ├── 1_2_SimpleGraph.ipynb │ │ ├── 1_3_SimpleFunction.ipynb │ │ ├── 2_1_RooFit.ipynb │ │ └── 3_1_FirstZBosonAnalysis.ipynb └── slides │ ├── Makefile │ ├── figures │ ├── column-representation.png │ ├── fourleptons.png │ ├── gammagamma.png │ ├── graph-painter-1.png │ ├── graph-painter-2.png │ ├── graph.pdf │ ├── graph.svg │ ├── hist-painter-1.png │ ├── hist-painter-2.png │ ├── hist-painter-3.png │ ├── hplot.png │ ├── htv.png │ ├── paw-1.png │ ├── paw-2.png │ ├── root_domains.png │ ├── tbrowser.png │ ├── vary.pdf │ └── whats_in_aod_reco.gif.1 │ ├── hasco_root.tex │ └── scripts │ ├── analysis.py │ ├── check.py │ ├── clad.py │ ├── figure001.C │ ├── figure002.C │ ├── figure003.C │ ├── figure004.C │ ├── figure005.C │ ├── figure006.C │ ├── figure007.C │ ├── figure008.C │ ├── figure009.C │ ├── figure010.C │ ├── figure011.C │ ├── rdf-analysis.py │ ├── rdf-vary.py │ └── tefficiency.py ├── INSIGHTS2018 ├── Exercises │ ├── .gitkeep │ ├── C++Interpreter │ │ ├── .gitkeep │ │ ├── myMacro.C │ │ └── readme.md │ ├── Fitting │ │ ├── .gitkeep │ │ ├── PoissonGausEquivalence.C │ │ ├── correlatedParameters.C │ │ ├── firstFit.C │ │ ├── firstFit_Solution.C │ │ ├── fitPanel.C │ │ └── readme.md │ ├── Graphics │ │ ├── macro1.C │ │ ├── macro1NoFit.C │ │ ├── macro2.C │ │ └── readme.md │ ├── HistogramsGraphsFunctions │ │ ├── .gitkeep │ │ ├── SimpleFunction.C │ │ ├── SimpleGraph.C │ │ ├── SimpleHistogram.C │ │ ├── myFirstFunction.C │ │ ├── myFirstGraph.C │ │ ├── myFirstHistogram.C │ │ └── readme.md │ ├── PythonInterface │ │ ├── .gitkeep │ │ ├── DynamicCpp.py │ │ ├── Graph.py │ │ ├── HistoPol1.py │ │ └── readme.md │ ├── ROOTBooks │ │ ├── .gitkeep │ │ ├── .ipynb_checkpoints │ │ │ └── CreateAHistogram_Solution-checkpoint.ipynb │ │ ├── CentralLimitTheorem.ipynb │ │ ├── CentralLimitTheorem_Solution.ipynb │ │ ├── CreateAHistogram.ipynb │ │ ├── CreateAHistogramCpp_Solution.ipynb │ │ ├── CreateAHistogram_Solution.ipynb │ │ ├── FittingExample.ipynb │ │ ├── FittingExample_Solution.ipynb │ │ ├── GausFit.ipynb │ │ ├── GausFit_Solution.ipynb │ │ ├── Hgg.txt │ │ ├── HiggsBinFit.ipynb │ │ ├── graphDraw.ipynb │ │ ├── graphDraw_Solution.ipynb │ │ └── readme.md │ ├── WorkingWithColumnarData │ │ ├── .gitkeep │ │ ├── CMSDimuonMass.C │ │ ├── hsimple.root │ │ ├── hsimpleCpp.C │ │ ├── hsimplePy.py │ │ ├── hsimpleTTreeDraw.C │ │ └── readme.md │ ├── WorkingWithFiles │ │ ├── .gitkeep │ │ ├── .ipynb_checkpoints │ │ │ ├── WritingOnFiles-checkpoint.ipynb │ │ │ └── WritingOnFiles_Solution-checkpoint.ipynb │ │ ├── WritingOnFilesExercise.ipynb │ │ ├── WritingOnFiles_Solution.ipynb │ │ └── readme.md │ └── readme.md └── readme.md ├── LICENSE ├── MAINTENANCE.md ├── NCPSchool2021 ├── Examples │ ├── CentralLimitTheorem.ipynb │ ├── CreateAHistogramCpp.ipynb │ ├── CreateAHistogramPython.ipynb │ ├── FittingExample.ipynb │ ├── GausFit.ipynb │ ├── GausModelRooFit.ipynb │ ├── GaussianModel.root │ ├── GraphDrawCpp.ipynb │ ├── GraphDrawPython.ipynb │ ├── Hgg.txt │ ├── HiggsBinFit.ipynb │ ├── HiggsRooFit.ipynb │ ├── Higgs_data.root │ ├── Readme.md │ ├── SimultaneousFit.ipynb │ ├── TMVA_CNN_Classification_py.ipynb │ ├── TMVA_Classification.ipynb │ ├── TMVA_CrossValidation.ipynb │ ├── TMVA_Higgs_Classification.ipynb │ ├── TMVA_Higgs_Classification_py.ipynb │ ├── TMVA_Reader.ipynb │ ├── TMVA_Regression.ipynb │ ├── TMVA_VariableImportance.ipynb │ ├── images_data.root │ └── tmva_logo.gif ├── RDataFrame │ ├── 01-rdataframe-basics.ipynb │ ├── 02-rdataframe-collections.ipynb │ ├── 03-rdataframe-features.ipynb │ ├── 04-rdataframe-advanced.ipynb │ ├── README.md │ ├── data │ │ └── example_file.root │ └── images │ │ ├── DistRDF_architecture.png │ │ └── rdf_1.png ├── README.md └── introduction.ipynb ├── OldSummerStudentsCourse ├── 2016 │ ├── ExampleData.txt │ ├── ROOT Summer Student Tutorial 2016.pdf │ ├── ROOT Summer Student Tutorial 2016.pptx │ ├── hstack.C │ ├── macro1.C │ ├── macro2.C │ ├── macro2_input.txt │ ├── macro2_input_expected.txt │ ├── macro3.C │ ├── macro4.C │ ├── macro5.C │ ├── macro6.C │ ├── macro7.C │ ├── multigraph.C │ ├── notebooks │ │ ├── FillHistogram_Example_py.ipynb │ │ ├── Macro1_cpp.ipynb │ │ ├── Macro2_cpp.ipynb │ │ ├── Macro3_cpp.ipynb │ │ ├── Macro4_cpp.ipynb │ │ ├── Multigraph_cpp.ipynb │ │ ├── Slits_cpp.ipynb │ │ ├── THStack_cpp.ipynb │ │ ├── TTreeAccess_Example_py.ipynb │ │ ├── TTreeReaderExample_cpp.ipynb │ │ ├── Write_ntuple_to_file_cpp.ipynb │ │ └── snapshots │ │ │ ├── FillHistogram_Example_py.png │ │ │ ├── Macro1_cpp.png │ │ │ ├── Macro2_cpp.png │ │ │ ├── Macro3_cpp.png │ │ │ ├── Macro4_cpp.png │ │ │ ├── Multigraph_cpp.png │ │ │ ├── Slits_cpp.png │ │ │ ├── THStack_cpp.png │ │ │ ├── TTreeAccess_Example_py.png │ │ │ ├── TTreeReaderExample_cpp.png │ │ │ └── Write_ntuple_to_file_cpp.png │ ├── slits.C │ └── write_ntuple_to_file.C └── 2017 │ ├── examples │ ├── ExampleData.txt │ ├── hstack.C │ ├── macro1.C │ ├── macro2.C │ ├── macro2_input.txt │ ├── macro2_input_expected.txt │ ├── macro3.C │ ├── macro4.C │ ├── macro5.C │ ├── macro6.C │ ├── macro7.C │ ├── multigraph.C │ ├── notebooks │ │ ├── FillHistogram_Example_py.ipynb │ │ ├── Macro1_cpp.ipynb │ │ ├── Macro2_cpp.ipynb │ │ ├── Macro3_cpp.ipynb │ │ ├── Macro4_cpp.ipynb │ │ ├── Multigraph_cpp.ipynb │ │ ├── Slits_cpp.ipynb │ │ ├── THStack_cpp.ipynb │ │ ├── TTreeAccess_Example_py.ipynb │ │ ├── TTreeReaderExample_cpp.ipynb │ │ ├── Write_ntuple_to_file_cpp.ipynb │ │ └── nbSnapshots │ │ │ ├── FillHistogram_Example_py.png │ │ │ ├── Macro1_cpp.png │ │ │ ├── Macro2_cpp.png │ │ │ ├── Macro3_cpp.png │ │ │ ├── Macro4_cpp.png │ │ │ ├── Multigraph_cpp.png │ │ │ ├── Slits_cpp.png │ │ │ ├── THStack_cpp.png │ │ │ ├── TTreeAccess_Example_py.png │ │ │ ├── TTreeReaderExample_cpp.png │ │ │ └── Write_ntuple_to_file_cpp.png │ ├── slits.C │ └── write_ntuple_to_file.C │ ├── lxplus.md │ └── slides │ ├── ROOT Summer Student Tutorial 2017.pdf │ └── ROOT Summer Student Tutorial 2017.pptx ├── README.md ├── Recording ├── README.md ├── jupyroot │ ├── exercises │ │ ├── jupyroot-exercise.ipynb │ │ └── jupyroot-exercise_solution.ipynb │ └── theory │ │ ├── jupyroot-cpp.ipynb │ │ └── jupyroot-python.ipynb └── pyroot │ ├── exercises │ ├── pyroot-exercise.ipynb │ └── pyroot-exercise_solution.ipynb │ └── theory │ ├── data │ └── myfile.root │ └── pyroot.ipynb ├── RooFit ├── roofit-tutorial-01-script.md ├── roofit-tutorial-01.ipynb ├── roofit_classes.png └── roofit_pdfs.png ├── SoftwareCarpentry ├── .gitignore └── README.md ├── SummerStudentCourse ├── 2018 │ ├── Exercises │ │ ├── .gitkeep │ │ ├── C++Interpreter │ │ │ ├── .gitkeep │ │ │ ├── myMacro.C │ │ │ └── readme.md │ │ ├── Fitting │ │ │ ├── .gitkeep │ │ │ ├── PoissonGausEquivalence.C │ │ │ ├── correlatedParameters.C │ │ │ ├── firstFit.C │ │ │ ├── firstFit_Solution.C │ │ │ ├── fitPanel.C │ │ │ └── readme.md │ │ ├── Graphics │ │ │ ├── macro1.C │ │ │ ├── macro1NoFit.C │ │ │ ├── macro2.C │ │ │ └── readme.md │ │ ├── HistogramsGraphsFunctions │ │ │ ├── .gitkeep │ │ │ ├── SimpleFunction.C │ │ │ ├── SimpleGraph.C │ │ │ ├── SimpleHistogram.C │ │ │ ├── myFirstFunction.C │ │ │ ├── myFirstGraph.C │ │ │ ├── myFirstHistogram.C │ │ │ └── readme.md │ │ ├── PythonInterface │ │ │ ├── .gitkeep │ │ │ ├── DynamicCpp.py │ │ │ ├── Graph.py │ │ │ ├── HistoPol1.py │ │ │ └── readme.md │ │ ├── ROOTBooks │ │ │ ├── .gitkeep │ │ │ ├── CentralLimitTheorem.ipynb │ │ │ ├── CentralLimitTheorem_Solution.ipynb │ │ │ ├── CreateAHistogram.ipynb │ │ │ ├── CreateAHistogramCpp_Solution.ipynb │ │ │ ├── CreateAHistogram_Solution.ipynb │ │ │ ├── FittingExample.ipynb │ │ │ ├── FittingExample_Solution.ipynb │ │ │ ├── GausFit.ipynb │ │ │ ├── GausFit_Solution.ipynb │ │ │ ├── Hgg.txt │ │ │ ├── HiggsBinFit.ipynb │ │ │ ├── graphDraw.ipynb │ │ │ ├── graphDraw_Solution.ipynb │ │ │ └── readme.md │ │ ├── WorkingWithColumnarData │ │ │ ├── .gitkeep │ │ │ ├── CMSDimuonMass.C │ │ │ ├── hsimple.root │ │ │ ├── hsimpleCpp.C │ │ │ ├── hsimplePy.py │ │ │ ├── hsimpleTTreeDraw.C │ │ │ └── readme.md │ │ ├── WorkingWithFiles │ │ │ ├── .gitkeep │ │ │ ├── WritingOnFilesExercise.ipynb │ │ │ ├── WritingOnFiles_Solution.ipynb │ │ │ └── readme.md │ │ └── readme.md │ └── readme.md ├── 2019 │ ├── Exercises │ │ ├── .gitkeep │ │ ├── C++Interpreter │ │ │ ├── myMacro.C │ │ │ └── readme.md │ │ ├── Fitting │ │ │ ├── PoissonGausEquivalence.C │ │ │ ├── correlatedParameters.C │ │ │ ├── firstFit.C │ │ │ ├── firstFit_Solution.C │ │ │ ├── fitPanel.C │ │ │ └── readme.md │ │ ├── Graphics │ │ │ ├── macro1.C │ │ │ ├── macro1NoFit.C │ │ │ ├── macro2.C │ │ │ └── readme.md │ │ ├── HistogramsGraphsFunctions │ │ │ ├── SimpleFunction.C │ │ │ ├── SimpleGraph.C │ │ │ ├── SimpleHistogram.C │ │ │ ├── myFirstFunction.C │ │ │ ├── myFirstGraph.C │ │ │ ├── myFirstHistogram.C │ │ │ └── readme.md │ │ ├── PythonInterface │ │ │ ├── DynamicCpp.py │ │ │ ├── Graph.py │ │ │ ├── HistoPol1.py │ │ │ └── readme.md │ │ ├── ROOTBooks │ │ │ ├── CentralLimitTheorem.ipynb │ │ │ ├── CentralLimitTheorem_Solution.ipynb │ │ │ ├── CreateAHistogram.ipynb │ │ │ ├── CreateAHistogramCpp_Solution.ipynb │ │ │ ├── CreateAHistogram_Solution.ipynb │ │ │ ├── FittingExample.ipynb │ │ │ ├── FittingExample_Solution.ipynb │ │ │ ├── GausFit.ipynb │ │ │ ├── GausFit_Solution.ipynb │ │ │ ├── Hgg.txt │ │ │ ├── HiggsBinFit.ipynb │ │ │ ├── graphDraw.ipynb │ │ │ ├── graphDraw_Solution.ipynb │ │ │ └── readme.md │ │ ├── WorkingWithColumnarData │ │ │ ├── CMSDimuonMass.C │ │ │ ├── hsimple.root │ │ │ ├── hsimpleCpp.C │ │ │ ├── hsimplePy.py │ │ │ ├── hsimpleTTreeDraw.C │ │ │ └── readme.md │ │ ├── WorkingWithFiles │ │ │ ├── WritingOnFilesExercise.ipynb │ │ │ ├── WritingOnFiles_Solution.ipynb │ │ │ ├── histos.root │ │ │ └── readme.md │ │ └── readme.md │ └── readme.md ├── 2022 │ ├── Exercises │ │ ├── .gitkeep │ │ ├── C++Interpreter │ │ │ ├── myMacro.C │ │ │ └── readme.md │ │ ├── Fitting │ │ │ ├── FittingExample.ipynb │ │ │ ├── GausFit.ipynb │ │ │ ├── correlatedParameters.C │ │ │ ├── firstFit.C │ │ │ ├── firstFit_Solution.C │ │ │ ├── fitPanel.C │ │ │ └── readme.md │ │ ├── Graphics │ │ │ ├── macro1.C │ │ │ ├── macro1NoFit.C │ │ │ ├── macro2.C │ │ │ └── readme.md │ │ ├── HistogramsGraphsFunctions │ │ │ ├── PoissonGausEquivalence.C │ │ │ ├── SimpleFunction.C │ │ │ ├── SimpleFunction.ipynb │ │ │ ├── SimpleGraph.C │ │ │ ├── SimpleGraph.ipynb │ │ │ ├── SimpleHistogram.C │ │ │ ├── SimpleHistogram.ipynb │ │ │ ├── myFirstFunction.C │ │ │ ├── myFirstGraph.C │ │ │ ├── myFirstHistogram.C │ │ │ └── readme.md │ │ ├── PythonInterface │ │ │ ├── DynamicCpp.py │ │ │ ├── Graph.py │ │ │ ├── HistoPol1.py │ │ │ └── readme.md │ │ ├── ROOTBooks │ │ │ ├── CentralLimitTheorem.ipynb │ │ │ ├── CentralLimitTheorem_Solution.ipynb │ │ │ ├── CreateAHistogram.ipynb │ │ │ ├── CreateAHistogramCpp_Solution.ipynb │ │ │ ├── CreateAHistogram_Solution.ipynb │ │ │ ├── FittingExample.ipynb │ │ │ ├── FittingExample_Solution.ipynb │ │ │ ├── GausFit.ipynb │ │ │ ├── GausFit_Solution.ipynb │ │ │ ├── Hgg.txt │ │ │ ├── HiggsBinFit.ipynb │ │ │ ├── graphDraw.ipynb │ │ │ ├── graphDraw_Solution.ipynb │ │ │ └── readme.md │ │ ├── WorkingWithColumnarData │ │ │ ├── CMSDimuonMass.C │ │ │ ├── hsimple.root │ │ │ ├── hsimpleCpp.C │ │ │ ├── hsimplePy.py │ │ │ ├── hsimpleTTreeDraw.C │ │ │ └── readme.md │ │ ├── WorkingWithFiles │ │ │ ├── WritingOnFilesExercise.ipynb │ │ │ ├── WritingOnFiles_Solution.ipynb │ │ │ ├── histos.root │ │ │ └── readme.md │ │ └── readme.md │ └── readme.md └── 2023 │ ├── Exercises │ ├── .gitkeep │ ├── C++Interpreter │ │ ├── myMacro.C │ │ └── readme.md │ ├── Fitting │ │ ├── FittingExample.ipynb │ │ ├── GausFit.ipynb │ │ ├── correlatedParameters.C │ │ ├── firstFit.C │ │ ├── firstFit_Solution.C │ │ ├── fitPanel.C │ │ └── readme.md │ ├── Graphics │ │ ├── macro1.C │ │ ├── macro1NoFit.C │ │ ├── macro2.C │ │ └── readme.md │ ├── HistogramsGraphsFunctions │ │ ├── PoissonGausEquivalence.C │ │ ├── SimpleFunction.C │ │ ├── SimpleFunction.ipynb │ │ ├── SimpleGraph.C │ │ ├── SimpleGraph.ipynb │ │ ├── SimpleHistogram.C │ │ ├── SimpleHistogram.ipynb │ │ ├── myFirstFunction.C │ │ ├── myFirstGraph.C │ │ ├── myFirstHistogram.C │ │ └── readme.md │ ├── PythonInterface │ │ ├── DynamicCpp.py │ │ ├── Graph.py │ │ ├── HistoPol1.py │ │ └── readme.md │ ├── ROOTBooks │ │ ├── CentralLimitTheorem.ipynb │ │ ├── CentralLimitTheorem_Solution.ipynb │ │ ├── CreateAHistogram.ipynb │ │ ├── CreateAHistogramCpp_Solution.ipynb │ │ ├── CreateAHistogram_Solution.ipynb │ │ ├── FittingExample.ipynb │ │ ├── FittingExample_Solution.ipynb │ │ ├── GausFit.ipynb │ │ ├── GausFit_Solution.ipynb │ │ ├── Hgg.txt │ │ ├── HiggsBinFit.ipynb │ │ ├── graphDraw.ipynb │ │ ├── graphDraw_Solution.ipynb │ │ └── readme.md │ ├── WorkingWithColumnarData │ │ ├── CMSDimuonMass.C │ │ ├── hsimple.root │ │ ├── hsimpleCpp.C │ │ ├── hsimplePy.py │ │ ├── hsimpleTTreeDraw.C │ │ └── readme.md │ ├── WorkingWithFiles │ │ ├── WritingOnFilesExercise.ipynb │ │ ├── WritingOnFiles_Solution.ipynb │ │ ├── histos.root │ │ └── readme.md │ └── readme.md │ └── readme.md ├── environment.yml └── old-files ├── AnalyzeTree.C ├── CountEventSelector.C ├── CountEvents.C ├── EventData.h ├── EventDataSelector.C ├── EventSelector.C ├── FullEventDataSelector.C ├── ProofEventSelector.C ├── ProofEventSelector.h ├── README.md └── createTree.C /.gitignore: -------------------------------------------------------------------------------- 1 | **/.ipynb_checkpoints 2 | -------------------------------------------------------------------------------- /BasicCourse/Exercises/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BasicCourse/Exercises/C++Interpreter/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BasicCourse/Exercises/C++Interpreter/geometricSeries.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/BasicCourse/Exercises/C++Interpreter/geometricSeries.C -------------------------------------------------------------------------------- /BasicCourse/Exercises/C++Interpreter/myMacro.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/BasicCourse/Exercises/C++Interpreter/myMacro.C -------------------------------------------------------------------------------- /BasicCourse/Exercises/C++Interpreter/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/BasicCourse/Exercises/C++Interpreter/readme.md -------------------------------------------------------------------------------- /BasicCourse/Exercises/C++Interpreter/simpleProgram.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() 4 | { 5 | std::cout << "My simple program!\n" 6 | } 7 | -------------------------------------------------------------------------------- /BasicCourse/Exercises/DevelopingPackages/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BasicCourse/Exercises/Fitting/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BasicCourse/Exercises/Fitting/PoissonGausEquivalence.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/BasicCourse/Exercises/Fitting/PoissonGausEquivalence.C -------------------------------------------------------------------------------- /BasicCourse/Exercises/Fitting/correlatedParameters.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/BasicCourse/Exercises/Fitting/correlatedParameters.C -------------------------------------------------------------------------------- /BasicCourse/Exercises/Fitting/firstFit.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/BasicCourse/Exercises/Fitting/firstFit.C -------------------------------------------------------------------------------- /BasicCourse/Exercises/Fitting/firstFit_Solution.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/BasicCourse/Exercises/Fitting/firstFit_Solution.C -------------------------------------------------------------------------------- /BasicCourse/Exercises/Fitting/fitPanel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/BasicCourse/Exercises/Fitting/fitPanel.C -------------------------------------------------------------------------------- /BasicCourse/Exercises/Fitting/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/BasicCourse/Exercises/Fitting/readme.md -------------------------------------------------------------------------------- /BasicCourse/Exercises/Graphics/macro1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/BasicCourse/Exercises/Graphics/macro1.C -------------------------------------------------------------------------------- /BasicCourse/Exercises/Graphics/macro1NoFit.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/BasicCourse/Exercises/Graphics/macro1NoFit.C -------------------------------------------------------------------------------- /BasicCourse/Exercises/Graphics/macro2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/BasicCourse/Exercises/Graphics/macro2.C -------------------------------------------------------------------------------- /BasicCourse/Exercises/Graphics/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/BasicCourse/Exercises/Graphics/readme.md -------------------------------------------------------------------------------- /BasicCourse/Exercises/HistogramsGraphsFunctions/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BasicCourse/Exercises/HistogramsGraphsFunctions/SimpleFunction.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/BasicCourse/Exercises/HistogramsGraphsFunctions/SimpleFunction.C -------------------------------------------------------------------------------- /BasicCourse/Exercises/HistogramsGraphsFunctions/SimpleGraph.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/BasicCourse/Exercises/HistogramsGraphsFunctions/SimpleGraph.C -------------------------------------------------------------------------------- /BasicCourse/Exercises/HistogramsGraphsFunctions/SimpleHistogram.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/BasicCourse/Exercises/HistogramsGraphsFunctions/SimpleHistogram.C -------------------------------------------------------------------------------- /BasicCourse/Exercises/HistogramsGraphsFunctions/myFirstFunction.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/BasicCourse/Exercises/HistogramsGraphsFunctions/myFirstFunction.C -------------------------------------------------------------------------------- /BasicCourse/Exercises/HistogramsGraphsFunctions/myFirstGraph.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/BasicCourse/Exercises/HistogramsGraphsFunctions/myFirstGraph.C -------------------------------------------------------------------------------- /BasicCourse/Exercises/HistogramsGraphsFunctions/myFirstHistogram.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/BasicCourse/Exercises/HistogramsGraphsFunctions/myFirstHistogram.C -------------------------------------------------------------------------------- /BasicCourse/Exercises/HistogramsGraphsFunctions/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/BasicCourse/Exercises/HistogramsGraphsFunctions/readme.md -------------------------------------------------------------------------------- /BasicCourse/Exercises/PythonInterface/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BasicCourse/Exercises/PythonInterface/DynamicCpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/BasicCourse/Exercises/PythonInterface/DynamicCpp.py -------------------------------------------------------------------------------- /BasicCourse/Exercises/PythonInterface/Fitting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/BasicCourse/Exercises/PythonInterface/Fitting.py -------------------------------------------------------------------------------- /BasicCourse/Exercises/PythonInterface/FunctionGaus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/BasicCourse/Exercises/PythonInterface/FunctionGaus.py -------------------------------------------------------------------------------- /BasicCourse/Exercises/PythonInterface/Graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/BasicCourse/Exercises/PythonInterface/Graph.py -------------------------------------------------------------------------------- /BasicCourse/Exercises/PythonInterface/HistoPol1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/BasicCourse/Exercises/PythonInterface/HistoPol1.py -------------------------------------------------------------------------------- /BasicCourse/Exercises/PythonInterface/PythonTutorial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/BasicCourse/Exercises/PythonInterface/PythonTutorial.py -------------------------------------------------------------------------------- /BasicCourse/Exercises/PythonInterface/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/BasicCourse/Exercises/PythonInterface/readme.md -------------------------------------------------------------------------------- /BasicCourse/Exercises/ROOTBooks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BasicCourse/Exercises/ROOTBooks/CentralLimitTheorem.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/BasicCourse/Exercises/ROOTBooks/CentralLimitTheorem.ipynb -------------------------------------------------------------------------------- /BasicCourse/Exercises/ROOTBooks/CentralLimitTheorem_Solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/BasicCourse/Exercises/ROOTBooks/CentralLimitTheorem_Solution.ipynb -------------------------------------------------------------------------------- /BasicCourse/Exercises/ROOTBooks/CreateAHistogram.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/BasicCourse/Exercises/ROOTBooks/CreateAHistogram.ipynb -------------------------------------------------------------------------------- /BasicCourse/Exercises/ROOTBooks/CreateAHistogramCpp_Solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/BasicCourse/Exercises/ROOTBooks/CreateAHistogramCpp_Solution.ipynb -------------------------------------------------------------------------------- /BasicCourse/Exercises/ROOTBooks/CreateAHistogram_Solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/BasicCourse/Exercises/ROOTBooks/CreateAHistogram_Solution.ipynb -------------------------------------------------------------------------------- /BasicCourse/Exercises/ROOTBooks/FittingExample.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/BasicCourse/Exercises/ROOTBooks/FittingExample.ipynb -------------------------------------------------------------------------------- /BasicCourse/Exercises/ROOTBooks/FittingExample_Solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/BasicCourse/Exercises/ROOTBooks/FittingExample_Solution.ipynb -------------------------------------------------------------------------------- /BasicCourse/Exercises/ROOTBooks/GausFit.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/BasicCourse/Exercises/ROOTBooks/GausFit.ipynb -------------------------------------------------------------------------------- /BasicCourse/Exercises/ROOTBooks/GausFit_Solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/BasicCourse/Exercises/ROOTBooks/GausFit_Solution.ipynb -------------------------------------------------------------------------------- /BasicCourse/Exercises/ROOTBooks/Hgg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/BasicCourse/Exercises/ROOTBooks/Hgg.txt -------------------------------------------------------------------------------- /BasicCourse/Exercises/ROOTBooks/HiggsBinFit.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/BasicCourse/Exercises/ROOTBooks/HiggsBinFit.ipynb -------------------------------------------------------------------------------- /BasicCourse/Exercises/ROOTBooks/graphDraw.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/BasicCourse/Exercises/ROOTBooks/graphDraw.ipynb -------------------------------------------------------------------------------- /BasicCourse/Exercises/ROOTBooks/graphDraw_Solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/BasicCourse/Exercises/ROOTBooks/graphDraw_Solution.ipynb -------------------------------------------------------------------------------- /BasicCourse/Exercises/ROOTBooks/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/BasicCourse/Exercises/ROOTBooks/readme.md -------------------------------------------------------------------------------- /BasicCourse/Exercises/WorkingWithColumnarData/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BasicCourse/Exercises/WorkingWithColumnarData/CMSDimuonMass.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/BasicCourse/Exercises/WorkingWithColumnarData/CMSDimuonMass.C -------------------------------------------------------------------------------- /BasicCourse/Exercises/WorkingWithColumnarData/hsimpleCpp.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/BasicCourse/Exercises/WorkingWithColumnarData/hsimpleCpp.C -------------------------------------------------------------------------------- /BasicCourse/Exercises/WorkingWithColumnarData/hsimplePy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/BasicCourse/Exercises/WorkingWithColumnarData/hsimplePy.py -------------------------------------------------------------------------------- /BasicCourse/Exercises/WorkingWithColumnarData/hsimpleTTreeDraw.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/BasicCourse/Exercises/WorkingWithColumnarData/hsimpleTTreeDraw.C -------------------------------------------------------------------------------- /BasicCourse/Exercises/WorkingWithColumnarData/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/BasicCourse/Exercises/WorkingWithColumnarData/readme.md -------------------------------------------------------------------------------- /BasicCourse/Exercises/WorkingWithFiles/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BasicCourse/Exercises/WorkingWithFiles/WritingOnFiles.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/BasicCourse/Exercises/WorkingWithFiles/WritingOnFiles.ipynb -------------------------------------------------------------------------------- /BasicCourse/Exercises/WorkingWithFiles/WritingOnFiles_Solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/BasicCourse/Exercises/WorkingWithFiles/WritingOnFiles_Solution.ipynb -------------------------------------------------------------------------------- /BasicCourse/Exercises/WorkingWithFiles/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/BasicCourse/Exercises/WorkingWithFiles/readme.md -------------------------------------------------------------------------------- /BasicCourse/Exercises/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/BasicCourse/Exercises/readme.md -------------------------------------------------------------------------------- /BasicCourse/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/BasicCourse/readme.md -------------------------------------------------------------------------------- /HASCO/exercises/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/HASCO/exercises/README.md -------------------------------------------------------------------------------- /HASCO/exercises/img/zz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/HASCO/exercises/img/zz.png -------------------------------------------------------------------------------- /HASCO/exercises/solutions/1_1_SimpleHistogram.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/HASCO/exercises/solutions/1_1_SimpleHistogram.ipynb -------------------------------------------------------------------------------- /HASCO/exercises/solutions/1_2_SimpleGraph.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/HASCO/exercises/solutions/1_2_SimpleGraph.ipynb -------------------------------------------------------------------------------- /HASCO/exercises/solutions/1_3_SimpleFunction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/HASCO/exercises/solutions/1_3_SimpleFunction.ipynb -------------------------------------------------------------------------------- /HASCO/exercises/solutions/2_1_RooFit.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/HASCO/exercises/solutions/2_1_RooFit.ipynb -------------------------------------------------------------------------------- /HASCO/exercises/solutions/3_1_FirstZBosonAnalysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/HASCO/exercises/solutions/3_1_FirstZBosonAnalysis.ipynb -------------------------------------------------------------------------------- /HASCO/slides/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/HASCO/slides/Makefile -------------------------------------------------------------------------------- /HASCO/slides/figures/column-representation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/HASCO/slides/figures/column-representation.png -------------------------------------------------------------------------------- /HASCO/slides/figures/fourleptons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/HASCO/slides/figures/fourleptons.png -------------------------------------------------------------------------------- /HASCO/slides/figures/gammagamma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/HASCO/slides/figures/gammagamma.png -------------------------------------------------------------------------------- /HASCO/slides/figures/graph-painter-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/HASCO/slides/figures/graph-painter-1.png -------------------------------------------------------------------------------- /HASCO/slides/figures/graph-painter-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/HASCO/slides/figures/graph-painter-2.png -------------------------------------------------------------------------------- /HASCO/slides/figures/graph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/HASCO/slides/figures/graph.pdf -------------------------------------------------------------------------------- /HASCO/slides/figures/graph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/HASCO/slides/figures/graph.svg -------------------------------------------------------------------------------- /HASCO/slides/figures/hist-painter-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/HASCO/slides/figures/hist-painter-1.png -------------------------------------------------------------------------------- /HASCO/slides/figures/hist-painter-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/HASCO/slides/figures/hist-painter-2.png -------------------------------------------------------------------------------- /HASCO/slides/figures/hist-painter-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/HASCO/slides/figures/hist-painter-3.png -------------------------------------------------------------------------------- /HASCO/slides/figures/hplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/HASCO/slides/figures/hplot.png -------------------------------------------------------------------------------- /HASCO/slides/figures/htv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/HASCO/slides/figures/htv.png -------------------------------------------------------------------------------- /HASCO/slides/figures/paw-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/HASCO/slides/figures/paw-1.png -------------------------------------------------------------------------------- /HASCO/slides/figures/paw-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/HASCO/slides/figures/paw-2.png -------------------------------------------------------------------------------- /HASCO/slides/figures/root_domains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/HASCO/slides/figures/root_domains.png -------------------------------------------------------------------------------- /HASCO/slides/figures/tbrowser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/HASCO/slides/figures/tbrowser.png -------------------------------------------------------------------------------- /HASCO/slides/figures/vary.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/HASCO/slides/figures/vary.pdf -------------------------------------------------------------------------------- /HASCO/slides/figures/whats_in_aod_reco.gif.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/HASCO/slides/figures/whats_in_aod_reco.gif.1 -------------------------------------------------------------------------------- /HASCO/slides/hasco_root.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/HASCO/slides/hasco_root.tex -------------------------------------------------------------------------------- /HASCO/slides/scripts/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/HASCO/slides/scripts/analysis.py -------------------------------------------------------------------------------- /HASCO/slides/scripts/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/HASCO/slides/scripts/check.py -------------------------------------------------------------------------------- /HASCO/slides/scripts/clad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/HASCO/slides/scripts/clad.py -------------------------------------------------------------------------------- /HASCO/slides/scripts/figure001.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/HASCO/slides/scripts/figure001.C -------------------------------------------------------------------------------- /HASCO/slides/scripts/figure002.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/HASCO/slides/scripts/figure002.C -------------------------------------------------------------------------------- /HASCO/slides/scripts/figure003.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/HASCO/slides/scripts/figure003.C -------------------------------------------------------------------------------- /HASCO/slides/scripts/figure004.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/HASCO/slides/scripts/figure004.C -------------------------------------------------------------------------------- /HASCO/slides/scripts/figure005.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/HASCO/slides/scripts/figure005.C -------------------------------------------------------------------------------- /HASCO/slides/scripts/figure006.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/HASCO/slides/scripts/figure006.C -------------------------------------------------------------------------------- /HASCO/slides/scripts/figure007.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/HASCO/slides/scripts/figure007.C -------------------------------------------------------------------------------- /HASCO/slides/scripts/figure008.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/HASCO/slides/scripts/figure008.C -------------------------------------------------------------------------------- /HASCO/slides/scripts/figure009.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/HASCO/slides/scripts/figure009.C -------------------------------------------------------------------------------- /HASCO/slides/scripts/figure010.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/HASCO/slides/scripts/figure010.C -------------------------------------------------------------------------------- /HASCO/slides/scripts/figure011.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/HASCO/slides/scripts/figure011.C -------------------------------------------------------------------------------- /HASCO/slides/scripts/rdf-analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/HASCO/slides/scripts/rdf-analysis.py -------------------------------------------------------------------------------- /HASCO/slides/scripts/rdf-vary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/HASCO/slides/scripts/rdf-vary.py -------------------------------------------------------------------------------- /HASCO/slides/scripts/tefficiency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/HASCO/slides/scripts/tefficiency.py -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/C++Interpreter/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/C++Interpreter/myMacro.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/INSIGHTS2018/Exercises/C++Interpreter/myMacro.C -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/C++Interpreter/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/INSIGHTS2018/Exercises/C++Interpreter/readme.md -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/Fitting/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/Fitting/PoissonGausEquivalence.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/INSIGHTS2018/Exercises/Fitting/PoissonGausEquivalence.C -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/Fitting/correlatedParameters.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/INSIGHTS2018/Exercises/Fitting/correlatedParameters.C -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/Fitting/firstFit.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/INSIGHTS2018/Exercises/Fitting/firstFit.C -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/Fitting/firstFit_Solution.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/INSIGHTS2018/Exercises/Fitting/firstFit_Solution.C -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/Fitting/fitPanel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/INSIGHTS2018/Exercises/Fitting/fitPanel.C -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/Fitting/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/INSIGHTS2018/Exercises/Fitting/readme.md -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/Graphics/macro1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/INSIGHTS2018/Exercises/Graphics/macro1.C -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/Graphics/macro1NoFit.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/INSIGHTS2018/Exercises/Graphics/macro1NoFit.C -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/Graphics/macro2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/INSIGHTS2018/Exercises/Graphics/macro2.C -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/Graphics/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/INSIGHTS2018/Exercises/Graphics/readme.md -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/HistogramsGraphsFunctions/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/HistogramsGraphsFunctions/SimpleFunction.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/INSIGHTS2018/Exercises/HistogramsGraphsFunctions/SimpleFunction.C -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/HistogramsGraphsFunctions/SimpleGraph.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/INSIGHTS2018/Exercises/HistogramsGraphsFunctions/SimpleGraph.C -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/HistogramsGraphsFunctions/SimpleHistogram.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/INSIGHTS2018/Exercises/HistogramsGraphsFunctions/SimpleHistogram.C -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/HistogramsGraphsFunctions/myFirstFunction.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/INSIGHTS2018/Exercises/HistogramsGraphsFunctions/myFirstFunction.C -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/HistogramsGraphsFunctions/myFirstGraph.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/INSIGHTS2018/Exercises/HistogramsGraphsFunctions/myFirstGraph.C -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/HistogramsGraphsFunctions/myFirstHistogram.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/INSIGHTS2018/Exercises/HistogramsGraphsFunctions/myFirstHistogram.C -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/HistogramsGraphsFunctions/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/INSIGHTS2018/Exercises/HistogramsGraphsFunctions/readme.md -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/PythonInterface/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/PythonInterface/DynamicCpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/INSIGHTS2018/Exercises/PythonInterface/DynamicCpp.py -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/PythonInterface/Graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/INSIGHTS2018/Exercises/PythonInterface/Graph.py -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/PythonInterface/HistoPol1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/INSIGHTS2018/Exercises/PythonInterface/HistoPol1.py -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/PythonInterface/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/INSIGHTS2018/Exercises/PythonInterface/readme.md -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/ROOTBooks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/ROOTBooks/.ipynb_checkpoints/CreateAHistogram_Solution-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/INSIGHTS2018/Exercises/ROOTBooks/.ipynb_checkpoints/CreateAHistogram_Solution-checkpoint.ipynb -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/ROOTBooks/CentralLimitTheorem.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/INSIGHTS2018/Exercises/ROOTBooks/CentralLimitTheorem.ipynb -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/ROOTBooks/CentralLimitTheorem_Solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/INSIGHTS2018/Exercises/ROOTBooks/CentralLimitTheorem_Solution.ipynb -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/ROOTBooks/CreateAHistogram.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/INSIGHTS2018/Exercises/ROOTBooks/CreateAHistogram.ipynb -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/ROOTBooks/CreateAHistogramCpp_Solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/INSIGHTS2018/Exercises/ROOTBooks/CreateAHistogramCpp_Solution.ipynb -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/ROOTBooks/CreateAHistogram_Solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/INSIGHTS2018/Exercises/ROOTBooks/CreateAHistogram_Solution.ipynb -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/ROOTBooks/FittingExample.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/INSIGHTS2018/Exercises/ROOTBooks/FittingExample.ipynb -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/ROOTBooks/FittingExample_Solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/INSIGHTS2018/Exercises/ROOTBooks/FittingExample_Solution.ipynb -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/ROOTBooks/GausFit.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/INSIGHTS2018/Exercises/ROOTBooks/GausFit.ipynb -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/ROOTBooks/GausFit_Solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/INSIGHTS2018/Exercises/ROOTBooks/GausFit_Solution.ipynb -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/ROOTBooks/Hgg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/INSIGHTS2018/Exercises/ROOTBooks/Hgg.txt -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/ROOTBooks/HiggsBinFit.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/INSIGHTS2018/Exercises/ROOTBooks/HiggsBinFit.ipynb -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/ROOTBooks/graphDraw.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/INSIGHTS2018/Exercises/ROOTBooks/graphDraw.ipynb -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/ROOTBooks/graphDraw_Solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/INSIGHTS2018/Exercises/ROOTBooks/graphDraw_Solution.ipynb -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/ROOTBooks/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/INSIGHTS2018/Exercises/ROOTBooks/readme.md -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/WorkingWithColumnarData/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/WorkingWithColumnarData/CMSDimuonMass.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/INSIGHTS2018/Exercises/WorkingWithColumnarData/CMSDimuonMass.C -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/WorkingWithColumnarData/hsimple.root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/INSIGHTS2018/Exercises/WorkingWithColumnarData/hsimple.root -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/WorkingWithColumnarData/hsimpleCpp.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/INSIGHTS2018/Exercises/WorkingWithColumnarData/hsimpleCpp.C -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/WorkingWithColumnarData/hsimplePy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/INSIGHTS2018/Exercises/WorkingWithColumnarData/hsimplePy.py -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/WorkingWithColumnarData/hsimpleTTreeDraw.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/INSIGHTS2018/Exercises/WorkingWithColumnarData/hsimpleTTreeDraw.C -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/WorkingWithColumnarData/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/INSIGHTS2018/Exercises/WorkingWithColumnarData/readme.md -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/WorkingWithFiles/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/WorkingWithFiles/.ipynb_checkpoints/WritingOnFiles-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/INSIGHTS2018/Exercises/WorkingWithFiles/.ipynb_checkpoints/WritingOnFiles-checkpoint.ipynb -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/WorkingWithFiles/.ipynb_checkpoints/WritingOnFiles_Solution-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/INSIGHTS2018/Exercises/WorkingWithFiles/.ipynb_checkpoints/WritingOnFiles_Solution-checkpoint.ipynb -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/WorkingWithFiles/WritingOnFilesExercise.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/INSIGHTS2018/Exercises/WorkingWithFiles/WritingOnFilesExercise.ipynb -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/WorkingWithFiles/WritingOnFiles_Solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/INSIGHTS2018/Exercises/WorkingWithFiles/WritingOnFiles_Solution.ipynb -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/WorkingWithFiles/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/INSIGHTS2018/Exercises/WorkingWithFiles/readme.md -------------------------------------------------------------------------------- /INSIGHTS2018/Exercises/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/INSIGHTS2018/Exercises/readme.md -------------------------------------------------------------------------------- /INSIGHTS2018/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/INSIGHTS2018/readme.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTENANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/MAINTENANCE.md -------------------------------------------------------------------------------- /NCPSchool2021/Examples/CentralLimitTheorem.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/NCPSchool2021/Examples/CentralLimitTheorem.ipynb -------------------------------------------------------------------------------- /NCPSchool2021/Examples/CreateAHistogramCpp.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/NCPSchool2021/Examples/CreateAHistogramCpp.ipynb -------------------------------------------------------------------------------- /NCPSchool2021/Examples/CreateAHistogramPython.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/NCPSchool2021/Examples/CreateAHistogramPython.ipynb -------------------------------------------------------------------------------- /NCPSchool2021/Examples/FittingExample.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/NCPSchool2021/Examples/FittingExample.ipynb -------------------------------------------------------------------------------- /NCPSchool2021/Examples/GausFit.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/NCPSchool2021/Examples/GausFit.ipynb -------------------------------------------------------------------------------- /NCPSchool2021/Examples/GausModelRooFit.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/NCPSchool2021/Examples/GausModelRooFit.ipynb -------------------------------------------------------------------------------- /NCPSchool2021/Examples/GaussianModel.root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/NCPSchool2021/Examples/GaussianModel.root -------------------------------------------------------------------------------- /NCPSchool2021/Examples/GraphDrawCpp.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/NCPSchool2021/Examples/GraphDrawCpp.ipynb -------------------------------------------------------------------------------- /NCPSchool2021/Examples/GraphDrawPython.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/NCPSchool2021/Examples/GraphDrawPython.ipynb -------------------------------------------------------------------------------- /NCPSchool2021/Examples/Hgg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/NCPSchool2021/Examples/Hgg.txt -------------------------------------------------------------------------------- /NCPSchool2021/Examples/HiggsBinFit.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/NCPSchool2021/Examples/HiggsBinFit.ipynb -------------------------------------------------------------------------------- /NCPSchool2021/Examples/HiggsRooFit.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/NCPSchool2021/Examples/HiggsRooFit.ipynb -------------------------------------------------------------------------------- /NCPSchool2021/Examples/Higgs_data.root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/NCPSchool2021/Examples/Higgs_data.root -------------------------------------------------------------------------------- /NCPSchool2021/Examples/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/NCPSchool2021/Examples/Readme.md -------------------------------------------------------------------------------- /NCPSchool2021/Examples/SimultaneousFit.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/NCPSchool2021/Examples/SimultaneousFit.ipynb -------------------------------------------------------------------------------- /NCPSchool2021/Examples/TMVA_CNN_Classification_py.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/NCPSchool2021/Examples/TMVA_CNN_Classification_py.ipynb -------------------------------------------------------------------------------- /NCPSchool2021/Examples/TMVA_Classification.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/NCPSchool2021/Examples/TMVA_Classification.ipynb -------------------------------------------------------------------------------- /NCPSchool2021/Examples/TMVA_CrossValidation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/NCPSchool2021/Examples/TMVA_CrossValidation.ipynb -------------------------------------------------------------------------------- /NCPSchool2021/Examples/TMVA_Higgs_Classification.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/NCPSchool2021/Examples/TMVA_Higgs_Classification.ipynb -------------------------------------------------------------------------------- /NCPSchool2021/Examples/TMVA_Higgs_Classification_py.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/NCPSchool2021/Examples/TMVA_Higgs_Classification_py.ipynb -------------------------------------------------------------------------------- /NCPSchool2021/Examples/TMVA_Reader.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/NCPSchool2021/Examples/TMVA_Reader.ipynb -------------------------------------------------------------------------------- /NCPSchool2021/Examples/TMVA_Regression.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/NCPSchool2021/Examples/TMVA_Regression.ipynb -------------------------------------------------------------------------------- /NCPSchool2021/Examples/TMVA_VariableImportance.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/NCPSchool2021/Examples/TMVA_VariableImportance.ipynb -------------------------------------------------------------------------------- /NCPSchool2021/Examples/images_data.root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/NCPSchool2021/Examples/images_data.root -------------------------------------------------------------------------------- /NCPSchool2021/Examples/tmva_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/NCPSchool2021/Examples/tmva_logo.gif -------------------------------------------------------------------------------- /NCPSchool2021/RDataFrame/01-rdataframe-basics.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/NCPSchool2021/RDataFrame/01-rdataframe-basics.ipynb -------------------------------------------------------------------------------- /NCPSchool2021/RDataFrame/02-rdataframe-collections.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/NCPSchool2021/RDataFrame/02-rdataframe-collections.ipynb -------------------------------------------------------------------------------- /NCPSchool2021/RDataFrame/03-rdataframe-features.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/NCPSchool2021/RDataFrame/03-rdataframe-features.ipynb -------------------------------------------------------------------------------- /NCPSchool2021/RDataFrame/04-rdataframe-advanced.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/NCPSchool2021/RDataFrame/04-rdataframe-advanced.ipynb -------------------------------------------------------------------------------- /NCPSchool2021/RDataFrame/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/NCPSchool2021/RDataFrame/README.md -------------------------------------------------------------------------------- /NCPSchool2021/RDataFrame/data/example_file.root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/NCPSchool2021/RDataFrame/data/example_file.root -------------------------------------------------------------------------------- /NCPSchool2021/RDataFrame/images/DistRDF_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/NCPSchool2021/RDataFrame/images/DistRDF_architecture.png -------------------------------------------------------------------------------- /NCPSchool2021/RDataFrame/images/rdf_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/NCPSchool2021/RDataFrame/images/rdf_1.png -------------------------------------------------------------------------------- /NCPSchool2021/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/NCPSchool2021/README.md -------------------------------------------------------------------------------- /NCPSchool2021/introduction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/NCPSchool2021/introduction.ipynb -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2016/ExampleData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2016/ExampleData.txt -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2016/ROOT Summer Student Tutorial 2016.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2016/ROOT Summer Student Tutorial 2016.pdf -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2016/ROOT Summer Student Tutorial 2016.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2016/ROOT Summer Student Tutorial 2016.pptx -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2016/hstack.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2016/hstack.C -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2016/macro1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2016/macro1.C -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2016/macro2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2016/macro2.C -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2016/macro2_input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2016/macro2_input.txt -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2016/macro2_input_expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2016/macro2_input_expected.txt -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2016/macro3.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2016/macro3.C -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2016/macro4.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2016/macro4.C -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2016/macro5.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2016/macro5.C -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2016/macro6.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2016/macro6.C -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2016/macro7.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2016/macro7.C -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2016/multigraph.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2016/multigraph.C -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2016/notebooks/FillHistogram_Example_py.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2016/notebooks/FillHistogram_Example_py.ipynb -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2016/notebooks/Macro1_cpp.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2016/notebooks/Macro1_cpp.ipynb -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2016/notebooks/Macro2_cpp.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2016/notebooks/Macro2_cpp.ipynb -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2016/notebooks/Macro3_cpp.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2016/notebooks/Macro3_cpp.ipynb -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2016/notebooks/Macro4_cpp.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2016/notebooks/Macro4_cpp.ipynb -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2016/notebooks/Multigraph_cpp.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2016/notebooks/Multigraph_cpp.ipynb -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2016/notebooks/Slits_cpp.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2016/notebooks/Slits_cpp.ipynb -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2016/notebooks/THStack_cpp.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2016/notebooks/THStack_cpp.ipynb -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2016/notebooks/TTreeAccess_Example_py.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2016/notebooks/TTreeAccess_Example_py.ipynb -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2016/notebooks/TTreeReaderExample_cpp.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2016/notebooks/TTreeReaderExample_cpp.ipynb -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2016/notebooks/Write_ntuple_to_file_cpp.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2016/notebooks/Write_ntuple_to_file_cpp.ipynb -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2016/notebooks/snapshots/FillHistogram_Example_py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2016/notebooks/snapshots/FillHistogram_Example_py.png -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2016/notebooks/snapshots/Macro1_cpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2016/notebooks/snapshots/Macro1_cpp.png -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2016/notebooks/snapshots/Macro2_cpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2016/notebooks/snapshots/Macro2_cpp.png -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2016/notebooks/snapshots/Macro3_cpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2016/notebooks/snapshots/Macro3_cpp.png -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2016/notebooks/snapshots/Macro4_cpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2016/notebooks/snapshots/Macro4_cpp.png -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2016/notebooks/snapshots/Multigraph_cpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2016/notebooks/snapshots/Multigraph_cpp.png -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2016/notebooks/snapshots/Slits_cpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2016/notebooks/snapshots/Slits_cpp.png -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2016/notebooks/snapshots/THStack_cpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2016/notebooks/snapshots/THStack_cpp.png -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2016/notebooks/snapshots/TTreeAccess_Example_py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2016/notebooks/snapshots/TTreeAccess_Example_py.png -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2016/notebooks/snapshots/TTreeReaderExample_cpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2016/notebooks/snapshots/TTreeReaderExample_cpp.png -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2016/notebooks/snapshots/Write_ntuple_to_file_cpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2016/notebooks/snapshots/Write_ntuple_to_file_cpp.png -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2016/slits.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2016/slits.C -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2016/write_ntuple_to_file.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2016/write_ntuple_to_file.C -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2017/examples/ExampleData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2017/examples/ExampleData.txt -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2017/examples/hstack.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2017/examples/hstack.C -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2017/examples/macro1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2017/examples/macro1.C -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2017/examples/macro2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2017/examples/macro2.C -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2017/examples/macro2_input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2017/examples/macro2_input.txt -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2017/examples/macro2_input_expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2017/examples/macro2_input_expected.txt -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2017/examples/macro3.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2017/examples/macro3.C -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2017/examples/macro4.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2017/examples/macro4.C -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2017/examples/macro5.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2017/examples/macro5.C -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2017/examples/macro6.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2017/examples/macro6.C -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2017/examples/macro7.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2017/examples/macro7.C -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2017/examples/multigraph.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2017/examples/multigraph.C -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2017/examples/notebooks/FillHistogram_Example_py.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2017/examples/notebooks/FillHistogram_Example_py.ipynb -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2017/examples/notebooks/Macro1_cpp.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2017/examples/notebooks/Macro1_cpp.ipynb -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2017/examples/notebooks/Macro2_cpp.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2017/examples/notebooks/Macro2_cpp.ipynb -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2017/examples/notebooks/Macro3_cpp.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2017/examples/notebooks/Macro3_cpp.ipynb -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2017/examples/notebooks/Macro4_cpp.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2017/examples/notebooks/Macro4_cpp.ipynb -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2017/examples/notebooks/Multigraph_cpp.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2017/examples/notebooks/Multigraph_cpp.ipynb -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2017/examples/notebooks/Slits_cpp.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2017/examples/notebooks/Slits_cpp.ipynb -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2017/examples/notebooks/THStack_cpp.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2017/examples/notebooks/THStack_cpp.ipynb -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2017/examples/notebooks/TTreeAccess_Example_py.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2017/examples/notebooks/TTreeAccess_Example_py.ipynb -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2017/examples/notebooks/TTreeReaderExample_cpp.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2017/examples/notebooks/TTreeReaderExample_cpp.ipynb -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2017/examples/notebooks/Write_ntuple_to_file_cpp.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2017/examples/notebooks/Write_ntuple_to_file_cpp.ipynb -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2017/examples/notebooks/nbSnapshots/FillHistogram_Example_py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2017/examples/notebooks/nbSnapshots/FillHistogram_Example_py.png -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2017/examples/notebooks/nbSnapshots/Macro1_cpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2017/examples/notebooks/nbSnapshots/Macro1_cpp.png -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2017/examples/notebooks/nbSnapshots/Macro2_cpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2017/examples/notebooks/nbSnapshots/Macro2_cpp.png -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2017/examples/notebooks/nbSnapshots/Macro3_cpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2017/examples/notebooks/nbSnapshots/Macro3_cpp.png -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2017/examples/notebooks/nbSnapshots/Macro4_cpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2017/examples/notebooks/nbSnapshots/Macro4_cpp.png -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2017/examples/notebooks/nbSnapshots/Multigraph_cpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2017/examples/notebooks/nbSnapshots/Multigraph_cpp.png -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2017/examples/notebooks/nbSnapshots/Slits_cpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2017/examples/notebooks/nbSnapshots/Slits_cpp.png -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2017/examples/notebooks/nbSnapshots/THStack_cpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2017/examples/notebooks/nbSnapshots/THStack_cpp.png -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2017/examples/notebooks/nbSnapshots/TTreeAccess_Example_py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2017/examples/notebooks/nbSnapshots/TTreeAccess_Example_py.png -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2017/examples/notebooks/nbSnapshots/TTreeReaderExample_cpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2017/examples/notebooks/nbSnapshots/TTreeReaderExample_cpp.png -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2017/examples/notebooks/nbSnapshots/Write_ntuple_to_file_cpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2017/examples/notebooks/nbSnapshots/Write_ntuple_to_file_cpp.png -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2017/examples/slits.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2017/examples/slits.C -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2017/examples/write_ntuple_to_file.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2017/examples/write_ntuple_to_file.C -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2017/lxplus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2017/lxplus.md -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2017/slides/ROOT Summer Student Tutorial 2017.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2017/slides/ROOT Summer Student Tutorial 2017.pdf -------------------------------------------------------------------------------- /OldSummerStudentsCourse/2017/slides/ROOT Summer Student Tutorial 2017.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/OldSummerStudentsCourse/2017/slides/ROOT Summer Student Tutorial 2017.pptx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/README.md -------------------------------------------------------------------------------- /Recording/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/Recording/README.md -------------------------------------------------------------------------------- /Recording/jupyroot/exercises/jupyroot-exercise.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/Recording/jupyroot/exercises/jupyroot-exercise.ipynb -------------------------------------------------------------------------------- /Recording/jupyroot/exercises/jupyroot-exercise_solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/Recording/jupyroot/exercises/jupyroot-exercise_solution.ipynb -------------------------------------------------------------------------------- /Recording/jupyroot/theory/jupyroot-cpp.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/Recording/jupyroot/theory/jupyroot-cpp.ipynb -------------------------------------------------------------------------------- /Recording/jupyroot/theory/jupyroot-python.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/Recording/jupyroot/theory/jupyroot-python.ipynb -------------------------------------------------------------------------------- /Recording/pyroot/exercises/pyroot-exercise.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/Recording/pyroot/exercises/pyroot-exercise.ipynb -------------------------------------------------------------------------------- /Recording/pyroot/exercises/pyroot-exercise_solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/Recording/pyroot/exercises/pyroot-exercise_solution.ipynb -------------------------------------------------------------------------------- /Recording/pyroot/theory/data/myfile.root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/Recording/pyroot/theory/data/myfile.root -------------------------------------------------------------------------------- /Recording/pyroot/theory/pyroot.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/Recording/pyroot/theory/pyroot.ipynb -------------------------------------------------------------------------------- /RooFit/roofit-tutorial-01-script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/RooFit/roofit-tutorial-01-script.md -------------------------------------------------------------------------------- /RooFit/roofit-tutorial-01.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/RooFit/roofit-tutorial-01.ipynb -------------------------------------------------------------------------------- /RooFit/roofit_classes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/RooFit/roofit_classes.png -------------------------------------------------------------------------------- /RooFit/roofit_pdfs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/RooFit/roofit_pdfs.png -------------------------------------------------------------------------------- /SoftwareCarpentry/.gitignore: -------------------------------------------------------------------------------- 1 | **/.ipynb_checkpoints 2 | -------------------------------------------------------------------------------- /SoftwareCarpentry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SoftwareCarpentry/README.md -------------------------------------------------------------------------------- /SummerStudentCourse/2018/Exercises/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SummerStudentCourse/2018/Exercises/C++Interpreter/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SummerStudentCourse/2018/Exercises/C++Interpreter/myMacro.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2018/Exercises/C++Interpreter/myMacro.C -------------------------------------------------------------------------------- /SummerStudentCourse/2018/Exercises/C++Interpreter/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2018/Exercises/C++Interpreter/readme.md -------------------------------------------------------------------------------- /SummerStudentCourse/2018/Exercises/Fitting/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SummerStudentCourse/2018/Exercises/Fitting/PoissonGausEquivalence.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2018/Exercises/Fitting/PoissonGausEquivalence.C -------------------------------------------------------------------------------- /SummerStudentCourse/2018/Exercises/Fitting/correlatedParameters.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2018/Exercises/Fitting/correlatedParameters.C -------------------------------------------------------------------------------- /SummerStudentCourse/2018/Exercises/Fitting/firstFit.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2018/Exercises/Fitting/firstFit.C -------------------------------------------------------------------------------- /SummerStudentCourse/2018/Exercises/Fitting/firstFit_Solution.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2018/Exercises/Fitting/firstFit_Solution.C -------------------------------------------------------------------------------- /SummerStudentCourse/2018/Exercises/Fitting/fitPanel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2018/Exercises/Fitting/fitPanel.C -------------------------------------------------------------------------------- /SummerStudentCourse/2018/Exercises/Fitting/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2018/Exercises/Fitting/readme.md -------------------------------------------------------------------------------- /SummerStudentCourse/2018/Exercises/Graphics/macro1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2018/Exercises/Graphics/macro1.C -------------------------------------------------------------------------------- /SummerStudentCourse/2018/Exercises/Graphics/macro1NoFit.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2018/Exercises/Graphics/macro1NoFit.C -------------------------------------------------------------------------------- /SummerStudentCourse/2018/Exercises/Graphics/macro2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2018/Exercises/Graphics/macro2.C -------------------------------------------------------------------------------- /SummerStudentCourse/2018/Exercises/Graphics/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2018/Exercises/Graphics/readme.md -------------------------------------------------------------------------------- /SummerStudentCourse/2018/Exercises/HistogramsGraphsFunctions/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SummerStudentCourse/2018/Exercises/HistogramsGraphsFunctions/SimpleFunction.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2018/Exercises/HistogramsGraphsFunctions/SimpleFunction.C -------------------------------------------------------------------------------- /SummerStudentCourse/2018/Exercises/HistogramsGraphsFunctions/SimpleGraph.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2018/Exercises/HistogramsGraphsFunctions/SimpleGraph.C -------------------------------------------------------------------------------- /SummerStudentCourse/2018/Exercises/HistogramsGraphsFunctions/SimpleHistogram.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2018/Exercises/HistogramsGraphsFunctions/SimpleHistogram.C -------------------------------------------------------------------------------- /SummerStudentCourse/2018/Exercises/HistogramsGraphsFunctions/myFirstFunction.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2018/Exercises/HistogramsGraphsFunctions/myFirstFunction.C -------------------------------------------------------------------------------- /SummerStudentCourse/2018/Exercises/HistogramsGraphsFunctions/myFirstGraph.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2018/Exercises/HistogramsGraphsFunctions/myFirstGraph.C -------------------------------------------------------------------------------- /SummerStudentCourse/2018/Exercises/HistogramsGraphsFunctions/myFirstHistogram.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2018/Exercises/HistogramsGraphsFunctions/myFirstHistogram.C -------------------------------------------------------------------------------- /SummerStudentCourse/2018/Exercises/HistogramsGraphsFunctions/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2018/Exercises/HistogramsGraphsFunctions/readme.md -------------------------------------------------------------------------------- /SummerStudentCourse/2018/Exercises/PythonInterface/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SummerStudentCourse/2018/Exercises/PythonInterface/DynamicCpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2018/Exercises/PythonInterface/DynamicCpp.py -------------------------------------------------------------------------------- /SummerStudentCourse/2018/Exercises/PythonInterface/Graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2018/Exercises/PythonInterface/Graph.py -------------------------------------------------------------------------------- /SummerStudentCourse/2018/Exercises/PythonInterface/HistoPol1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2018/Exercises/PythonInterface/HistoPol1.py -------------------------------------------------------------------------------- /SummerStudentCourse/2018/Exercises/PythonInterface/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2018/Exercises/PythonInterface/readme.md -------------------------------------------------------------------------------- /SummerStudentCourse/2018/Exercises/ROOTBooks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SummerStudentCourse/2018/Exercises/ROOTBooks/CentralLimitTheorem.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2018/Exercises/ROOTBooks/CentralLimitTheorem.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2018/Exercises/ROOTBooks/CentralLimitTheorem_Solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2018/Exercises/ROOTBooks/CentralLimitTheorem_Solution.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2018/Exercises/ROOTBooks/CreateAHistogram.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2018/Exercises/ROOTBooks/CreateAHistogram.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2018/Exercises/ROOTBooks/CreateAHistogramCpp_Solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2018/Exercises/ROOTBooks/CreateAHistogramCpp_Solution.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2018/Exercises/ROOTBooks/CreateAHistogram_Solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2018/Exercises/ROOTBooks/CreateAHistogram_Solution.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2018/Exercises/ROOTBooks/FittingExample.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2018/Exercises/ROOTBooks/FittingExample.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2018/Exercises/ROOTBooks/FittingExample_Solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2018/Exercises/ROOTBooks/FittingExample_Solution.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2018/Exercises/ROOTBooks/GausFit.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2018/Exercises/ROOTBooks/GausFit.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2018/Exercises/ROOTBooks/GausFit_Solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2018/Exercises/ROOTBooks/GausFit_Solution.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2018/Exercises/ROOTBooks/Hgg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2018/Exercises/ROOTBooks/Hgg.txt -------------------------------------------------------------------------------- /SummerStudentCourse/2018/Exercises/ROOTBooks/HiggsBinFit.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2018/Exercises/ROOTBooks/HiggsBinFit.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2018/Exercises/ROOTBooks/graphDraw.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2018/Exercises/ROOTBooks/graphDraw.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2018/Exercises/ROOTBooks/graphDraw_Solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2018/Exercises/ROOTBooks/graphDraw_Solution.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2018/Exercises/ROOTBooks/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2018/Exercises/ROOTBooks/readme.md -------------------------------------------------------------------------------- /SummerStudentCourse/2018/Exercises/WorkingWithColumnarData/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SummerStudentCourse/2018/Exercises/WorkingWithColumnarData/CMSDimuonMass.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2018/Exercises/WorkingWithColumnarData/CMSDimuonMass.C -------------------------------------------------------------------------------- /SummerStudentCourse/2018/Exercises/WorkingWithColumnarData/hsimple.root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2018/Exercises/WorkingWithColumnarData/hsimple.root -------------------------------------------------------------------------------- /SummerStudentCourse/2018/Exercises/WorkingWithColumnarData/hsimpleCpp.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2018/Exercises/WorkingWithColumnarData/hsimpleCpp.C -------------------------------------------------------------------------------- /SummerStudentCourse/2018/Exercises/WorkingWithColumnarData/hsimplePy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2018/Exercises/WorkingWithColumnarData/hsimplePy.py -------------------------------------------------------------------------------- /SummerStudentCourse/2018/Exercises/WorkingWithColumnarData/hsimpleTTreeDraw.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2018/Exercises/WorkingWithColumnarData/hsimpleTTreeDraw.C -------------------------------------------------------------------------------- /SummerStudentCourse/2018/Exercises/WorkingWithColumnarData/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2018/Exercises/WorkingWithColumnarData/readme.md -------------------------------------------------------------------------------- /SummerStudentCourse/2018/Exercises/WorkingWithFiles/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SummerStudentCourse/2018/Exercises/WorkingWithFiles/WritingOnFilesExercise.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2018/Exercises/WorkingWithFiles/WritingOnFilesExercise.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2018/Exercises/WorkingWithFiles/WritingOnFiles_Solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2018/Exercises/WorkingWithFiles/WritingOnFiles_Solution.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2018/Exercises/WorkingWithFiles/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2018/Exercises/WorkingWithFiles/readme.md -------------------------------------------------------------------------------- /SummerStudentCourse/2018/Exercises/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2018/Exercises/readme.md -------------------------------------------------------------------------------- /SummerStudentCourse/2018/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2018/readme.md -------------------------------------------------------------------------------- /SummerStudentCourse/2019/Exercises/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SummerStudentCourse/2019/Exercises/C++Interpreter/myMacro.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2019/Exercises/C++Interpreter/myMacro.C -------------------------------------------------------------------------------- /SummerStudentCourse/2019/Exercises/C++Interpreter/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2019/Exercises/C++Interpreter/readme.md -------------------------------------------------------------------------------- /SummerStudentCourse/2019/Exercises/Fitting/PoissonGausEquivalence.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2019/Exercises/Fitting/PoissonGausEquivalence.C -------------------------------------------------------------------------------- /SummerStudentCourse/2019/Exercises/Fitting/correlatedParameters.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2019/Exercises/Fitting/correlatedParameters.C -------------------------------------------------------------------------------- /SummerStudentCourse/2019/Exercises/Fitting/firstFit.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2019/Exercises/Fitting/firstFit.C -------------------------------------------------------------------------------- /SummerStudentCourse/2019/Exercises/Fitting/firstFit_Solution.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2019/Exercises/Fitting/firstFit_Solution.C -------------------------------------------------------------------------------- /SummerStudentCourse/2019/Exercises/Fitting/fitPanel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2019/Exercises/Fitting/fitPanel.C -------------------------------------------------------------------------------- /SummerStudentCourse/2019/Exercises/Fitting/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2019/Exercises/Fitting/readme.md -------------------------------------------------------------------------------- /SummerStudentCourse/2019/Exercises/Graphics/macro1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2019/Exercises/Graphics/macro1.C -------------------------------------------------------------------------------- /SummerStudentCourse/2019/Exercises/Graphics/macro1NoFit.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2019/Exercises/Graphics/macro1NoFit.C -------------------------------------------------------------------------------- /SummerStudentCourse/2019/Exercises/Graphics/macro2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2019/Exercises/Graphics/macro2.C -------------------------------------------------------------------------------- /SummerStudentCourse/2019/Exercises/Graphics/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2019/Exercises/Graphics/readme.md -------------------------------------------------------------------------------- /SummerStudentCourse/2019/Exercises/HistogramsGraphsFunctions/SimpleFunction.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2019/Exercises/HistogramsGraphsFunctions/SimpleFunction.C -------------------------------------------------------------------------------- /SummerStudentCourse/2019/Exercises/HistogramsGraphsFunctions/SimpleGraph.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2019/Exercises/HistogramsGraphsFunctions/SimpleGraph.C -------------------------------------------------------------------------------- /SummerStudentCourse/2019/Exercises/HistogramsGraphsFunctions/SimpleHistogram.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2019/Exercises/HistogramsGraphsFunctions/SimpleHistogram.C -------------------------------------------------------------------------------- /SummerStudentCourse/2019/Exercises/HistogramsGraphsFunctions/myFirstFunction.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2019/Exercises/HistogramsGraphsFunctions/myFirstFunction.C -------------------------------------------------------------------------------- /SummerStudentCourse/2019/Exercises/HistogramsGraphsFunctions/myFirstGraph.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2019/Exercises/HistogramsGraphsFunctions/myFirstGraph.C -------------------------------------------------------------------------------- /SummerStudentCourse/2019/Exercises/HistogramsGraphsFunctions/myFirstHistogram.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2019/Exercises/HistogramsGraphsFunctions/myFirstHistogram.C -------------------------------------------------------------------------------- /SummerStudentCourse/2019/Exercises/HistogramsGraphsFunctions/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2019/Exercises/HistogramsGraphsFunctions/readme.md -------------------------------------------------------------------------------- /SummerStudentCourse/2019/Exercises/PythonInterface/DynamicCpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2019/Exercises/PythonInterface/DynamicCpp.py -------------------------------------------------------------------------------- /SummerStudentCourse/2019/Exercises/PythonInterface/Graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2019/Exercises/PythonInterface/Graph.py -------------------------------------------------------------------------------- /SummerStudentCourse/2019/Exercises/PythonInterface/HistoPol1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2019/Exercises/PythonInterface/HistoPol1.py -------------------------------------------------------------------------------- /SummerStudentCourse/2019/Exercises/PythonInterface/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2019/Exercises/PythonInterface/readme.md -------------------------------------------------------------------------------- /SummerStudentCourse/2019/Exercises/ROOTBooks/CentralLimitTheorem.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2019/Exercises/ROOTBooks/CentralLimitTheorem.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2019/Exercises/ROOTBooks/CentralLimitTheorem_Solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2019/Exercises/ROOTBooks/CentralLimitTheorem_Solution.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2019/Exercises/ROOTBooks/CreateAHistogram.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2019/Exercises/ROOTBooks/CreateAHistogram.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2019/Exercises/ROOTBooks/CreateAHistogramCpp_Solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2019/Exercises/ROOTBooks/CreateAHistogramCpp_Solution.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2019/Exercises/ROOTBooks/CreateAHistogram_Solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2019/Exercises/ROOTBooks/CreateAHistogram_Solution.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2019/Exercises/ROOTBooks/FittingExample.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2019/Exercises/ROOTBooks/FittingExample.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2019/Exercises/ROOTBooks/FittingExample_Solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2019/Exercises/ROOTBooks/FittingExample_Solution.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2019/Exercises/ROOTBooks/GausFit.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2019/Exercises/ROOTBooks/GausFit.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2019/Exercises/ROOTBooks/GausFit_Solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2019/Exercises/ROOTBooks/GausFit_Solution.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2019/Exercises/ROOTBooks/Hgg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2019/Exercises/ROOTBooks/Hgg.txt -------------------------------------------------------------------------------- /SummerStudentCourse/2019/Exercises/ROOTBooks/HiggsBinFit.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2019/Exercises/ROOTBooks/HiggsBinFit.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2019/Exercises/ROOTBooks/graphDraw.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2019/Exercises/ROOTBooks/graphDraw.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2019/Exercises/ROOTBooks/graphDraw_Solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2019/Exercises/ROOTBooks/graphDraw_Solution.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2019/Exercises/ROOTBooks/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2019/Exercises/ROOTBooks/readme.md -------------------------------------------------------------------------------- /SummerStudentCourse/2019/Exercises/WorkingWithColumnarData/CMSDimuonMass.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2019/Exercises/WorkingWithColumnarData/CMSDimuonMass.C -------------------------------------------------------------------------------- /SummerStudentCourse/2019/Exercises/WorkingWithColumnarData/hsimple.root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2019/Exercises/WorkingWithColumnarData/hsimple.root -------------------------------------------------------------------------------- /SummerStudentCourse/2019/Exercises/WorkingWithColumnarData/hsimpleCpp.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2019/Exercises/WorkingWithColumnarData/hsimpleCpp.C -------------------------------------------------------------------------------- /SummerStudentCourse/2019/Exercises/WorkingWithColumnarData/hsimplePy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2019/Exercises/WorkingWithColumnarData/hsimplePy.py -------------------------------------------------------------------------------- /SummerStudentCourse/2019/Exercises/WorkingWithColumnarData/hsimpleTTreeDraw.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2019/Exercises/WorkingWithColumnarData/hsimpleTTreeDraw.C -------------------------------------------------------------------------------- /SummerStudentCourse/2019/Exercises/WorkingWithColumnarData/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2019/Exercises/WorkingWithColumnarData/readme.md -------------------------------------------------------------------------------- /SummerStudentCourse/2019/Exercises/WorkingWithFiles/WritingOnFilesExercise.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2019/Exercises/WorkingWithFiles/WritingOnFilesExercise.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2019/Exercises/WorkingWithFiles/WritingOnFiles_Solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2019/Exercises/WorkingWithFiles/WritingOnFiles_Solution.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2019/Exercises/WorkingWithFiles/histos.root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2019/Exercises/WorkingWithFiles/histos.root -------------------------------------------------------------------------------- /SummerStudentCourse/2019/Exercises/WorkingWithFiles/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2019/Exercises/WorkingWithFiles/readme.md -------------------------------------------------------------------------------- /SummerStudentCourse/2019/Exercises/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2019/Exercises/readme.md -------------------------------------------------------------------------------- /SummerStudentCourse/2019/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2019/readme.md -------------------------------------------------------------------------------- /SummerStudentCourse/2022/Exercises/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SummerStudentCourse/2022/Exercises/C++Interpreter/myMacro.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2022/Exercises/C++Interpreter/myMacro.C -------------------------------------------------------------------------------- /SummerStudentCourse/2022/Exercises/C++Interpreter/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2022/Exercises/C++Interpreter/readme.md -------------------------------------------------------------------------------- /SummerStudentCourse/2022/Exercises/Fitting/FittingExample.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2022/Exercises/Fitting/FittingExample.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2022/Exercises/Fitting/GausFit.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2022/Exercises/Fitting/GausFit.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2022/Exercises/Fitting/correlatedParameters.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2022/Exercises/Fitting/correlatedParameters.C -------------------------------------------------------------------------------- /SummerStudentCourse/2022/Exercises/Fitting/firstFit.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2022/Exercises/Fitting/firstFit.C -------------------------------------------------------------------------------- /SummerStudentCourse/2022/Exercises/Fitting/firstFit_Solution.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2022/Exercises/Fitting/firstFit_Solution.C -------------------------------------------------------------------------------- /SummerStudentCourse/2022/Exercises/Fitting/fitPanel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2022/Exercises/Fitting/fitPanel.C -------------------------------------------------------------------------------- /SummerStudentCourse/2022/Exercises/Fitting/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2022/Exercises/Fitting/readme.md -------------------------------------------------------------------------------- /SummerStudentCourse/2022/Exercises/Graphics/macro1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2022/Exercises/Graphics/macro1.C -------------------------------------------------------------------------------- /SummerStudentCourse/2022/Exercises/Graphics/macro1NoFit.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2022/Exercises/Graphics/macro1NoFit.C -------------------------------------------------------------------------------- /SummerStudentCourse/2022/Exercises/Graphics/macro2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2022/Exercises/Graphics/macro2.C -------------------------------------------------------------------------------- /SummerStudentCourse/2022/Exercises/Graphics/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2022/Exercises/Graphics/readme.md -------------------------------------------------------------------------------- /SummerStudentCourse/2022/Exercises/HistogramsGraphsFunctions/PoissonGausEquivalence.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2022/Exercises/HistogramsGraphsFunctions/PoissonGausEquivalence.C -------------------------------------------------------------------------------- /SummerStudentCourse/2022/Exercises/HistogramsGraphsFunctions/SimpleFunction.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2022/Exercises/HistogramsGraphsFunctions/SimpleFunction.C -------------------------------------------------------------------------------- /SummerStudentCourse/2022/Exercises/HistogramsGraphsFunctions/SimpleFunction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2022/Exercises/HistogramsGraphsFunctions/SimpleFunction.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2022/Exercises/HistogramsGraphsFunctions/SimpleGraph.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2022/Exercises/HistogramsGraphsFunctions/SimpleGraph.C -------------------------------------------------------------------------------- /SummerStudentCourse/2022/Exercises/HistogramsGraphsFunctions/SimpleGraph.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2022/Exercises/HistogramsGraphsFunctions/SimpleGraph.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2022/Exercises/HistogramsGraphsFunctions/SimpleHistogram.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2022/Exercises/HistogramsGraphsFunctions/SimpleHistogram.C -------------------------------------------------------------------------------- /SummerStudentCourse/2022/Exercises/HistogramsGraphsFunctions/SimpleHistogram.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2022/Exercises/HistogramsGraphsFunctions/SimpleHistogram.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2022/Exercises/HistogramsGraphsFunctions/myFirstFunction.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2022/Exercises/HistogramsGraphsFunctions/myFirstFunction.C -------------------------------------------------------------------------------- /SummerStudentCourse/2022/Exercises/HistogramsGraphsFunctions/myFirstGraph.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2022/Exercises/HistogramsGraphsFunctions/myFirstGraph.C -------------------------------------------------------------------------------- /SummerStudentCourse/2022/Exercises/HistogramsGraphsFunctions/myFirstHistogram.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2022/Exercises/HistogramsGraphsFunctions/myFirstHistogram.C -------------------------------------------------------------------------------- /SummerStudentCourse/2022/Exercises/HistogramsGraphsFunctions/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2022/Exercises/HistogramsGraphsFunctions/readme.md -------------------------------------------------------------------------------- /SummerStudentCourse/2022/Exercises/PythonInterface/DynamicCpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2022/Exercises/PythonInterface/DynamicCpp.py -------------------------------------------------------------------------------- /SummerStudentCourse/2022/Exercises/PythonInterface/Graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2022/Exercises/PythonInterface/Graph.py -------------------------------------------------------------------------------- /SummerStudentCourse/2022/Exercises/PythonInterface/HistoPol1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2022/Exercises/PythonInterface/HistoPol1.py -------------------------------------------------------------------------------- /SummerStudentCourse/2022/Exercises/PythonInterface/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2022/Exercises/PythonInterface/readme.md -------------------------------------------------------------------------------- /SummerStudentCourse/2022/Exercises/ROOTBooks/CentralLimitTheorem.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2022/Exercises/ROOTBooks/CentralLimitTheorem.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2022/Exercises/ROOTBooks/CentralLimitTheorem_Solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2022/Exercises/ROOTBooks/CentralLimitTheorem_Solution.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2022/Exercises/ROOTBooks/CreateAHistogram.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2022/Exercises/ROOTBooks/CreateAHistogram.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2022/Exercises/ROOTBooks/CreateAHistogramCpp_Solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2022/Exercises/ROOTBooks/CreateAHistogramCpp_Solution.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2022/Exercises/ROOTBooks/CreateAHistogram_Solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2022/Exercises/ROOTBooks/CreateAHistogram_Solution.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2022/Exercises/ROOTBooks/FittingExample.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2022/Exercises/ROOTBooks/FittingExample.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2022/Exercises/ROOTBooks/FittingExample_Solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2022/Exercises/ROOTBooks/FittingExample_Solution.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2022/Exercises/ROOTBooks/GausFit.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2022/Exercises/ROOTBooks/GausFit.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2022/Exercises/ROOTBooks/GausFit_Solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2022/Exercises/ROOTBooks/GausFit_Solution.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2022/Exercises/ROOTBooks/Hgg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2022/Exercises/ROOTBooks/Hgg.txt -------------------------------------------------------------------------------- /SummerStudentCourse/2022/Exercises/ROOTBooks/HiggsBinFit.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2022/Exercises/ROOTBooks/HiggsBinFit.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2022/Exercises/ROOTBooks/graphDraw.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2022/Exercises/ROOTBooks/graphDraw.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2022/Exercises/ROOTBooks/graphDraw_Solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2022/Exercises/ROOTBooks/graphDraw_Solution.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2022/Exercises/ROOTBooks/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2022/Exercises/ROOTBooks/readme.md -------------------------------------------------------------------------------- /SummerStudentCourse/2022/Exercises/WorkingWithColumnarData/CMSDimuonMass.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2022/Exercises/WorkingWithColumnarData/CMSDimuonMass.C -------------------------------------------------------------------------------- /SummerStudentCourse/2022/Exercises/WorkingWithColumnarData/hsimple.root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2022/Exercises/WorkingWithColumnarData/hsimple.root -------------------------------------------------------------------------------- /SummerStudentCourse/2022/Exercises/WorkingWithColumnarData/hsimpleCpp.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2022/Exercises/WorkingWithColumnarData/hsimpleCpp.C -------------------------------------------------------------------------------- /SummerStudentCourse/2022/Exercises/WorkingWithColumnarData/hsimplePy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2022/Exercises/WorkingWithColumnarData/hsimplePy.py -------------------------------------------------------------------------------- /SummerStudentCourse/2022/Exercises/WorkingWithColumnarData/hsimpleTTreeDraw.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2022/Exercises/WorkingWithColumnarData/hsimpleTTreeDraw.C -------------------------------------------------------------------------------- /SummerStudentCourse/2022/Exercises/WorkingWithColumnarData/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2022/Exercises/WorkingWithColumnarData/readme.md -------------------------------------------------------------------------------- /SummerStudentCourse/2022/Exercises/WorkingWithFiles/WritingOnFilesExercise.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2022/Exercises/WorkingWithFiles/WritingOnFilesExercise.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2022/Exercises/WorkingWithFiles/WritingOnFiles_Solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2022/Exercises/WorkingWithFiles/WritingOnFiles_Solution.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2022/Exercises/WorkingWithFiles/histos.root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2022/Exercises/WorkingWithFiles/histos.root -------------------------------------------------------------------------------- /SummerStudentCourse/2022/Exercises/WorkingWithFiles/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2022/Exercises/WorkingWithFiles/readme.md -------------------------------------------------------------------------------- /SummerStudentCourse/2022/Exercises/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2022/Exercises/readme.md -------------------------------------------------------------------------------- /SummerStudentCourse/2022/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2022/readme.md -------------------------------------------------------------------------------- /SummerStudentCourse/2023/Exercises/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SummerStudentCourse/2023/Exercises/C++Interpreter/myMacro.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2023/Exercises/C++Interpreter/myMacro.C -------------------------------------------------------------------------------- /SummerStudentCourse/2023/Exercises/C++Interpreter/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2023/Exercises/C++Interpreter/readme.md -------------------------------------------------------------------------------- /SummerStudentCourse/2023/Exercises/Fitting/FittingExample.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2023/Exercises/Fitting/FittingExample.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2023/Exercises/Fitting/GausFit.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2023/Exercises/Fitting/GausFit.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2023/Exercises/Fitting/correlatedParameters.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2023/Exercises/Fitting/correlatedParameters.C -------------------------------------------------------------------------------- /SummerStudentCourse/2023/Exercises/Fitting/firstFit.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2023/Exercises/Fitting/firstFit.C -------------------------------------------------------------------------------- /SummerStudentCourse/2023/Exercises/Fitting/firstFit_Solution.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2023/Exercises/Fitting/firstFit_Solution.C -------------------------------------------------------------------------------- /SummerStudentCourse/2023/Exercises/Fitting/fitPanel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2023/Exercises/Fitting/fitPanel.C -------------------------------------------------------------------------------- /SummerStudentCourse/2023/Exercises/Fitting/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2023/Exercises/Fitting/readme.md -------------------------------------------------------------------------------- /SummerStudentCourse/2023/Exercises/Graphics/macro1.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2023/Exercises/Graphics/macro1.C -------------------------------------------------------------------------------- /SummerStudentCourse/2023/Exercises/Graphics/macro1NoFit.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2023/Exercises/Graphics/macro1NoFit.C -------------------------------------------------------------------------------- /SummerStudentCourse/2023/Exercises/Graphics/macro2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2023/Exercises/Graphics/macro2.C -------------------------------------------------------------------------------- /SummerStudentCourse/2023/Exercises/Graphics/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2023/Exercises/Graphics/readme.md -------------------------------------------------------------------------------- /SummerStudentCourse/2023/Exercises/HistogramsGraphsFunctions/PoissonGausEquivalence.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2023/Exercises/HistogramsGraphsFunctions/PoissonGausEquivalence.C -------------------------------------------------------------------------------- /SummerStudentCourse/2023/Exercises/HistogramsGraphsFunctions/SimpleFunction.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2023/Exercises/HistogramsGraphsFunctions/SimpleFunction.C -------------------------------------------------------------------------------- /SummerStudentCourse/2023/Exercises/HistogramsGraphsFunctions/SimpleFunction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2023/Exercises/HistogramsGraphsFunctions/SimpleFunction.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2023/Exercises/HistogramsGraphsFunctions/SimpleGraph.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2023/Exercises/HistogramsGraphsFunctions/SimpleGraph.C -------------------------------------------------------------------------------- /SummerStudentCourse/2023/Exercises/HistogramsGraphsFunctions/SimpleGraph.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2023/Exercises/HistogramsGraphsFunctions/SimpleGraph.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2023/Exercises/HistogramsGraphsFunctions/SimpleHistogram.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2023/Exercises/HistogramsGraphsFunctions/SimpleHistogram.C -------------------------------------------------------------------------------- /SummerStudentCourse/2023/Exercises/HistogramsGraphsFunctions/SimpleHistogram.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2023/Exercises/HistogramsGraphsFunctions/SimpleHistogram.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2023/Exercises/HistogramsGraphsFunctions/myFirstFunction.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2023/Exercises/HistogramsGraphsFunctions/myFirstFunction.C -------------------------------------------------------------------------------- /SummerStudentCourse/2023/Exercises/HistogramsGraphsFunctions/myFirstGraph.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2023/Exercises/HistogramsGraphsFunctions/myFirstGraph.C -------------------------------------------------------------------------------- /SummerStudentCourse/2023/Exercises/HistogramsGraphsFunctions/myFirstHistogram.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2023/Exercises/HistogramsGraphsFunctions/myFirstHistogram.C -------------------------------------------------------------------------------- /SummerStudentCourse/2023/Exercises/HistogramsGraphsFunctions/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2023/Exercises/HistogramsGraphsFunctions/readme.md -------------------------------------------------------------------------------- /SummerStudentCourse/2023/Exercises/PythonInterface/DynamicCpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2023/Exercises/PythonInterface/DynamicCpp.py -------------------------------------------------------------------------------- /SummerStudentCourse/2023/Exercises/PythonInterface/Graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2023/Exercises/PythonInterface/Graph.py -------------------------------------------------------------------------------- /SummerStudentCourse/2023/Exercises/PythonInterface/HistoPol1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2023/Exercises/PythonInterface/HistoPol1.py -------------------------------------------------------------------------------- /SummerStudentCourse/2023/Exercises/PythonInterface/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2023/Exercises/PythonInterface/readme.md -------------------------------------------------------------------------------- /SummerStudentCourse/2023/Exercises/ROOTBooks/CentralLimitTheorem.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2023/Exercises/ROOTBooks/CentralLimitTheorem.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2023/Exercises/ROOTBooks/CentralLimitTheorem_Solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2023/Exercises/ROOTBooks/CentralLimitTheorem_Solution.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2023/Exercises/ROOTBooks/CreateAHistogram.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2023/Exercises/ROOTBooks/CreateAHistogram.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2023/Exercises/ROOTBooks/CreateAHistogramCpp_Solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2023/Exercises/ROOTBooks/CreateAHistogramCpp_Solution.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2023/Exercises/ROOTBooks/CreateAHistogram_Solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2023/Exercises/ROOTBooks/CreateAHistogram_Solution.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2023/Exercises/ROOTBooks/FittingExample.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2023/Exercises/ROOTBooks/FittingExample.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2023/Exercises/ROOTBooks/FittingExample_Solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2023/Exercises/ROOTBooks/FittingExample_Solution.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2023/Exercises/ROOTBooks/GausFit.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2023/Exercises/ROOTBooks/GausFit.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2023/Exercises/ROOTBooks/GausFit_Solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2023/Exercises/ROOTBooks/GausFit_Solution.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2023/Exercises/ROOTBooks/Hgg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2023/Exercises/ROOTBooks/Hgg.txt -------------------------------------------------------------------------------- /SummerStudentCourse/2023/Exercises/ROOTBooks/HiggsBinFit.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2023/Exercises/ROOTBooks/HiggsBinFit.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2023/Exercises/ROOTBooks/graphDraw.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2023/Exercises/ROOTBooks/graphDraw.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2023/Exercises/ROOTBooks/graphDraw_Solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2023/Exercises/ROOTBooks/graphDraw_Solution.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2023/Exercises/ROOTBooks/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2023/Exercises/ROOTBooks/readme.md -------------------------------------------------------------------------------- /SummerStudentCourse/2023/Exercises/WorkingWithColumnarData/CMSDimuonMass.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2023/Exercises/WorkingWithColumnarData/CMSDimuonMass.C -------------------------------------------------------------------------------- /SummerStudentCourse/2023/Exercises/WorkingWithColumnarData/hsimple.root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2023/Exercises/WorkingWithColumnarData/hsimple.root -------------------------------------------------------------------------------- /SummerStudentCourse/2023/Exercises/WorkingWithColumnarData/hsimpleCpp.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2023/Exercises/WorkingWithColumnarData/hsimpleCpp.C -------------------------------------------------------------------------------- /SummerStudentCourse/2023/Exercises/WorkingWithColumnarData/hsimplePy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2023/Exercises/WorkingWithColumnarData/hsimplePy.py -------------------------------------------------------------------------------- /SummerStudentCourse/2023/Exercises/WorkingWithColumnarData/hsimpleTTreeDraw.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2023/Exercises/WorkingWithColumnarData/hsimpleTTreeDraw.C -------------------------------------------------------------------------------- /SummerStudentCourse/2023/Exercises/WorkingWithColumnarData/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2023/Exercises/WorkingWithColumnarData/readme.md -------------------------------------------------------------------------------- /SummerStudentCourse/2023/Exercises/WorkingWithFiles/WritingOnFilesExercise.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2023/Exercises/WorkingWithFiles/WritingOnFilesExercise.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2023/Exercises/WorkingWithFiles/WritingOnFiles_Solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2023/Exercises/WorkingWithFiles/WritingOnFiles_Solution.ipynb -------------------------------------------------------------------------------- /SummerStudentCourse/2023/Exercises/WorkingWithFiles/histos.root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2023/Exercises/WorkingWithFiles/histos.root -------------------------------------------------------------------------------- /SummerStudentCourse/2023/Exercises/WorkingWithFiles/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2023/Exercises/WorkingWithFiles/readme.md -------------------------------------------------------------------------------- /SummerStudentCourse/2023/Exercises/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2023/Exercises/readme.md -------------------------------------------------------------------------------- /SummerStudentCourse/2023/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/SummerStudentCourse/2023/readme.md -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/environment.yml -------------------------------------------------------------------------------- /old-files/AnalyzeTree.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/old-files/AnalyzeTree.C -------------------------------------------------------------------------------- /old-files/CountEventSelector.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/old-files/CountEventSelector.C -------------------------------------------------------------------------------- /old-files/CountEvents.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/old-files/CountEvents.C -------------------------------------------------------------------------------- /old-files/EventData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/old-files/EventData.h -------------------------------------------------------------------------------- /old-files/EventDataSelector.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/old-files/EventDataSelector.C -------------------------------------------------------------------------------- /old-files/EventSelector.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/old-files/EventSelector.C -------------------------------------------------------------------------------- /old-files/FullEventDataSelector.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/old-files/FullEventDataSelector.C -------------------------------------------------------------------------------- /old-files/ProofEventSelector.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/old-files/ProofEventSelector.C -------------------------------------------------------------------------------- /old-files/ProofEventSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/old-files/ProofEventSelector.h -------------------------------------------------------------------------------- /old-files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/old-files/README.md -------------------------------------------------------------------------------- /old-files/createTree.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-project/training/HEAD/old-files/createTree.C --------------------------------------------------------------------------------