]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/Reconstruction.C
Implementation of ITS tracking for HLT. The tracking is based on the off-line AliITSt...
[u/mrichter/AliRoot.git] / PHOS / Reconstruction.C
CommitLineData
12391a12 1/**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3 * *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
6 * *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
15/* $Id$ */
16//_________________________________________________________________________
17// Macros performing the full reconstruction chain starting from Digits
18// Use Case :
19// root> .L Reconstruction.C++
20// root> rec("RE", "PHOS EMCAL") --> does the reconstruction for
21// PHOS and EMCAL and stores the
22// reconstructed particles in
23// AliESDs.root
24// author : Yves Schutz (CERN/SUBATECH)
25// February 2004
26//_________________________________________________________________________
27
baf5b427 28#include "AliReconstruction.h"
29#include "TString.h"
30#include "Riostream.h"
31#include "AliPHOSGetter.h"
32#include "AliEMCALGetter.h"
33
23c75532 34void reco(TString opt="TVRE", TString name="all", Bool_t debug="kFALSE")
baf5b427 35{
36 AliReconstruction rec ;
23c75532 37 if ( !opt.Contains("T") )
dde267bf 38 rec.SetRunTracking("") ;
39 else
40 rec.SetRunTracking(name.Data()) ;
41
23c75532 42 if ( !opt.Contains("V") )
a90d1169 43 rec.SetRunVertexFinder(kFALSE) ;
a90d1169 44
baf5b427 45 if ( opt.Contains("R") )
efa45d5c 46 rec.SetRunLocalReconstruction(name.Data()) ;
4f36a998 47 else
efa45d5c 48 rec.SetRunLocalReconstruction("") ;
a90d1169 49
baf5b427 50 if ( !opt.Contains("E") )
51 rec.SetFillESD("") ;
52 else
53 rec.SetFillESD(name.Data()) ;
a90d1169 54
baf5b427 55 rec.Run() ;
baf5b427 56}