10 gROOT->LoadMacro(
"$VMCWORKDIR/gconfig/basiclibs.C");
14 gSystem->Load(
"libGeoBase");
15 gSystem->Load(
"libParBase");
16 gSystem->Load(
"libBase");
17 gSystem->Load(
"libField");
21 gROOT->Macro(
"$VMCWORKDIR/gconfig/rootlogon.C");
22 gROOT->SetStyle(
"Plain");
23 gStyle->SetMarkerStyle(20);
24 gStyle->SetOptStat(0);
25 gStyle->SetPalette(1);
32 TString SimFile =
"sim_complete.root";
43 const Int_t ResolutionX = 800, ResolutionY = 600;
55 TFile* fReco =
new TFile(RecoFile.Data());
56 TTree* tReco = (TTree*) (fReco->Get(
"pndsim"));
61 tReco->SetBranchAddress(
"FTSHit", &fHoughSpace);
65 for (Int_t iEvent=0; iEvent<
nEvents; ++iEvent)
67 cout <<
"processing event " << iEvent <<
"\n";
68 tReco->GetEntry(iEvent);
75 TCanvas *choughspaceLine =
new TCanvas(
"choughspaceLine",
"choughspaceLine",
76 ResolutionX, ResolutionY);
77 fHoughSpace->DrawCopy(
"Lego2z");
Class for Hough space based on TH2S (for the moment). Saves the hits which enter this Hough space and...