]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EMCAL/AliEMCALReconstructor.h
Extracting PHOS and EMCAL trackers from the correspondig reconstructors (Yu.Belikov)
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALReconstructor.h
CommitLineData
f6019cda 1#ifndef ALIEMCALRECONSTRUCTOR_H
2#define ALIEMCALRECONSTRUCTOR_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/* $Id$ */
7
8//_________________________________________________________________________
9// Wrapping class for reconstruction
10//*--
11//*-- Author: Yves Schutz (SUBATECH)
12//*-- Dmitri Peressounko (SUBATECH & Kurchatov Institute)
13
14
15// --- ROOT system ---
16
17#include "AliReconstructor.h"
18class AliEMCALDigitizer ;
19class AliEMCALClusterizer ;
20class AliEMCALPID ;
21class AliEMCALSDigitizer ;
22class AliESD ;
a68156e6 23class AliRawReaderFile ;
f6019cda 24
25// --- Standard library ---
26
27// --- AliRoot header files ---
28
29class AliEMCALReconstructor : public AliReconstructor {
30
31public:
32
33 AliEMCALReconstructor() ; //ctor
34 AliEMCALReconstructor(const AliEMCALReconstructor & rec) : AliReconstructor(rec) {
35 // cpy ctor:
36 // requested by the Coding Convention
37 Fatal("cpy ctor", "not implemented") ;
38 }
39
40 virtual ~AliEMCALReconstructor() ; //dtor
41
42 Bool_t Debug() const { return fDebug ; }
23904d16 43 AliTracker *CreateTracker(AliRunLoader* runLoader) const;
44 virtual void FillESD(AliRunLoader* runLoader, AliESD* esd) const ;
f6019cda 45 virtual void Reconstruct(AliRunLoader* runLoader) const ;
a68156e6 46 virtual void Reconstruct(AliRunLoader* runLoader, AliRawReaderFile * rawreader) const ;
47
f6019cda 48
49 AliEMCALReconstructor & operator = (const AliEMCALReconstructor & /*rvalue*/) {
50 // assignement operator requested by coding convention but not needed
51 Fatal("operator =", "not implemented") ;
52 return *this ;
53 }
54
55
56private:
57
58 Bool_t fDebug; //! verbosity controller
59
60 ClassDef(AliEMCALReconstructor,1) // Reconstruction algorithm class (Base Class)
61
62};
63
64#endif // ALIEMCALRECONSTRUCTOR_H