3 gSystem->Load(
"libEve");
4 gSystem->Load(
"libEventDisplay");
8 FairRunAna *
fRun=
new FairRunAna();
9 fRun->SetInputFile(
"simlut.root");
10 TString digifile =
"digilut.root";
11 fRun->AddFriend(digifile);
12 fRun->SetOutputFile(
"tst.root");
14 FairRuntimeDb*
rtdb = fRun->GetRuntimeDb();
15 FairParRootFileIo*
parInput1 =
new FairParRootFileIo();
16 parInput1->open(
"parlut.root");
17 rtdb->setFirstInput(parInput1);
19 FairEventManager *
fMan=
new FairEventManager();
20 FairMCTracks *
Track =
new FairMCTracks (
"Monte-Carlo Tracks");
21 FairMCPointDraw *PndBarPoint =
new FairMCPointDraw (
"DrcBarPoint",kViolet, kFullSquare);
22 FairMCPointDraw *PndPdPoint =
new FairMCPointDraw (
"DrcPDPoint",kBlue, kFullSquare);
26 fMan->AddTask(PndBarPoint);
27 fMan->AddTask(PndPdPoint);
28 fMan->AddTask(PndAccuDigi);
FairParRootFileIo * parInput1