Skip to content
Snippets Groups Projects
Commit a332b518 authored by Oleksii Lubynets's avatar Oleksii Lubynets
Browse files

add macro

parent fca76950
No related branches found
No related tags found
1 merge request!85Analysis tree kfpf interface
void run_at_kfpf(const std::string& ATFile,
int nEntries = -1,
const std::string& ATTree = "aTree")
{
ATKFParticleFinder man;
man.InitInput(ATFile.c_str(), ATTree.c_str());
man.InitOutput("KFPF.pwgc2f.root");
man.SetPIDMode(1);
CutsContainer cuts;
cuts.SetCutChi2Prim(18.4207);
cuts.SetCutDistance(1.);
cuts.SetCutChi2Geo(3.);
cuts.SetCutLdL(5.);
man.SetCuts(cuts);
man.Run(nEntries);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment