1 /**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
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 **************************************************************************/
16 //_________________________________________________________________________
17 // Macros performing the full reconstruction chain starting from Digits
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
24 // author : Yves Schutz (CERN/SUBATECH)
26 //_________________________________________________________________________
28 #include "AliReconstruction.h"
30 #include "Riostream.h"
31 #include "TStopwatch.h"
32 #include "AliTPCReconstructor.h"
34 void reco(TString opt="TVRE", TString name="all", TString cdb="")
36 AliReconstruction rec ;
37 rec.SetUniformFieldTracking(kFALSE);
38 rec.SetWriteESDfriend();
39 rec.SetWriteAlignmentData();
40 if ( name.Contains("TPC") ) {
41 AliTPCReconstructor::SetCtgRange(2.); // for pp events
42 AliTPCReconstructor::SetStreamLevel(1);
45 rec.SetDefaultStorage(cdb.Data() ) ;
47 if ( opt.Contains("W") )
48 rec.SetInput("raw.root");
50 if ( !opt.Contains("T") )
51 rec.SetRunTracking("") ;
53 rec.SetRunTracking(name.Data()) ;
55 if ( !opt.Contains("V") )
56 rec.SetRunVertexFinder(kFALSE) ;
58 if ( opt.Contains("R") )
59 rec.SetRunLocalReconstruction(name.Data()) ;
61 rec.SetRunLocalReconstruction("") ;
63 if ( !opt.Contains("E") )
66 rec.SetFillESD(name.Data()) ;