]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONClusterReconstructor.h
Fixing bug in setting scaler events for trigger
[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$*/
30178c30 7// Revision of includes 07/05/2004
c0301ce3 8
692de412 9/// \ingroup rec
10/// \class AliMUONClusterReconstructor
11/// \brief MUON cluster reconstructor in ALICE
30178c30 12
13#include <TObject.h>
c0301ce3 14
dd20215d 15class AliMUONClusterFinderVS;
c0301ce3 16class AliMUONData;
dd20215d 17class TClonesArray;
c0301ce3 18
30178c30 19class AliMUONClusterReconstructor : public TObject
20{
c0301ce3 21 public:
dd20215d 22 AliMUONClusterReconstructor(AliMUONData* data = 0x0); // Constructor
c0301ce3 23 virtual ~AliMUONClusterReconstructor(void); // Destructor
c0301ce3 24
5ac16716 25
c0301ce3 26 // Cluster Finding & Trigger
cc87ebcd 27 virtual void Digits2Clusters(Int_t chBeg = 0);
7e4a628d 28 virtual void Trigger2Trigger() ;
c0301ce3 29
dd20215d 30// // pointer to data container
31// AliMUONData* GetMUONData() {return fMUONData;}
7e4a628d 32 // Reco Model
33 AliMUONClusterFinderVS* GetRecoModel() {return fRecModel;}
7e4a628d 34
dd20215d 35 void SetRecoModel(AliMUONClusterFinderVS* rec);
c0301ce3 36
37 protected:
30178c30 38 AliMUONClusterReconstructor (const AliMUONClusterReconstructor& rhs); // copy constructor
39 AliMUONClusterReconstructor& operator=(const AliMUONClusterReconstructor& rhs); // assignment operator
c0301ce3 40
dd20215d 41 void ClusterizeOneDE(Int_t detElemId);
42
c0301ce3 43 private:
44
829425a5 45 AliMUONData* fMUONData; //!< Data container for MUON subsystem
46 AliMUONClusterFinderVS* fRecModel; //!< cluster recontruction model
c0301ce3 47
829425a5 48 TClonesArray* fDigitsCath0; //!< digits for cathode 0 of the current DE
49 TClonesArray* fDigitsCath1; //!< digits for cathode 1 of the current DE
dd20215d 50
c0301ce3 51 ClassDef(AliMUONClusterReconstructor,0) // MUON cluster reconstructor in ALICE
52};
53
54#endif