]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONRawReader.h
Minor fixes in the event tag to take into account the new way of storing the trigger...
[u/mrichter/AliRoot.git] / MUON / AliMUONRawReader.h
CommitLineData
a19e2543 1#ifndef ALIMUONRAWREADER_H
2#define ALIMUONRAWREADER_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/// \ingroup rec
9/// \class AliMUONRawReader
10/// \brief Raw data class for trigger and tracker chambers
11///
12/// Readding Raw data class for trigger and tracker chambers
13
14#include <TObject.h>
2cbb173f 15#include "TStopwatch.h"
a19e2543 16
2cbb173f 17class AliMpBusPatch;
a19e2543 18class AliMUONData;
19class AliMUONDigit;
20class AliMUONDDLTracker;
21class AliMUONDDLTrigger;
22class AliMUONGlobalTrigger;
23class AliRawReader;
24class AliMpSegFactory;
25
26class AliMUONRawReader : public TObject
27{
28 public:
2cbb173f 29 AliMUONRawReader(AliMUONData* data); // Constructor
a19e2543 30 virtual ~AliMUONRawReader(void); // Destructor
31
32 // write raw data
33 Int_t Raw2Digits(AliRawReader* rawReader);
34
35 Int_t ReadTrackerDDL(AliRawReader* rawReader);
36 Int_t ReadTriggerDDL(AliRawReader* rawReader);
37
38 AliMUONData* GetMUONData() {return fMUONData;}
39
40 Int_t GetMapping(Int_t buspatchId, UShort_t manuId,
41 UChar_t channelId, AliMUONDigit* digit );
42
43 AliMUONGlobalTrigger* GetGlobalTriggerPattern(Int_t gloTrg) const;
44
ced309a5 45 void SetScalerEvent() {fScalerEvent = kTRUE;}
a19e2543 46
47 protected:
48 AliMUONRawReader(); // Default constructor
49 AliMUONRawReader (const AliMUONRawReader& rhs); // copy constructor
50 AliMUONRawReader& operator=(const AliMUONRawReader& rhs); // assignment operator
51
52 private:
53
54 AliMUONData* fMUONData; //! Data container for MUON subsystem
55
a19e2543 56 AliMpSegFactory* fSegFactory; //! Mapping segmentation factory
a19e2543 57
58 AliMUONDDLTracker* fDDLTracker; //! DDL tracker class pointers
59 AliMUONDDLTrigger* fDDLTrigger; //! DDL trigger class pointers
60
ced309a5 61 AliMpBusPatch* fBusPatchManager; //! buspatch versus DE's & DDL
62
63 Bool_t fScalerEvent; // flag to generates scaler event
a19e2543 64
2cbb173f 65 TStopwatch fTrackerTimer; //!
66 TStopwatch fTriggerTimer; //!
67 TStopwatch fMappingTimer; //!
68
69 ClassDef(AliMUONRawReader,0) // MUON cluster reconstructor in ALICE
a19e2543 70};
71
72#endif