]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWG2/FORWARD/analysis2/Pass1.C
Added event inspector and energy distribution fitter.
[u/mrichter/AliRoot.git] / PWG2 / FORWARD / analysis2 / Pass1.C
CommitLineData
7e4038b5 1/**
2 * Run first pass of the analysis - that is read in ESD and produce AOD
3 *
4 * @param file ESD input file
5 * @param nEvents Number of events to process
6 * @param nCutBins Number of additional bins to cut off
7 * @param correctionCut Threshold for when to use secondary map
8 *
9 * @ingroup pwg2_forward_analysis_scripts
10 */
11void
f4494b7a 12Pass1(const char* esddir=".",
7e4038b5 13 Int_t nEvents=1000,
14 Int_t nCutBins=1,
fea27ee0 15 Int_t correctionCut=0.1,
16 Int_t proof)
7e4038b5 17{
18 gROOT->LoadMacro("$ALICE_ROOT/PWG2/FORWARD/analysis2/RunManager.C");
19
f4494b7a 20 RunManager(esddir, kFALSE, nEvents, nCutBins, correctionCut, proof);
7e4038b5 21}
22//
23// EOF
24//