Go to the source code of this file.
Definition at line 3 of file eventDisplayMvdTpc.C.
References fMan, fRun, MCFile, RecoFile, Track, and TString.
6 gROOT->Macro(
"$VMCWORKDIR/gconfig/rootlogon.C");
9 gROOT->Macro(
"$VMCWORKDIR/gconfig/rootlogon.C");
32 gSystem->Load(
"libEve");
33 gSystem->Load(
"libEventDisplay");
34 gSystem->Load(
"libGeom");
37 CbmRunAna *
fRun=
new CbmRunAna();
39 TString MCFile =
"/home/stockman/fairroot/cbmsoft/pandaroot/macro/data/MvdTpc_D+D-_2Disks/Combined.mc.root";
40 TString RecoFile =
"/home/stockman/fairroot/cbmsoft/pandaroot/macro/data/MvdTpc_D+D-_2Disks/digiMVD/recoMVD/Combined.reco.root";
41 TString RecoFileTPC =
"/home/stockman/fairroot/cbmsoft/pandaroot/macro/data/MvdTpc_D+D-_2Disks/digiTPC/recoTPC/mergeTPC/Combined.merged.root";
42 TString TFindFile =
"/home/stockman/fairroot/cbmsoft/pandaroot/macro/data/MvdTpc_D+D-_2Disks/digiMVD/recoMVD/riemannMVD/Combined.riemann.root";
43 TString TFindFileComb =
"/home/stockman/fairroot/cbmsoft/pandaroot/macro/data/MvdTpc_D+D-_2Disks/digiMVD/recoMVD/riemannMVD/combinedmergedMVDTPC/Combined.combined.root";
49 fRun->SetInputFile(MCFile.Data());
50 fRun->AddFriend(RecoFile.Data());
51 fRun->AddFriend(RecoFileTPC.Data());
52 fRun->AddFriend(TFindFile.Data());
53 fRun->AddFriend(TFindFileComb.Data());
56 fRun->SetOutputFile(
"test.root");
59 FairEventManager *
fMan=
new FairEventManager();
60 FairMCTracks *
Track =
new FairMCTracks (
"Monte-Carlo Tracks");
61 FairMCPointDraw *MvdMCPoints =
new FairMCPointDraw (
"MVDPoint", 1,7);
62 FairRecoPointDraw *MvdRecoPoints =
new FairRecoPointDraw (
"MVDHitsPixel",3);
63 FairRecoPointDraw *MvdStripRecoPoints =
new FairRecoPointDraw(
"MVDHitsStrip",3);
64 FairTPCRecoPointDraw *TPCRecoPoints =
new FairTPCRecoPointDraw(
"PndTpcClusterMerged",3);
65 FairTrackCandDraw* MvdTrackCand =
new FairTrackCandDraw(
"MVDRiemannTrackCand", 3);
66 FairTrackCandDraw* CombinedTrackCand =
new FairTrackCandDraw(
"MVD_TPC_CombinedRiemannTrack", 3);
73 FairMCPointDraw *PndTpcPoint =
new FairMCPointDraw (
"PndTpcPoint",2,7);
79 fMan->AddTask(MvdMCPoints);
80 fMan->AddTask(MvdRecoPoints);
81 fMan->AddTask(MvdStripRecoPoints);
82 fMan->AddTask(TPCRecoPoints);
83 fMan->AddTask(MvdTrackCand);
84 fMan->AddTask(CombinedTrackCand);
91 fMan->AddTask( PndTpcPoint);
96 gStyle->SetPalette(1);