]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONChamber.h
Replacement for testPlaneAreaIterator.C macro
[u/mrichter/AliRoot.git] / MUON / AliMUONChamber.h
CommitLineData
a9e2aefa 1#ifndef ALIMUONCHAMBER_H
2#define ALIMUONCHAMBER_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
8
9#include <TObject.h>
10#include <TObjArray.h>
a9e2aefa 11
a9e2aefa 12#include "AliMUONResponse.h"
a713db22 13#include "AliMUONGeometrySegmentation.h"
a9e2aefa 14
30aaba74 15class AliMUONClusterFinderVS;
e118b27e 16class AliMUONGeometryModule;
a713db22 17class AliMUON;
18class AliMUONHit;
19
a9e2aefa 20
30178c30 21class AliMUONChamber : public TObject
a9e2aefa 22{
23 public:
24 AliMUONChamber();
d81db581 25 AliMUONChamber(Int_t id);
a9e2aefa 26 virtual ~AliMUONChamber();
27
28//
d1cd2474 29// Get chamber Id
30178c30 30 virtual Int_t GetId() const {return fId;}
d1cd2474 31//
32
33// Get chamber Id
34 virtual Bool_t IsSensId(Int_t volId) const;
d1cd2474 35
a9e2aefa 36// Initialisation
a713db22 37 virtual void Init(Int_t flag);
a9e2aefa 38// Set z-position of chamber
39 virtual void SetZ(Float_t Z) {fZ = Z;}
40// Get z-position of chamber
30178c30 41 virtual Float_t Z() const {return fZ;}
a9e2aefa 42// Set inner radius of sensitive volume
43 virtual void SetRInner(Float_t rmin) {frMin=rmin;}
44// Set outer radius of sensitive volum
45 virtual void SetROuter(Float_t rmax) {frMax=rmax;}
46
47// Return inner radius of sensitive volume
30178c30 48 virtual Float_t RInner() const {return frMin;}
a9e2aefa 49// Return outer radius of sensitive volum
30178c30 50 virtual Float_t ROuter() const {return frMax;}
a9e2aefa 51//
52// Set response model
53 virtual void SetResponseModel(AliMUONResponse* thisResponse) {fResponse=thisResponse;}
54//
55// Set segmentation model
a713db22 56 virtual void SetSegmentationModel(Int_t isec, AliMUONGeometrySegmentation* thissegmentation) {
57 fSegmentation2->AddAt(thissegmentation,isec-1);
a9e2aefa 58 }
a9e2aefa 59//
60// Get pointer to response model
61 virtual AliMUONResponse* &ResponseModel(){return fResponse;}
62//
63// Get reference to segmentation model
a713db22 64 virtual AliMUONGeometrySegmentation* SegmentationModel2(Int_t isec) {
65 return (AliMUONGeometrySegmentation*) (*fSegmentation2)[isec-1];
66 }
67
a9e2aefa 68// Get number of segmentation sectors
30178c30 69 virtual Int_t Nsec() const {return fnsec;}
a9e2aefa 70// Set number of segmented cathodes (1 or 2)
71 virtual void SetNsec(Int_t nsec) {fnsec=nsec;}
72//
73// Member function forwarding to the segmentation and response models
74//
75// Calculate pulse height from energy loss
76 virtual Float_t IntPH(Float_t eloss) {return fResponse->IntPH(eloss);}
77//
78// Ask segmentation if signal should be generated
a713db22 79 virtual Int_t SigGenCond(AliMUONHit* hit);
a9e2aefa 80//
81// Initialisation of segmentation for hit
a713db22 82 virtual void SigGenInit(AliMUONHit* hit);
681d067b 83// Initialisation of charge fluctuation for given hit
84 virtual void ChargeCorrelationInit();
85
a9e2aefa 86// Configuration forwarding
87//
88// Define signal distribution region
89// by number of sigmas of the distribution function
90 virtual void SetSigmaIntegration(Float_t p1)
91 {fResponse->SetSigmaIntegration(p1);}
92// Set the single electron pulse-height (ADCchan/e)
93 virtual void SetChargeSlope(Float_t p1) {fResponse->SetChargeSlope(p1);}
94// Set width of charge distribution function
95 virtual void SetChargeSpread(Float_t p1, Float_t p2) {fResponse->SetChargeSpread(p1,p2);}
96// Set maximum ADC count value
a337f488 97 virtual void SetMaxAdc(Int_t p1) {fResponse->SetMaxAdc(p1);}
a9e2aefa 98//
99// Cluster formation method (charge disintegration)
a713db22 100 virtual void DisIntegration(AliMUONHit* hit,
101 Int_t& x, Float_t newclust[6][500]);
a9e2aefa 102// Initialize geometry related parameters
103 virtual void InitGeo(Float_t z);
104//
30178c30 105 virtual Float_t DGas() const {return fdGas;}
106 virtual Float_t DAlu() const {return fdAlu;}
b64652f5 107 virtual void SetDGas(Float_t DGas) {fdGas = DGas;}
108 virtual void SetDAlu(Float_t DAlu) {fdAlu = DAlu;}
16d57990 109 virtual void SetChargeCorrel(Float_t correl) {fResponse->SetChargeCorrel(correl);}
d1cd2474 110
111// geometry
e118b27e 112 void SetGeometry(AliMUONGeometryModule* geometry) {fGeometry = geometry;}
113 AliMUONGeometryModule* GetGeometry() const {return fGeometry; }
d1cd2474 114
a9e2aefa 115
116 protected:
30178c30 117 AliMUONChamber(const AliMUONChamber & rChamber);
118 // assignment operator
119 AliMUONChamber& operator =(const AliMUONChamber& rhs);
120
d81db581 121 Int_t fId; // chamber number
a9e2aefa 122 Float_t fdGas; // half gaz gap
123 Float_t fdAlu; // half Alu width
a9e2aefa 124 Float_t fZ; // Z position (cm)
125 Int_t fnsec; // number of semented cathode planes
126 Float_t frMin; // innermost sensitive radius
127 Float_t frMax; // outermost sensitive radius
681d067b 128 Float_t fCurrentCorrel; //! charge correlation for current hit.
a9e2aefa 129
a713db22 130 TObjArray *fSegmentation2; // pointer to geometry segmentation bending & NBending
131
30aaba74 132 AliMUONResponse *fResponse; // pointer to response
e118b27e 133 AliMUONGeometryModule *fGeometry; // pointer to geometry
a713db22 134 AliMUON *fMUON; // pointer to MUON
e118b27e 135 ClassDef(AliMUONChamber,3) // Muon tracking chamber class
a9e2aefa 136};
137
138#endif