<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://epp.hanyang.ac.kr/dokuwiki/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="https://epp.hanyang.ac.kr/dokuwiki/feed.php">
        <title>Elementary Particle Physics - Hanyang University - tutorial</title>
        <description></description>
        <link>https://epp.hanyang.ac.kr/dokuwiki/</link>
        <image rdf:resource="https://epp.hanyang.ac.kr/dokuwiki/lib/exe/fetch.php?media=wiki:dokuwiki.svg" />
       <dc:date>2026-05-14T17:55:05+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://epp.hanyang.ac.kr/dokuwiki/doku.php?id=tutorial:linux&amp;rev=1678077875&amp;do=diff"/>
                <rdf:li rdf:resource="https://epp.hanyang.ac.kr/dokuwiki/doku.php?id=tutorial:madgraph&amp;rev=1678077875&amp;do=diff"/>
                <rdf:li rdf:resource="https://epp.hanyang.ac.kr/dokuwiki/doku.php?id=tutorial:procpy&amp;rev=1678077875&amp;do=diff"/>
                <rdf:li rdf:resource="https://epp.hanyang.ac.kr/dokuwiki/doku.php?id=tutorial:progcpp&amp;rev=1678077875&amp;do=diff"/>
                <rdf:li rdf:resource="https://epp.hanyang.ac.kr/dokuwiki/doku.php?id=tutorial:pythia&amp;rev=1678077875&amp;do=diff"/>
                <rdf:li rdf:resource="https://epp.hanyang.ac.kr/dokuwiki/doku.php?id=tutorial:rootcommand&amp;rev=1678077875&amp;do=diff"/>
                <rdf:li rdf:resource="https://epp.hanyang.ac.kr/dokuwiki/doku.php?id=tutorial:rootinstall&amp;rev=1678077875&amp;do=diff"/>
                <rdf:li rdf:resource="https://epp.hanyang.ac.kr/dokuwiki/doku.php?id=tutorial:server&amp;rev=1678077875&amp;do=diff"/>
                <rdf:li rdf:resource="https://epp.hanyang.ac.kr/dokuwiki/doku.php?id=tutorial:sightseeing&amp;rev=1678077875&amp;do=diff"/>
                <rdf:li rdf:resource="https://epp.hanyang.ac.kr/dokuwiki/doku.php?id=tutorial:start&amp;rev=1678077875&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://epp.hanyang.ac.kr/dokuwiki/lib/exe/fetch.php?media=wiki:dokuwiki.svg">
        <title>Elementary Particle Physics - Hanyang University</title>
        <link>https://epp.hanyang.ac.kr/dokuwiki/</link>
        <url>https://epp.hanyang.ac.kr/dokuwiki/lib/exe/fetch.php?media=wiki:dokuwiki.svg</url>
    </image>
    <item rdf:about="https://epp.hanyang.ac.kr/dokuwiki/doku.php?id=tutorial:linux&amp;rev=1678077875&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2023-03-06T04:44:35+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>linux</title>
        <link>https://epp.hanyang.ac.kr/dokuwiki/doku.php?id=tutorial:linux&amp;rev=1678077875&amp;do=diff</link>
        <description>Linux

입자물리실험을 위해서는 먼저 본인의 컴퓨터에 리눅스 환경을 구성해야 한다.
기본적으로 htop cluster의 본인 계정을 이용해 이러한 환경에 접속할 수 있지만 인터넷이 되지 않는 경우 혹은 htop cluster의 계정이 없는 경우 본인 컴퓨터에 리눅스 환경을 구성해 놓아야 한다.</description>
    </item>
    <item rdf:about="https://epp.hanyang.ac.kr/dokuwiki/doku.php?id=tutorial:madgraph&amp;rev=1678077875&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2023-03-06T04:44:35+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>madgraph</title>
        <link>https://epp.hanyang.ac.kr/dokuwiki/doku.php?id=tutorial:madgraph&amp;rev=1678077875&amp;do=diff</link>
        <description>Install Madgraph
Note: There can be troubles in compiling/library linking/etc at the runtime.
Initial setup - install MG5 from launchpad


mkdir -p ~/work/MG5
cd ~/work/MG5
wget https://launchpad.net/mg5amcnlo/2.0/2.6.x/+download/MG5_aMC_v2.6.4.tar.gz
tar xzf MG5_aMC_v2.6.4.tar.gz</description>
    </item>
    <item rdf:about="https://epp.hanyang.ac.kr/dokuwiki/doku.php?id=tutorial:procpy&amp;rev=1678077875&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2023-03-06T04:44:35+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>procpy</title>
        <link>https://epp.hanyang.ac.kr/dokuwiki/doku.php?id=tutorial:procpy&amp;rev=1678077875&amp;do=diff</link>
        <description>Python

참고도서: 처음 시작하는 파이썬

Python 시작하기

1. Python 환경을 구성해보자!

Linux 운영체제를 설치하면 기본적으로 python 2,3 모두 설치되어 있다. 확인하는 방법은 다음과 같다.


python --version #python 2의 버전 확인
which python #python 2가 설치되어 있는 경로 확인
python3 --version #python 3의 버전 확인
which python3 #python 3이 설치되어 있는 경로 확인</description>
    </item>
    <item rdf:about="https://epp.hanyang.ac.kr/dokuwiki/doku.php?id=tutorial:progcpp&amp;rev=1678077875&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2023-03-06T04:44:35+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>progcpp</title>
        <link>https://epp.hanyang.ac.kr/dokuwiki/doku.php?id=tutorial:progcpp&amp;rev=1678077875&amp;do=diff</link>
        <description>C++

참고도서: 명품 C++ Programming

C언어 기초가 없는 학생들은 Walter Savitch의 “객체지향 원리로 이해하는 Absolute C++“을 추천

그냥 열혈강의C (윤성우의 열혈 C 프로그래밍) 부터 보자</description>
    </item>
    <item rdf:about="https://epp.hanyang.ac.kr/dokuwiki/doku.php?id=tutorial:pythia&amp;rev=1678077875&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2023-03-06T04:44:35+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>pythia</title>
        <link>https://epp.hanyang.ac.kr/dokuwiki/doku.php?id=tutorial:pythia&amp;rev=1678077875&amp;do=diff</link>
        <description>Event Generation Using Pythia

Madgraph를 이용해 대부분의 이벤트를 만들 수 있지만, 가끔 복잡한 경우가 있다. (예를 들어 VV: WW, WZ, ZZ) 특수한 경우 Pythia8에서 자체적으로 decay mode를 제공하여 편리하게 이벤트를 만들 수 있다. VV의 경우</description>
    </item>
    <item rdf:about="https://epp.hanyang.ac.kr/dokuwiki/doku.php?id=tutorial:rootcommand&amp;rev=1678077875&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2023-03-06T04:44:35+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>rootcommand</title>
        <link>https://epp.hanyang.ac.kr/dokuwiki/doku.php?id=tutorial:rootcommand&amp;rev=1678077875&amp;do=diff</link>
        <description>Useful Commands for Analysis

shell에서 바로 입력하여 사용하는 몇 가지 도움되는 명령어들을 정리해보았다. (계속 업데이트 예정)

기본 명령어들

file.root가, 

folder (TDirectory) 

-tree (TTree) 

--branch1</description>
    </item>
    <item rdf:about="https://epp.hanyang.ac.kr/dokuwiki/doku.php?id=tutorial:rootinstall&amp;rev=1678077875&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2023-03-06T04:44:35+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>rootinstall</title>
        <link>https://epp.hanyang.ac.kr/dokuwiki/doku.php?id=tutorial:rootinstall&amp;rev=1678077875&amp;do=diff</link>
        <description>Installing ROOT

ROOT6을 설치하는 방법에 대해 알아본다. 우선 ROOT 공식 홈페이지에 접속하여 다운받고자하는 버전의 페이지로 이동한다.
특별한 이유가 없다면 Binary file을 이용해 설치하는것을 권장한다.</description>
    </item>
    <item rdf:about="https://epp.hanyang.ac.kr/dokuwiki/doku.php?id=tutorial:server&amp;rev=1678077875&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2023-03-06T04:44:35+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>server</title>
        <link>https://epp.hanyang.ac.kr/dokuwiki/doku.php?id=tutorial:server&amp;rev=1678077875&amp;do=diff</link>
        <description>Server (htop)</description>
    </item>
    <item rdf:about="https://epp.hanyang.ac.kr/dokuwiki/doku.php?id=tutorial:sightseeing&amp;rev=1678077875&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2023-03-06T04:44:35+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>sightseeing</title>
        <link>https://epp.hanyang.ac.kr/dokuwiki/doku.php?id=tutorial:sightseeing&amp;rev=1678077875&amp;do=diff</link>
        <description>Sightseeing

이 장에서는 CERN에 체류하면서 가볼만한 곳들에 대한 정보를 모았다. 음식점은 오래돼서 영업상태에 변화가 있을 수 있으니 다시 확인 바람.

Geneva

제네바 관광은 CERN에서 트램이나 버스를 타고 나갈 수 있다.</description>
    </item>
    <item rdf:about="https://epp.hanyang.ac.kr/dokuwiki/doku.php?id=tutorial:start&amp;rev=1678077875&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2023-03-06T04:44:35+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>start</title>
        <link>https://epp.hanyang.ac.kr/dokuwiki/doku.php?id=tutorial:start&amp;rev=1678077875&amp;do=diff</link>
        <description>Start Page: Tutorials for Newcomers

Under Construction

Linux and Server

	*  Linux
	*  Server

C++ and Python

	*  C++
	*  Python

ROOT

	*  Install
	*  Useful Commands

Event Generator

	*  Madgraph
	*  Pythia8
	*  Delphes

Machine Learning

CERN Registration and Certificates

KISTI and Grid Computing</description>
    </item>
</rdf:RDF>
