]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITS.h
Fixed bug with GetCovMatrix returning a pointer to a deleted local array.
[u/mrichter/AliRoot.git] / ITS / AliITS.h
CommitLineData
3bd79107 1#ifndef ALIITS_H
2#define ALIITS_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
58005f18 8////////////////////////////////////////////////////////////////////////
3bd79107 9// Manager class for set: ITS //
58005f18 10////////////////////////////////////////////////////////////////////////
fe4da5cc 11
143d1056 12#include <TObjArray.h> // used in inline function GetModule.
3bd79107 13
fe4da5cc 14#include "AliDetector.h"
2ab0c725 15#include "AliITSsimulationSPD.h"
16#include "AliITSsimulationSDD.h"
17#include "AliITSsimulationSSD.h"
de82972f 18
d5da1ecf 19class TString;
20class TTree;
55b5a0b3 21class TFile;
fe4da5cc 22
e8189707 23class AliITSDetType;
3bd79107 24class AliITSsimulation;
25class AliITSClusterFinder;
de82972f 26class AliITSsegmentation;
27class AliITSresponse;
28class AliITShit;
29class AliITSgeom;
30class AliITSdigit;
31class AliITSRecPoint;
32class AliITSRawCluster;
33class AliITSmodule;
55b5a0b3 34class AliITStrack;
de82972f 35
a8a6107b 36const Int_t kNTYPES=3;
de82972f 37
3bd79107 38
39class AliITS : public AliDetector {
58005f18 40
41 public:
3bd79107 42 AliITS();
43 AliITS(const char *name, const char *title);
44 virtual ~AliITS();
45 AliITS(AliITS &source);
46 AliITS & operator=(AliITS &source);
47
48 virtual void AddHit(Int_t track, Int_t *vol, Float_t *hits);
49 virtual void AddRealDigit(Int_t branch, Int_t *digits);
e8189707 50 virtual void AddSimDigit(Int_t branch, AliITSdigit *d);
51 virtual void AddSimDigit(Int_t branch,Float_t phys,Int_t* digits,Int_t* tracks,Int_t *hits,Float_t* trkcharges);
58005f18 52 //
3bd79107 53 virtual void AddCluster(Int_t branch, AliITSRawCluster *c);
54 virtual void AddRecPoint(const AliITSRecPoint &p);
3bd79107 55
56 virtual void ResetDigits(); // depending on how the
57 virtual void ResetDigits(Int_t branch); // tree will be filled only
58 virtual void ResetClusters(); // one of the methods in
59 virtual void ResetClusters(Int_t branch); // the pair will be kept
60 virtual void ResetRecPoints();
61
e8189707 62 // get geometry version - detailed (major) or coarse (minor)
3bd79107 63 void GetGeometryVersion(Int_t &a,Int_t &b) const
64 {a = fMajorVersion;b=fMinorVersion;return;}
65 virtual Int_t IsVersion() const {return 1;}
d5da1ecf 66 virtual Int_t DistancetoPrimitive(Int_t px, Int_t py);
3bd79107 67 virtual void Init();
68 virtual void SetDefaults();
e8189707 69 virtual void SetDefaultSimulation();
70 virtual void SetDefaultClusterFinders();
3bd79107 71 // create separate tree for clusters - declustering refining
72 virtual void MakeTreeC(Option_t *option="C");
73 void GetTreeC(Int_t event);
2ab0c725 74 virtual void MakeBranch(Option_t *opt=" ", char *file=0);
3bd79107 75 void SetTreeAddress();
76 virtual void SetEUCLID(Bool_t euclid=1) {fEuclidOut = euclid;}
77 virtual void StepManager() {}
78 // sort hits by module
79 virtual void InitModules(Int_t size,Int_t &nmodules);
e8189707 80 virtual void FillModules(Int_t evnt,Int_t bgrev,
3bd79107 81 Int_t nmodules,Option_t *opt,Text_t *filename);
82 virtual void ClearModules();
83 // Digitisation
2ab0c725 84 virtual void SDigits2Digits();
e8189707 85 void HitsToDigits(Int_t evNumber,Int_t bgrev,Int_t size,
3bd79107 86 Option_t *add, Option_t *det, Text_t *filename);
87 // Reconstruct hits
88 void DigitsToRecPoints(Int_t evNumber,Int_t lastEntry,Option_t *det);
89 // Fast simulation of space points from hits
e8189707 90 void HitsToFastRecPoints(Int_t evNumber,Int_t bgrev,Int_t size,
3bd79107 91 Option_t *add, Option_t *det, Text_t *filename);
92
3bd79107 93 // Write digits into raw data format
94 virtual void Digits2RawData() {}
e8189707 95 // Decode raw data and store digits
96 virtual void RawData2Digits() {}
3bd79107 97
98 // Configuration Methods (per detector type )
3bd79107 99 // Set response
100 virtual void SetResponseModel(Int_t id, AliITSresponse *response);
101 // Set segmentation
102 virtual void SetSegmentationModel(Int_t id, AliITSsegmentation *seg);
103 // Set simulation - temporary
104 virtual void SetSimulationModel(Int_t id, AliITSsimulation *sim);
105 // Set reconstruction
106 virtual void SetReconstructionModel(Int_t id, AliITSClusterFinder *rec);
107 // Set class names for digit and rec point
e8189707 108 virtual void SetClasses(Int_t id, const char *digit, const char *cluster);
3bd79107 109
110
111 // Getters
58005f18 112 // ITS geometry functions
3bd79107 113 virtual AliITSgeom *GetITSgeom() const {return fITSgeom;}
e8189707 114 // return pointer to the array of modules
3bd79107 115 virtual TObjArray *GetModules() const {return fITSmodules;}
e8189707 116 // return pointer to a particular module
3bd79107 117 AliITSmodule *GetModule(Int_t index) {return (AliITSmodule *)
118 (fITSmodules->At(index));}
58005f18 119
3bd79107 120 // Return pointers to digits
121 TObjArray *Dtype() {return fDtype;}
122 Int_t *Ndtype() {return fNdtype;}
123 virtual TClonesArray *DigitsAddress(Int_t id)
124 {return ((TClonesArray *) (*fDtype)[id]);}
125 // Return pointers to clusters
126 TObjArray *Ctype() {return fCtype;}
127 Int_t *Nctype() {return fNctype;}
128 virtual TClonesArray *ClustersAddress(Int_t id)
129 {return ((TClonesArray *) (*fCtype)[id]);}
130
131 // Return pointer to rec points
132 TClonesArray *RecPoints() {return fRecPoints;}
3bd79107 133
134 // Return pointer to DetType #id
135 AliITSDetType *DetType(Int_t id);
e8189707 136 //Int_t NDetTypes() {return fNDetTypes;}
3bd79107 137
138 // Return pointer to the tree of clusters
139 TTree *TreeC() {return fTreeC;}
140
e8189707 141
55b5a0b3 142 // tracking
143
144 AliITStrack Tracking(AliITStrack &track, AliITStrack *reference, TObjArray *fpoints, Int_t **vettid,
145 Bool_t flagvert );
146
147 void DoTracking(Int_t evNumber, Int_t min_t, Int_t max_t, TFile *file, Bool_t flagvert);
148
3bd79107 149 protected:
150
143d1056 151 AliITSgeom *fITSgeom; // Pointer to ITS geometry
a8a6107b 152 TObjArray *fITSmodules; // Pointer to ITS modules
143d1056 153 Bool_t fEuclidOut; // Flag to write geometry in euclid format
154 Int_t fIdN; // the number of layers
155 Int_t *fIdSens; //[fIdN] layer identifier
156// TObjArray *fIdName; // array of volume Id names
157 TString *fIdName; //[fIdN] layer identifier
3bd79107 158 // Geometry and Stepmanager version numbers used.
143d1056 159 Int_t fMajorVersion; // detailed and coarse(minor) versions
160 Int_t fMinorVersion; // detailed and coarse(minor) versions
3bd79107 161 //
a8a6107b 162 Int_t fNDetTypes; // Number of detector types
143d1056 163 TObjArray *fDetTypes; // List of detector types
3bd79107 164
a8a6107b 165 TObjArray *fDtype; // List of digits
166 Int_t *fNdtype; //[fNDetTypes] Num. of digits per type of det.
167 TObjArray *fCtype; // List of clusters
168 Int_t *fNctype; //[fNDetTypes] Num. of clust. per type of det.
3bd79107 169
143d1056 170 TClonesArray *fRecPoints; // List of reconstructed points
171 Int_t fNRecPoints; // Number of rec points
172 TTree *fTreeC; // Tree for raw clusters
3bd79107 173
174
175 ClassDef(AliITS,1) // Base class for ITS
fe4da5cc 176};
3bd79107 177
fe4da5cc 178#endif