]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/TPCLib/macros/rec-tpc-krypton-hist.C
After playing, Andrew needs to cleanup :-)
[u/mrichter/AliRoot.git] / HLT / TPCLib / macros / rec-tpc-krypton-hist.C
1 // $Id$
2 /**
3 This is only temporary and will be nicer for the user, I just dont have time just now.
4
5 To run this: aliroot -b -q rec-tpc-krypton-hist.C
6 You will have to change the directory for the two clusterdumps. and it have to exist!
7
8 You will have to start it in the directory where the raw folders are, and you will also need the Kinematics.root and galice.root at the moment.
9
10 It does:
11 AliRawReaderPublisher
12 KryptonClusterFinder1 (input: altro data fra AliRawReaderPublisher)
13 ClusterDump(input: KryptonClusterFinder1)
14 AltroSelectionComponent(input: altro data fra AliRawReaderPublisher og liste med hardware addresser fra KryptonClusterFinderen )
15 KryptonClusterFinder2(input: altrodata fra AltroSelectionComponent)
16 ClusterDump(input: KryptonClusterFinder2)
17 ClusterHisto(input: KryptonClusterFinder)
18 HistogramHandler(input: ClusterHisto) 
19
20
21 Sorry that it is not nicer, it will be soon.
22
23 Kenneth
24
25  */
26 {
27   AliReconstruction rec;
28   //rec.SetInput("zeroSup/");
29   rec.SetInput("raw0/");
30   //rec.SetInput("../noiseComp/file.root");
31   //rec.SetInput("./");
32   //rec.SetInput("/scratch/peter/07000015067011.10.root");
33   rec.SetRunVertexFinder(kFALSE);
34   rec.SetRunLocalReconstruction("HLT");
35   rec.SetRunReconstruction("");
36   rec.SetRunTracking("");
37   rec.SetLoadAlignFromCDB(0);
38   rec.SetFillTriggerESD(kFALSE);
39   rec.SetFillESD("HLT");
40   rec.SetOption("HLT", "libAliHLTTPC.so  loglevel=0x7c config=$ALICE_ROOT/HLT/TPCLib/macros/conf-tpc-krypton-hist.C chains=sink1");
41   rec.Run();
42 }