]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONDigitizerV3.h
Change names of sections to avoid confusion with MCH DA sections
[u/mrichter/AliRoot.git] / MUON / AliMUONDigitizerV3.h
1 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
2 * See cxx source for full Copyright notice                               */
3
4 // $Id$
5
6 /// \ingroup sim
7 /// \class AliMUONDigitizerV3
8 /// \brief Digitizer (from SDigit to Digit), performing digit de-calibration.
9 ///
10 //  Author Laurent Aphecetche
11
12 #ifndef ALIMUONDIGITIZERV3_H
13 #define ALIMUONDIGITIZERV3_H
14
15 #ifndef ALIDIGITIZER_H
16 #include "AliDigitizer.h"
17 #endif
18
19 class AliMUONCalibrationData;
20 class AliMUONVDigit;
21 class AliMUONLogger;
22 class TClonesArray;
23 class TF1;
24 class TString;
25 class AliMUONVDigitStore;
26 class AliLoader;
27 class AliMUONVTriggerStore;
28 class AliMUONTriggerElectronics;
29 class AliMUONVCalibParam;
30
31 class AliMUONDigitizerV3 : public AliDigitizer
32 {
33 public:
34   AliMUONDigitizerV3(AliRunDigitizer* manager=0, 
35                      Int_t generateNoisyDigits=1);
36   virtual ~AliMUONDigitizerV3();
37
38   virtual void Exec(Option_t* opt="");
39   
40   virtual Bool_t Init();
41
42   static Int_t DecalibrateTrackerDigit(const AliMUONVCalibParam& pedestals,
43                                        const AliMUONVCalibParam& gains,
44                                        Int_t channel,
45                                        Float_t charge,
46                                        Bool_t addNoise=kFALSE,
47                                        Bool_t noiseOnly=kFALSE);
48   
49   /// Set calibration data
50   void SetCalibrationData(AliMUONCalibrationData* calibrationData) 
51                           {fCalibrationData = calibrationData;}
52   
53 private:
54   /// Not implemented
55   AliMUONDigitizerV3(const AliMUONDigitizerV3& other);
56   /// Not implemented
57   AliMUONDigitizerV3& operator=(const AliMUONDigitizerV3& other);
58     
59   void ApplyResponse(const AliMUONVDigitStore& store, AliMUONVDigitStore& filteredStore);
60
61   void ApplyResponseToTrackerDigit(AliMUONVDigit& digit, Bool_t addNoise);
62
63   AliLoader* GetLoader(const TString& foldername);
64   
65 private:  
66
67   void GenerateNoisyDigits(AliMUONVDigitStore& digitStore);
68   void GenerateNoisyDigitsForOneCathode(AliMUONVDigitStore& digitStore, 
69                                         Int_t detElemId, Int_t cathode);
70   void GenerateNoisyDigitsForTrigger(AliMUONVDigitStore& digitStore);
71
72   void MergeWithSDigits(AliMUONVDigitStore*& digitStore,
73                         const AliMUONVDigitStore& input,
74                         Int_t mask);
75   
76   static TF1* NoiseFunction();
77   
78   void CreateInputDigitStore();
79
80 private:
81   Bool_t fIsInitialized; ///< are we initialized ?
82   AliMUONCalibrationData* fCalibrationData; //!< pointer to access calib parameters
83   AliMUONTriggerElectronics* fTriggerProcessor; ///< pointer to the trigger part of the job
84   TF1* fNoiseFunctionTrig; //!< function to get noise disribution on trig. chambers
85   Int_t fGenerateNoisyDigits; //!< whether or not we should generate noise-only digits for tracker (1) and trigger (2)
86   static const Double_t fgkNSigmas; ///< \brief number of sigmas above ped to use 
87   /// for noise-only digit generation and zero-suppression
88   AliMUONLogger* fLogger; //!< to keep track of messages
89   AliMUONVTriggerStore* fTriggerStore; //!< trigger objects
90   AliMUONVDigitStore* fDigitStore; //!< temporary digits
91   AliMUONVDigitStore* fOutputDigitStore; //!< digits we'll output to disk
92   AliMUONVDigitStore* fInputDigitStore; //!< input digit store
93   
94   ClassDef(AliMUONDigitizerV3,8) // MUON Digitizer V3-8
95 };
96
97 #endif