]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONResponse.h
Added arguments names in function declarations. (I. Hrivnacova)
[u/mrichter/AliRoot.git] / MUON / AliMUONResponse.h
CommitLineData
a9e2aefa 1#ifndef ALIMUONRESPONSE_H
2#define ALIMUONRESPONSE_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#include "TObject.h"
9
10class TF1;
a30a000f 11class AliSegmentation;
ba030c0e 12class AliMUONTransientDigit;
a9e2aefa 13
14class AliMUONResponse :
15public TObject {
16 public:
17 //
18 // Configuration methods
19 //
20 // Set number of sigmas over which cluster disintegration is performed
21 virtual void SetSigmaIntegration(Float_t p1) =0;
22 // Get number of sigmas over which cluster disintegration is performed
23 virtual Float_t SigmaIntegration() =0;
24 // Set single electron pulse height (ADCcounts/e)
25 virtual void SetChargeSlope(Float_t p1) =0;
26 // Get single electron pulse height (ADCcounts/e)
27 virtual Float_t ChargeSlope() =0;
28 // Set sigmas of the charge spread function
29 virtual void SetChargeSpread(Float_t p1, Float_t p2) =0;
30 // Get sigma_X of the charge spread function
31 virtual Float_t ChargeSpreadX() =0;
32 // Get sigma_Y of the charge spread function
33 virtual Float_t ChargeSpreadY() =0;
34 // Set maximum Adc-count value
35 virtual void SetMaxAdc(Int_t p1) =0;
a614d271 36 // Set saturation value
37 virtual void SetSaturation(Int_t p1) =0;
a9e2aefa 38 // Set zero suppression threshold
39 virtual void SetZeroSuppression(Int_t val) =0;
40 // Get maximum Adc-count value
41 virtual Int_t MaxAdc() =0;
a614d271 42 // Get saturation value
43 virtual Int_t Saturation() =0;
a9e2aefa 44 // Get maximum zero suppression threshold
45 virtual Int_t ZeroSuppression() =0;
46 // Set anode cathode Pitch
47 virtual void SetPitch(Float_t) =0;
48 // Get anode cathode Pitch
49 virtual Float_t Pitch() =0;
16d57990 50 // Set the charge correlation
51 virtual void SetChargeCorrel(Float_t correl) =0;
52 // Get the charge correlation
53 virtual Float_t ChargeCorrel() =0;
a9e2aefa 54 //
55 // Chamber response methods
56 // Pulse height from scored quantity (eloss)
57 virtual Float_t IntPH(Float_t eloss) =0;
58 // Charge disintegration
a30a000f 59 virtual Float_t IntXY(AliSegmentation *) =0;
a9e2aefa 60 // Noise, zero-suppression, adc saturation
ba030c0e 61 //virtual Int_t DigitResponse(Int_t digit) =0;
62 virtual Int_t DigitResponse(Int_t digit,
63 AliMUONTransientDigit* where) =0;
a9e2aefa 64 //
65 ClassDef(AliMUONResponse,1) // Chamber response virtual base class
66};
67#endif
68
69
70
71
72
73
74