Go to the source code of this file.
      
        
          | void eventdisplay | ( | TString | storePath = "/panda/pandaroot/macro/lmd/testPixelNewGeo/mom_15/" | ) |  | 
      
 
Draw everything -------------------------------—— 
Definition at line 1 of file detectors/lmd/eventdisplay.C.
References fMan, fRun, gGeoManager, inSimuFile, MvdPoints, outFile, parFile, parInput1, recoFile, rtdb, storePath, Track, and TString.
    3   gROOT->Macro(
"$VMCWORKDIR/gconfig/rootlogon.C");
 
    4   gSystem->Load(
"libEve");
 
    5   gSystem->Load(
"libEventDisplay");
 
    6   gSystem->Load(
"libPndEventDisplay");
 
    7   gSystem->Load(
"libSds");
 
    8   gSystem->Load(
"libLmd");
 
   21   FairRunAna *
fRun= 
new FairRunAna();
 
   22   fRun->SetInputFile(inSimuFile.Data());
 
   23   fRun->AddFriend(recoFile.Data());
 
   24   fRun->AddFriend(trackingCandFile.Data());
 
   25   fRun->AddFriend(trackingFile.Data());
 
   27   fRun->SetOutputFile(outFile.Data());
 
   29   FairRuntimeDb* 
rtdb = fRun->GetRuntimeDb();
 
   30   FairParRootFileIo* 
parInput1 = 
new FairParRootFileIo();
 
   31   parInput1->open(parFile.Data());
 
   32   rtdb->setFirstInput(parInput1);
 
   34   FairEventManager *
fMan= 
new FairEventManager();
 
   36   FairMCTracks *
Track =  
new FairMCTracks (
"GeoTracks");
 
   38   FairMCPointDraw *
MvdPoints =   
new FairMCPointDraw (
"LMDPoint",kBlue,kFullSquare);
 
   39   fMan->AddTask(MvdPoints);
 
   40   FairHitDraw *stripHits = 
new FairHitDraw(
"LMDHitsPixel");
 
   41   fMan->AddTask(stripHits);
 
   54   TEveGeoTopNode *TNod=
new  TEveGeoTopNode(
gGeoManager, N);
 
   57   TNod->SetVisLevel(20);
 
   58   gEve->AddGlobalElement(TNod);
 
   59   gEve->FullRedraw3D(kTRUE);
 
TGeoManager * gGeoManager
FairMCPointDraw * MvdPoints
FairParRootFileIo * parInput1