]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PMD/AliPMDReconstructor.cxx
Add survey measurement of Laser to the OCDB
[u/mrichter/AliRoot.git] / PMD / AliPMDReconstructor.cxx
CommitLineData
05f4fa74 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
16///////////////////////////////////////////////////////////////////////////////
17// //
18// class for PMD reconstruction //
19// //
20///////////////////////////////////////////////////////////////////////////////
21
22#include "Riostream.h"
23#include "AliPMDReconstructor.h"
05f4fa74 24#include "AliRun.h"
25#include "AliPMDClusterFinder.h"
26#include "AliPMDtracker.h"
01b56f5c 27#include "AliRawReader.h"
05f4fa74 28#include "AliESDPmdTrack.h"
af885e0f 29#include "AliESDEvent.h"
cb6ed79d 30#include "AliLog.h"
05f4fa74 31
05f4fa74 32ClassImp(AliPMDReconstructor)
33
05f4fa74 34// ------------------------------------------------------------------------ //
35
cb6ed79d 36void AliPMDReconstructor::Reconstruct(AliRawReader *rawReader,
37 TTree *clustersTree) const
05f4fa74 38{
cb6ed79d 39// reconstruct clusters from Raw Data
722ccc67 40 static AliPMDClusterFinder pmdClus;
41 pmdClus.Digits2RecPoints(rawReader, clustersTree);
cb6ed79d 42}
43
8fbad6d3 44// ------------------------------------------------------------------------ //
45void AliPMDReconstructor::Reconstruct(TTree *digitsTree,
46 TTree *clustersTree) const
47{
48// reconstruct clusters from Raw Data
49
722ccc67 50 static AliPMDClusterFinder pmdClus;
8fbad6d3 51 pmdClus.Digits2RecPoints(digitsTree, clustersTree);
52
53}
54
cb6ed79d 55// ------------------------------------------------------------------------ //
56void AliPMDReconstructor::FillESD(AliRawReader* /*rawReader*/,
af885e0f 57 TTree* clustersTree, AliESDEvent* esd) const
cb6ed79d 58{
722ccc67 59 static AliPMDtracker pmdtracker;
60 pmdtracker.LoadClusters(clustersTree);
61 pmdtracker.Clusters2Tracks(esd);
05f4fa74 62}
8fbad6d3 63// ------------------------------------------------------------------------ //
64void AliPMDReconstructor::FillESD(TTree * /*digitsTree*/,
af885e0f 65 TTree* clustersTree, AliESDEvent* esd) const
8fbad6d3 66{
722ccc67 67 static AliPMDtracker pmdtracker;
68 pmdtracker.LoadClusters(clustersTree);
69 pmdtracker.Clusters2Tracks(esd);
8fbad6d3 70}
cb6ed79d 71
72