]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUON.h
Major upgrade of AliRoot code
[u/mrichter/AliRoot.git] / MUON / AliMUON.h
CommitLineData
a9e2aefa 1#ifndef ALIMUON_H
2#define ALIMUON_H
3da30618 3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/* $Id$ */
7
fe4da5cc 8////////////////////////////////////////////////
9// Manager and hits classes for set:MUON //
10////////////////////////////////////////////////
11#include "AliDetector.h"
ecfa008b 12// #include "AliMUONTriggerCircuit.h" // cp
a9e2aefa 13
a9e2aefa 14class AliMUONChamber;
15class AliMUONLocalTrigger;
16class AliMUONGlobalTrigger;
17class AliMUONTriggerCircuit;
18class AliMUONTriggerDecision;
a30a000f 19class AliSegmentation;
a9e2aefa 20class AliMUONResponse;
21class AliMUONHit;
22class AliMUONPadHit;
a897a37a 23class AliMUONRawCluster;
30aaba74 24class AliMUONClusterFinderVS;
a9e2aefa 25class AliMUONReconstHit;
26class TVector;
94de3818 27#include "TObjArray.h"
a9e2aefa 28class TFile;
29class TTree;
fe4da5cc 30
31
fe4da5cc 32class AliMUON : public AliDetector {
33 public:
34 AliMUON();
35 AliMUON(const char *name, const char *title);
a9e2aefa 36 AliMUON(const AliMUON& rMUON);
fe4da5cc 37 virtual ~AliMUON();
a9e2aefa 38 virtual void AddHit(Int_t track , Int_t *vol, Float_t *hits);
39 virtual void AddPadHit(Int_t* clhits);
40 virtual void AddDigits(Int_t id, Int_t* tracks, Int_t* charges,
41 Int_t* digits);
42 virtual void AddRawCluster(Int_t id, const AliMUONRawCluster& clust);
fe4da5cc 43 virtual void BuildGeometry();
a9e2aefa 44 void AddGlobalTrigger(Int_t *singlePlus, Int_t *singleMinus,
45 Int_t *singleUndef, Int_t *pairUnlike,
46 Int_t *pairLike);
47 void AddLocalTrigger(Int_t* ltrigger);
fe4da5cc 48 Int_t DistancetoPrimitive(Int_t px, Int_t py);
a9e2aefa 49 virtual Int_t IsVersion() const {return 0;}
50 TClonesArray *PadHits() {return fPadHits;}
51 TClonesArray *LocalTrigger() {return fLocalTrigger;}
52 TClonesArray *GlobalTrigger() {return fGlobalTrigger;}
fe4da5cc 53 virtual void MakeBranch(Option_t *opt=" ");
54 void SetTreeAddress();
55 virtual void ResetHits();
56 virtual void ResetDigits();
a9e2aefa 57 virtual void ResetTrigger();
a897a37a 58 virtual void ResetRawClusters();
a9e2aefa 59 // Cluster Finding
60 virtual void FindClusters(Int_t event ,Int_t lastEntry);
61 // Digitisation
62 virtual void Digitise(Int_t nev,Int_t bgrEvent, Option_t *opt1=" ",
63 Option_t *opt2=" ",Text_t *name=" ");
64 virtual void SortTracks(Int_t *tracks,Int_t *charges, Int_t ntr);
fe4da5cc 65// Configuration Methods (per station id)
66//
67// Set Chamber Segmentation Parameters
a9e2aefa 68// id refers to the station and isec to the cathode plane
69// Set Z values for all chambers
70 virtual void SetChambersZ(const Float_t *Z);
71 virtual void SetChambersZToDefault(void);
72 virtual void SetPadSize(Int_t id, Int_t isec, Float_t p1, Float_t p2);
fe4da5cc 73// Set Signal Generation Parameters
a897a37a 74 virtual void SetSigmaIntegration(Int_t id, Float_t p1);
75 virtual void SetChargeSlope(Int_t id, Float_t p1);
76 virtual void SetChargeSpread(Int_t id, Float_t p1, Float_t p2);
3b3ee6f4 77 virtual void SetMaxAdc(Int_t id, Int_t p1);
fe4da5cc 78// Set Segmentation and Response Model
a9e2aefa 79 virtual void SetSegmentationModel(Int_t id, Int_t isec,
a30a000f 80 AliSegmentation *segmentation);
a9e2aefa 81 virtual void SetResponseModel(Int_t id, AliMUONResponse *response);
fe4da5cc 82 virtual void SetNsec(Int_t id, Int_t nsec);
a897a37a 83// Set Reconstruction Model
30aaba74 84 virtual void SetReconstructionModel(Int_t id, AliMUONClusterFinderVS *reconstruction);
fe4da5cc 85// Set Stepping Parameters
a897a37a 86 virtual void SetMaxStepGas(Float_t p1);
87 virtual void SetMaxStepAlu(Float_t p1);
88 virtual void SetMaxDestepGas(Float_t p1);
89 virtual void SetMaxDestepAlu(Float_t p1);
5c1f55c5 90 virtual void SetAcceptance(Bool_t acc=0, Float_t angmin=2, Float_t angmax=9);
fe4da5cc 91// Response Simulation
802a864d 92 virtual void MakePadHits(Float_t xhit,Float_t yhit, Float_t zhit,
a9e2aefa 93 Float_t eloss, Float_t tof, Int_t id);
94// get Trigger answer
95 void Trigger(Int_t nev);
fe4da5cc 96// Return reference to Chamber #id
a9e2aefa 97 virtual AliMUONChamber& Chamber(Int_t id)
98 {return *((AliMUONChamber *) (*fChambers)[id]);}
99// Return reference to Circuit #id
100 virtual AliMUONTriggerCircuit& TriggerCircuit(Int_t id)
101 {return *((AliMUONTriggerCircuit *) (*fTriggerCircuits)[id]);}
fe4da5cc 102// Retrieve pad hits for a given Hit
a9e2aefa 103 virtual AliMUONPadHit* FirstPad(AliMUONHit *hit, TClonesArray *padHits);
104 virtual AliMUONPadHit* NextPad(TClonesArray *padHits);
105// Return pointers to digits
fe4da5cc 106 TObjArray *Dchambers() {return fDchambers;}
107 Int_t *Ndch() {return fNdch;}
a9e2aefa 108 virtual TClonesArray *DigitsAddress(Int_t id)
109 {return ((TClonesArray *) (*fDchambers)[id]);}
fe4da5cc 110// Return pointers to reconstructed clusters
a897a37a 111 TObjArray *RawClusters() {return fRawClusters;}
a9e2aefa 112 Int_t *Nrawch() {return fNrawch;}
113 virtual TClonesArray *RawClustAddress(Int_t id)
114 {return ((TClonesArray *) (*fRawClusters)[id]);}
115
116 AliMUONRawCluster *RawCluster(Int_t ichamber, Int_t icathod,
117 Int_t icluster);
118// Copy Operator
119 AliMUON& operator = (const AliMUON& rhs);
a897a37a 120
a9e2aefa 121
fe4da5cc 122 protected:
1bd26093 123 Int_t fNCh; // Number of chambers
124 Int_t fNTrackingCh; // Number of tracking chambers
fe4da5cc 125 TObjArray *fChambers; // List of Tracking Chambers
3e1872ed 126 TObjArray *fTriggerCircuits; // List of Trigger Circuits
a9e2aefa 127 Int_t fNPadHits; // Number of pad hits
128 TClonesArray *fPadHits; // List of pad hits
fe4da5cc 129 TObjArray *fDchambers; // List of digits
1bd26093 130 Int_t *fNdch; // [fNCh] Number of digits per chamber
a9e2aefa 131 TObjArray *fRawClusters; // List of raw clusters
1bd26093 132 Int_t *fNrawch; // [fNTrackingCh] Number of raw clusters per chamber
a9e2aefa 133 Int_t fNLocalTrigger; // Number of Local Trigger
134 TClonesArray *fLocalTrigger; // List of Local Trigger
135 Int_t fNGlobalTrigger; // Number of Global Trigger
136 TClonesArray *fGlobalTrigger; // List of Global Trigger
a897a37a 137
fe4da5cc 138//
139 Bool_t fAccCut; //Transport acceptance cut
140 Float_t fAccMin; //Minimum acceptance cut used during transport
141 Float_t fAccMax; //Minimum acceptance cut used during transport
142//
143
144// Stepping Parameters
145 Float_t fMaxStepGas; // Maximum step size inside the chamber gas
146 Float_t fMaxStepAlu; // Maximum step size inside the chamber aluminum
147 Float_t fMaxDestepGas; // Maximum relative energy loss in gas
148 Float_t fMaxDestepAlu; // Maximum relative energy loss in aluminum
a897a37a 149
fe4da5cc 150
a897a37a 151
a9e2aefa 152// Pad Iterator
153 Int_t fMaxIterPad; // Maximum pad index
154 Int_t fCurIterPad; // Current pad index
155// Background eent for event mixing
30f212b7 156 Text_t *fFileName; // ! File with background hits
157 TTree *fTrH1; // Hits Tree for background event
a9e2aefa 158 TClonesArray *fHits2; // List of hits for one track only
159 TClonesArray *fPadHits2; // List of clusters for one track only
a897a37a 160
a1001283 161 ClassDef(AliMUON,1) // MUON Detector base class
a897a37a 162};
fe4da5cc 163#endif
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178