]> git.uio.no Git - u/mrichter/AliRoot.git/blame - macros/DrawTRD.C
New TTask based method to do Digits To clusters. Works with files of multiple
[u/mrichter/AliRoot.git] / macros / DrawTRD.C
CommitLineData
4e47b882 1void DrawTRD()
fe4da5cc 2{
3 gMC->Gsatt("*", "seen", -1);
4 gMC->Gsatt("alic", "seen", 0);
4e47b882 5 gROOT->LoadMacro("ViewTRD.C");
6 gInterpreter->ProcessLine("ViewTRD()");
fe4da5cc 7 gMC->Gdopt("hide", "on");
8 gMC->Gdopt("shad", "on");
9 gMC->Gsatt("*", "fill", 7);
10 gMC->SetClipBox(".");
11 gMC->SetClipBox("*", 0, 2000, -2000, 2000, -2000, 2000);
12 gMC->DefaultRange();
13 gMC->Gdraw("alic", 40, 30, 0, 12, 9.4, .021, .021);
14 gMC->Gdhead(1111, "Transition Radiation Detector");
15 gMC->Gdman(18, 4, "MAN");
16}