FairRoot/PandaRoot
Functions
fwdhoughtracking.C File Reference

Go to the source code of this file.

Functions

int fwdhoughtracking (Int_t nEvents=0)
 

Function Documentation

int fwdhoughtracking ( Int_t  nEvents = 0)

Definition at line 4 of file fwdhoughtracking.C.

References PndMasterRunAna::AddFriend(), PndMasterRunAna::Finish(), fRun, nEvents, output, PndMasterRunAna::SetInput(), PndMasterRunAna::SetOutput(), PndMasterRunAna::SetParamAsciiFile(), PndMasterRunAna::Setup(), trackFts, and TString.

5 {
6  //-----User Settings:------------------------------------------------------
7  TString parAsciiFile = "all.par";
8  TString prefix = "evtcomplete";
9  TString input = "psi2s_Jpsi2pi_Jpsi_mumu.dec";
10  TString output = "fwdhoughtracking";
11  TString friend1 = "sim";
12  TString friend2 = "digi";
13  TString friend3 = "";
14  TString friend4 = "";
15  TString fOptions = "";
16 
17  // ----- Initial Settings --------------------------------------------
19  fRun->SetInput(input);
20  fRun->SetOutput(output);
21  fRun->AddFriend(friend1);
22  fRun->AddFriend(friend2);
23  fRun->AddFriend(friend3);
24  fRun->AddFriend(friend4);
25  fRun->SetParamAsciiFile(parAsciiFile);
26  fRun->Setup(prefix);
27 
29  fRun->AddTask(trackFts);
30 
31  // ----- Intialise and run --------------------------------------------
32  fRun->Init();
33  fRun->Run(0, nEvents);
34  fRun->Finish();
35  return 0;
36 }
Class for the master reconstruction chain.
Interface between PandaRoot (data input and output) and PndFtsHoughTrackFinder (implementation of PR ...
Bool_t Setup(TString outprefix="")
Initial setup.
void AddFriend(TString par)
Setter of friend root files.
FairParRootFileIo * output
Definition: sim_emc_apd.C:120
FairRunAna * fRun
Definition: hit_dirc.C:58
void SetInput(TString par)
Input of the macro.
Int_t nEvents
Definition: hit_dirc.C:11
PndFtsTrackerIdeal * trackFts
void Finish()
Final diagnostics.
void SetOutput(TString par)
Tag of the output file of the macro.
void SetParamAsciiFile(TString par)
Setter of the parameter ascii file.