]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSDetTypeRec.h
Add a temporary class AliEveMUONTrackList that allows proper detection
[u/mrichter/AliRoot.git] / ITS / AliITSDetTypeRec.h
CommitLineData
3b9df642 1#ifndef ALIITSDETTYPEREC_H
2#define ALIITSDETTYPEREC_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/*
7$Id$
8*/
9
7d62fb64 10////////////////////////////////////////////////////////////////////////
11// This class contains all of the "external" information needed to do //
12// detector specific reconstruction for the ITS. //
13////////////////////////////////////////////////////////////////////////
3b9df642 14#include <TObject.h>
15#include <TObjArray.h>
16#include <TClonesArray.h>
979b5a5f 17#include "AliITSDDLModuleMapSDD.h"
253e68a0 18#include "AliITSresponseSDD.h"
979b5a5f 19#include "AliITSgeom.h"
6cae184e 20class TTree;
21class TBranch;
22
23//#include "AliITSLoader.h"
24//#include "AliRunLoader.h"
3b9df642 25
3b9df642 26class AliITSsegmentation;
fcf95fc7 27class AliITSCalibration;
ced4d9bc 28class AliITSCalibrationSSD;
253e68a0 29class AliITSresponseSDD;
7d62fb64 30class AliITSClusterFinder;
31class AliITSRawCluster;
32class AliITSRecPoint;
7d62fb64 33class AliRawReader;
88128115 34class AliITSGainSSDv2;
35class AliITSBadChannelsSSDv2;
36class AliITSNoiseSSDv2;
8ba39da9 37
3b9df642 38class AliITSDetTypeRec : public TObject {
39 public:
40 AliITSDetTypeRec(); // Default constructor
e56160b8 41
3b9df642 42 virtual ~AliITSDetTypeRec(); // Proper Destructor
7d62fb64 43
6cae184e 44 virtual AliITSgeom* GetITSgeom() const { return fITSgeom; }
45 virtual void SetITSgeom(AliITSgeom *geom) { fITSgeom = geom; }
7d62fb64 46 virtual void SetDefaults();
47 virtual void SetDefaultClusterFinders();
3a7c3e6d 48 virtual void SetDefaultClusterFindersV2(Bool_t rawdata=kFALSE);
6cae184e 49 virtual void MakeBranch(TTree *tree,Option_t *opt);
7d62fb64 50 virtual void SetTreeAddressD(TTree* treeD);
51
52 virtual void SetSegmentationModel(Int_t dettype, AliITSsegmentation *seg);
fcf95fc7 53 virtual void SetCalibrationModel(Int_t iMod, AliITSCalibration *cal);
23197852 54 virtual void SetSPDDeadModel(Int_t iMod, AliITSCalibration *cal);
7d62fb64 55 virtual void SetReconstructionModel(Int_t dettype, AliITSClusterFinder *rec);
8ba39da9 56 virtual Bool_t GetCalibration();
62b93da7 57 virtual Bool_t GetCalibrationSDDSSD(Bool_t cacheStatus);
7d62fb64 58 virtual AliITSsegmentation* GetSegmentationModel(Int_t dettype);
fcf95fc7 59 virtual AliITSCalibration* GetCalibrationModel(Int_t iMod);
23197852 60 virtual AliITSCalibration* GetSPDDeadModel(Int_t iMod);
7d62fb64 61 virtual AliITSClusterFinder* GetReconstructionModel(Int_t dettype);
979b5a5f 62 virtual AliITSDDLModuleMapSDD* GetDDLModuleMapSDD() const { return fDDLMapSDD;}
253e68a0 63 virtual AliITSresponseSDD* GetResponseSDD() const { return fRespSDD;}
2f8ed7ab 64 virtual Bool_t IsHLTmodeC() const {return fIsHLTmodeC;}
f3a3f329 65 virtual void SetHLTmodeC(Bool_t ishltc){fIsHLTmodeC=ishltc;}
7d62fb64 66
67 virtual void SetDigitClassName(Int_t i,Char_t *digit)
68 {fDigClassName[i]=digit;}
69 virtual void SetClusterClassName(Int_t i,Char_t *cluster)
70 {fClusterClassName[i]=cluster;}
71 virtual void SetRecPointClassName(Int_t i,Char_t *recpoint)
72 {fRecPointClassName[i]=recpoint;}
73
62b93da7 74 virtual void SetLoadOnlySPDCalib(Bool_t opt=kFALSE)
75 {fLoadOnlySPDCalib=opt;}
76
7d62fb64 77 Char_t* GetDigitClassName(Int_t i) const {return fDigClassName[i];}
78 Char_t* GetClusterClassName(Int_t i) const {return fClusterClassName[i];}
79 Char_t* GetRecPointClassName(Int_t i) const {return fRecPointClassName[i];}
80
81 TObjArray* GetDigits() const {return fDigits;}
82 Int_t *Ndtype() {return fNdtype;}
83 TClonesArray *DigitsAddress(Int_t id) const {return ((TClonesArray*)(*fDigits)[id]);}
84 virtual void SelectVertexer(TString sel=" "){fSelectedVertexer = sel;}
85 //
7d62fb64 86 virtual void AddCluster(Int_t branch, AliITSRawCluster *c);
87 virtual void ResetClusters();
88 virtual void ResetClusters(Int_t branch);
6cae184e 89 TBranch* MakeBranchInTree(TTree *tree, const char* name, const char *classname, void* address,Int_t size, Int_t splitlevel);
7d62fb64 90
91 TObjArray *Ctype() {return fCtype;}
92 Int_t *Nctype() {return fNctype;}
93 TClonesArray *ClustersAddress(Int_t id) const {return ((TClonesArray*)(*fCtype)[id]);}
94 virtual void ResetDigits();
95 virtual void ResetDigits(Int_t branch);
96
6cae184e 97 void MakeBranchR(TTree *treeR,Option_t *opt=" ");
7d62fb64 98 void SetTreeAddressR(TTree *treeR);
99 void AddRecPoint(const AliITSRecPoint &p);
100 void ResetRecPoints(){if(fRecPoints) fRecPoints->Clear();fNRecPoints = 0;};
101 // Return pointer to rec points
102 TClonesArray *RecPoints() {return fRecPoints;}
6cae184e 103 void MakeBranchRF(TTree *treeR){MakeBranchR(treeR,"Fast");}
104 void DigitsToRecPoints(TTree *treeD,TTree *treeR,Int_t lastEntry,Option_t *det,Bool_t v2=kFALSE);
8484b32d 105 void DigitsToRecPoints(AliRawReader* rawReader,TTree *treeR,Option_t *det="All");
8ba39da9 106
3b9df642 107 private:
8e50d897 108 // private methods
e56160b8 109 AliITSDetTypeRec(const AliITSDetTypeRec& rec);
110 AliITSDetTypeRec& operator=(const AliITSDetTypeRec &source);
111
88128115 112 //conversion of the old SSD calibration objects tothe new ones
113 void ReadOldSSDNoise(TObjArray *array,
114 AliITSNoiseSSDv2 *noiseSSD);
115 void ReadOldSSDBadChannels(TObjArray *array,
116 AliITSBadChannelsSSDv2 *badChannelsSSD);
117 void ReadOldSSDGain(TObjArray *array,
118 AliITSGainSSDv2 *gainSSD);
119
6cae184e 120 // virtual void SetLoader(AliITSLoader* loader) {fLoader=loader;}
8ba39da9 121 static const Int_t fgkNdettypes; // number of det. types
122 static const Int_t fgkDefaultNModulesSPD; // Total numbers of SPD modules by default
123 static const Int_t fgkDefaultNModulesSDD; // Total numbers of SDD modules by default
124 static const Int_t fgkDefaultNModulesSSD; // Total numbers of SSD modules by default
8e50d897 125 Int_t *fNMod; // numbers of modules from different types
8ba39da9 126
6cae184e 127 AliITSgeom *fITSgeom; //! ITS geometry
128
7d62fb64 129 TObjArray *fReconstruction;//! [NDet]
130 TObjArray *fSegmentation; //! [NDet]
131 TObjArray *fCalibration; //! [NMod]
ced4d9bc 132 AliITSCalibrationSSD* fSSDCalibration; //! SSD calibration object
23197852 133 TObjArray *fSPDDead; //! [fgkDefaultNModulesSPD]
7d62fb64 134 TObjArray *fPreProcess; //! [] e.g. Find Calibration values
135 TObjArray *fPostProcess; //! [] e.g. find primary vertex
136 TObjArray *fDigits; //! [NMod][NDigits]
979b5a5f 137 AliITSDDLModuleMapSDD *fDDLMapSDD; //! mapping DDL/module -> SDD module number
253e68a0 138 AliITSresponseSDD *fRespSDD; //! SDD response parameters
2f8ed7ab 139 Bool_t fIsHLTmodeC; //! flag for HLT mode C status (used by SDD)
7d62fb64 140 Int_t *fNdtype; //! detector types
141 Char_t* fClusterClassName[3]; //! String with Cluster class name
142 Char_t* fDigClassName[3]; //! String with digit class name.
143 Char_t* fRecPointClassName[3];//! String with RecPoint class name
144
145 TObjArray *fCtype; //! List of clusters
146 Int_t *fNctype; //[fNDetTypes] Num. of clust. per type of det.
147
148 TClonesArray *fRecPoints; //! List of reconstructed points
149 Int_t fNRecPoints; // Number of rec points
150
7d62fb64 151 TString fSelectedVertexer; // Vertexer selected in CreateVertexer
b17dae48 152 Bool_t fFirstcall; //! flag
62b93da7 153 Bool_t fLoadOnlySPDCalib; //! flag for loading calibrations only fr SPD
3b9df642 154
62b93da7 155 ClassDef(AliITSDetTypeRec,12) // ITS Reconstruction structure
7d62fb64 156};
157
3b9df642 158#endif