]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONResponseV0.h
New parametrization of the geometry and new geometry interface (Working week effort)
[u/mrichter/AliRoot.git] / MUON / AliMUONResponseV0.h
CommitLineData
a9e2aefa 1#ifndef ALIMUONRESPONSEV0_H
2#define ALIMUONRESPONSEV0_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
a9e2aefa 8
9#include "AliMUONResponse.h"
10
30178c30 11class AliMUONResponseV0 : public AliMUONResponse
12{
a9e2aefa 13 public:
30178c30 14 AliMUONResponseV0();
a9e2aefa 15 virtual ~AliMUONResponseV0(){}
16 //
17 // Configuration methods
18 //
19 // Set number of sigmas over which cluster didintegration is performed
20 virtual void SetSigmaIntegration(Float_t p1) {fSigmaIntegration=p1;}
21 // Get number of sigmas over which cluster didintegration is performed
30178c30 22 virtual Float_t SigmaIntegration() const {return fSigmaIntegration;}
a9e2aefa 23 // Set single electron pulse height (ADCcounts/e)
24 virtual void SetChargeSlope(Float_t p1) {fChargeSlope=p1;}
25 // Get Set single electron pulse height (ADCcounts/e)
30178c30 26 virtual Float_t ChargeSlope() const {return fChargeSlope;}
a9e2aefa 27 // Set sigmas of the charge spread function
28 virtual void SetChargeSpread(Float_t p1, Float_t p2)
29 {fChargeSpreadX=p1; fChargeSpreadY=p2;}
30 // Get sigma_X of the charge spread function
30178c30 31 virtual Float_t ChargeSpreadX() const {return fChargeSpreadX;}
a9e2aefa 32 // Get sigma_Y of the charge spread function
30178c30 33 virtual Float_t ChargeSpreadY() const {return fChargeSpreadY;}
a9e2aefa 34 // Set maximum Adc-count value
35 virtual void SetMaxAdc(Int_t p1) {fMaxAdc=p1;}
a614d271 36 // Set saturation value
37 virtual void SetSaturation(Int_t p1) {fSaturation=p1;}
a9e2aefa 38 // Set zero suppression threshold
39 virtual void SetZeroSuppression(Int_t p1) {fZeroSuppression=p1;}
40 // Get maximum Adc-count value
30178c30 41 virtual Int_t MaxAdc() const {return fMaxAdc;}
a614d271 42 // Get saturation value
30178c30 43 virtual Int_t Saturation() const {return fSaturation;}
a614d271 44
a9e2aefa 45 // Get zero suppression threshold
30178c30 46 virtual Int_t ZeroSuppression() const {return fZeroSuppression;}
a9e2aefa 47 // Set anode cathode Pitch
30178c30 48 virtual Float_t Pitch() const {return fPitch;}
a9e2aefa 49 // Get anode cathode Pitch
50 virtual void SetPitch(Float_t p1) {fPitch=p1;};
16d57990 51 // Set the charge correlation
52 virtual void SetChargeCorrel(Float_t correl){fChargeCorrel = correl;}
53 // Get the charge correlation
30178c30 54 virtual Float_t ChargeCorrel() const {return fChargeCorrel;}
a9e2aefa 55 // Set Mathieson parameters
d5bfadcc 56 // Mathieson \sqrt{Kx3} and derived Kx2 and Kx4
57 virtual void SetSqrtKx3AndDeriveKx2Kx4(Float_t SqrtKx3);
a9e2aefa 58 // Mathieson \sqrt{Kx3}
59 virtual void SetSqrtKx3(Float_t p1) {fSqrtKx3=p1;};
60 // Mathieson Kx2
61 virtual void SetKx2(Float_t p1) {fKx2=p1;};
62 // Mathieson Kx4
63 virtual void SetKx4(Float_t p1) {fKx4=p1;};
d5bfadcc 64 // Mathieson \sqrt{Ky3} and derived Ky2 and Ky4
65 virtual void SetSqrtKy3AndDeriveKy2Ky4(Float_t SqrtKy3);
a9e2aefa 66 // Mathieson \sqrt{Ky3}
67 virtual void SetSqrtKy3(Float_t p1) {fSqrtKy3=p1;};
68 // Mathieson Ky2
69 virtual void SetKy2(Float_t p1) {fKy2=p1;};
70 // Mathieson Ky4
71 virtual void SetKy4(Float_t p1) {fKy4=p1;};
72 //
73 // Chamber response methods
74 // Pulse height from scored quantity (eloss)
75 virtual Float_t IntPH(Float_t eloss);
76 // Charge disintegration
a30a000f 77 virtual Float_t IntXY(AliSegmentation * segmentation);
a9e2aefa 78 // Noise, zero-suppression, adc saturation
ba030c0e 79 virtual Int_t DigitResponse(Int_t digit, AliMUONTransientDigit* where);
a9e2aefa 80
81 ClassDef(AliMUONResponseV0,1) // Implementation of Mathieson response
82 protected:
83 Float_t fChargeSlope; // Slope of the charge distribution
84 Float_t fChargeSpreadX; // Width of the charge distribution in x
85 Float_t fChargeSpreadY; // Width of the charge distribution in y
86 Float_t fSigmaIntegration; // Number of sigma's used for charge distribution
87 Int_t fMaxAdc; // Maximum ADC channel
a614d271 88 Int_t fSaturation; // Pad saturation in ADC channel
a9e2aefa 89 Int_t fZeroSuppression; // Zero suppression threshold
16d57990 90 Float_t fChargeCorrel; // amplitude of charge correlation on 2 cathods
91 // is RMS of ln(q1/q2)
d5bfadcc 92 Float_t fSqrtKx3; // Mathieson Sqrt(Kx3)
a9e2aefa 93 Float_t fKx2; // Mathieson Kx2
d5bfadcc 94 Float_t fKx4; // Mathieson Kx4 = Kx1/Kx2/Sqrt(Kx3)
95 Float_t fSqrtKy3; // Mathieson Sqrt(Ky3)
a9e2aefa 96 Float_t fKy2; // Mathieson Ky2
d5bfadcc 97 Float_t fKy4; // Mathieson Ky4 = Ky1/Ky2/Sqrt(Ky3)
a9e2aefa 98 Float_t fPitch; // anode-cathode pitch
99};
100#endif
101
102
103
104
105
106
107
108
109
110
111