]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONClusterReconstructor.h
Compiler warning removed
[u/mrichter/AliRoot.git] / MUON / AliMUONClusterReconstructor.h
CommitLineData
c0301ce3 1#ifndef ALIMUONCLUSTERRECONSTRUCTOR_H
2#define ALIMUONCLUSTERRECONSTRUCTOR_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// MUON event reconstructor in ALICE
10////////////////////////////////////
11#include "TObjArray.h"
12#include "AliDetector.h"
13
14class AliLoader;
15class AliMUON;
16class AliMUONChamber;
17class AliMUONRawCluster;
18class AliMUONClusterFinderVS;
19class AliMUONData;
20
21
22class AliMUONClusterReconstructor : public TObject {
23
24 public:
25 AliMUONClusterReconstructor(AliLoader* ); // Constructor
26 virtual ~AliMUONClusterReconstructor(void); // Destructor
27 AliMUONClusterReconstructor (const AliMUONClusterReconstructor& ); // copy constructor
28 AliMUONClusterReconstructor& operator=(const AliMUONClusterReconstructor& ); // assignment operator
29
30 // Interface with AliMUONData
31 virtual void SetTreeAddress(){};
32
33 // Cluster Finding & Trigger
34 virtual void Digits2Clusters();
35
36
37 // void EventDump(void); // dump reconstructed event
38
39 // Set Reconstruction Model
40 virtual void SetReconstructionModel(Int_t id, AliMUONClusterFinderVS* );
41
42 AliMUONData* GetMUONData() {return fMUONData;}
43
44 Int_t GetPrintLevel(void) const {return fPrintLevel;}
45 void SetPrintLevel(Int_t PrintLevel) {fPrintLevel = PrintLevel;}
46
47 protected:
48
49 private:
50
51 Int_t fNCh; // Number of chambers
52 Int_t fNTrackingCh; // Number of tracking chambers*
53 AliMUONData* fMUONData; //! Data container for MUON subsystem
54 AliMUON* fMUON; //! pointer to MUON
55 TObjArray* fChambers; //! List of Tracking Chambers
56
57 // print level
58 Int_t fPrintLevel;
59
60 // debug
61 Int_t fDebug;
62
63 // alice loader
64 AliLoader* fLoader;
65
66
67 ClassDef(AliMUONClusterReconstructor,0) // MUON cluster reconstructor in ALICE
68};
69
70#endif