ROOT/기초: 두 판 사이의 차이

이삭위키
둘러보기로 이동 검색으로 이동
편집 요약 없음
편집 요약 없음
1번째 줄: 1번째 줄:
{{상위 문서|ROOT}}
{{상위 문서|ROOT}}
== 프로그램 실행하기 ==
=== 인터프리터 실행 ===
<syntaxhighlight lang="shell-session">
$ root
</syntaxhighlight>
=== 매크로파일 실행 ===
<syntaxhighlight lang="shell-session">
$ root macro.C
$ root macro.cpp
$ root macro.cxx
$ root macro.cc
</syntaxhighlight><syntaxhighlight lang="c++">
void macro(){
    //Something funtioning components
}
</syntaxhighlight>
== TGraph : 그래프 그리기 ==
<syntaxhighlight lang="c++">
void tuto0(){
    TGraph * g1 = new TGraph();
    g1->Draw();
}
</syntaxhighlight>
== TCanvas : 캔버스 그리기 ==
<syntaxhighlight lang="c++">
void tuto1(){
    TCanvas * c1 = new TCanvas("c1", "c1", 1200, 1200);
}
</syntaxhighlight>
[[분류:작성중]]
[[분류:작성중]]

2023년 2월 24일 (금) 22:01 판

상위 문서: ROOT


프로그램 실행하기

인터프리터 실행

$ root

매크로파일 실행

$ root macro.C
$ root macro.cpp
$ root macro.cxx
$ root macro.cc
void macro(){
    //Something funtioning components
}

TGraph : 그래프 그리기

void tuto0(){
    TGraph * g1 = new TGraph();
    g1->Draw();
}

TCanvas : 캔버스 그리기

void tuto1(){
    TCanvas * c1 = new TCanvas("c1", "c1", 1200, 1200);
}