]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONReconstructor.h
Changing a default argument in the standard constructor (M. Van Leeuwen)
[u/mrichter/AliRoot.git] / MUON / AliMUONReconstructor.h
CommitLineData
cac2eb58 1#ifndef ALIMUONRECONSTRUCTOR_H
2#define ALIMUONRECONSTRUCTOR_H
22899106 3
cac2eb58 4/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
22899106 5* See cxx source for full Copyright notice */
cac2eb58 6
22899106 7// $Id$
cac2eb58 8
692de412 9/// \ingroup rec
10/// \class AliMUONReconstructor
22899106 11/// \brief Implementation of AliReconstructor for MUON (both tracker and trigger)
12///
13// Author Laurent Aphecetche, Subatech
692de412 14
22899106 15#ifndef ALIRECONSTRUCTOR_H
16# include "AliReconstructor.h"
17#endif
cac2eb58 18
9ec6a948 19class AliMUONCalibrationData;
20class AliMUONDigitCalibrator;
2cf44ef3 21class AliMUONDigitMaker;
9c4b1ee7 22class AliMUONGeometryTransformer;
9ec6a948 23class AliMUONTracker;
24class AliMUONTriggerCircuit;
c5ce806f 25class AliMUONVClusterFinder;
c5ce806f 26class AliMUONVClusterServer;
9ec6a948 27class AliMUONVClusterStore;
28class AliMUONVDigitStore;
29class AliMUONVTrackStore;
30class AliMUONVTriggerStore;
31class AliMUONVTriggerStore;
32class TClonesArray;
c5ce806f 33
7e88424f 34#include "AliMUONRecoParam.h"
35
22899106 36class AliMUONReconstructor : public AliReconstructor
37{
38public:
39 AliMUONReconstructor();
40 virtual ~AliMUONReconstructor();
41
42 virtual Bool_t HasDigitConversion() const;
43
44 virtual void ConvertDigits(AliRawReader* rawReader, TTree* digitsTree) const;
45
22899106 46 virtual void Reconstruct(AliRawReader* rawReader, TTree* clustersTree) const;
47
48 virtual void Reconstruct(TTree* digitsTree, TTree* clustersTree) const;
49
d76c31f4 50 virtual AliTracker* CreateTracker() const;
3304fa09 51
ea49e931 52 /// Get param object
7e88424f 53 static const AliMUONRecoParam* GetRecoParam() { return dynamic_cast<const AliMUONRecoParam*>(AliReconstructor::GetRecoParam(7)); }
3304fa09 54
9bf6860b 55 static AliMUONVClusterFinder* CreateClusterFinder(const char* clusterFinderType);
56
22899106 57private:
58 /// Not implemented
59 AliMUONReconstructor(const AliMUONReconstructor&);
60 /// Not implemented
61 AliMUONReconstructor& operator=(const AliMUONReconstructor&);
62
63 void ConvertDigits(AliRawReader* rawReader,
64 AliMUONVDigitStore* digitStore,
65 AliMUONVTriggerStore* triggerStore) const;
66 void Calibrate(AliMUONVDigitStore& digitStore) const;
22899106 67 void CreateCalibrator() const;
68 void CreateDigitMaker() const;
69 void CreateTriggerCircuit() const;
c5ce806f 70 void CreateClusterServer() const;
22899106 71 void FillTreeR(AliMUONVTriggerStore* triggerStore,
22899106 72 TTree& clustersTree) const;
73
74 AliMUONVDigitStore* DigitStore() const;
22899106 75 AliMUONVTriggerStore* TriggerStore() const;
9bf6860b 76
22899106 77private:
92c23b09 78
22899106 79 mutable AliMUONDigitMaker* fDigitMaker; //!< Raw to Digits converter
80 AliMUONGeometryTransformer* fTransformer; //!< Geometry transformer (local<->global)
81 mutable AliMUONVDigitStore* fDigitStore; //!< Digit container
32ab62c9 82 mutable AliMUONTriggerCircuit* fTriggerCircuit; //!< Trigger Circuit
22899106 83 mutable AliMUONCalibrationData* fCalibrationData; //!< Calibration data
84 mutable AliMUONDigitCalibrator* fDigitCalibrator; //!< Digit to calibrate digit converter
c5ce806f 85 mutable AliMUONVClusterServer* fClusterServer; //!< Clusterizer
22899106 86 mutable AliMUONVTriggerStore* fTriggerStore; //!< Trigger container
87 mutable AliMUONVTrackStore* fTrackStore; //!< Track container
9ec6a948 88 mutable AliMUONVClusterStore* fClusterStore; //!< cluster store (when not in combined tracking mode)
22899106 89
7e88424f 90 ClassDef(AliMUONReconstructor,8) // Implementation of AliReconstructor
cac2eb58 91};
92
93#endif