]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSDetTypeRec.h
move printout from AliWarning to AliDebug
[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();
7d62fb64 57 virtual AliITSsegmentation* GetSegmentationModel(Int_t dettype);
fcf95fc7 58 virtual AliITSCalibration* GetCalibrationModel(Int_t iMod);
23197852 59 virtual AliITSCalibration* GetSPDDeadModel(Int_t iMod);
7d62fb64 60 virtual AliITSClusterFinder* GetReconstructionModel(Int_t dettype);
979b5a5f 61 virtual AliITSDDLModuleMapSDD* GetDDLModuleMapSDD() const { return fDDLMapSDD;}
253e68a0 62 virtual AliITSresponseSDD* GetResponseSDD() const { return fRespSDD;}
7d62fb64 63
64 virtual void SetDigitClassName(Int_t i,Char_t *digit)
65 {fDigClassName[i]=digit;}
66 virtual void SetClusterClassName(Int_t i,Char_t *cluster)
67 {fClusterClassName[i]=cluster;}
68 virtual void SetRecPointClassName(Int_t i,Char_t *recpoint)
69 {fRecPointClassName[i]=recpoint;}
70
71 Char_t* GetDigitClassName(Int_t i) const {return fDigClassName[i];}
72 Char_t* GetClusterClassName(Int_t i) const {return fClusterClassName[i];}
73 Char_t* GetRecPointClassName(Int_t i) const {return fRecPointClassName[i];}
74
75 TObjArray* GetDigits() const {return fDigits;}
76 Int_t *Ndtype() {return fNdtype;}
77 TClonesArray *DigitsAddress(Int_t id) const {return ((TClonesArray*)(*fDigits)[id]);}
78 virtual void SelectVertexer(TString sel=" "){fSelectedVertexer = sel;}
79 //
7d62fb64 80 virtual void AddCluster(Int_t branch, AliITSRawCluster *c);
81 virtual void ResetClusters();
82 virtual void ResetClusters(Int_t branch);
6cae184e 83 TBranch* MakeBranchInTree(TTree *tree, const char* name, const char *classname, void* address,Int_t size, Int_t splitlevel);
7d62fb64 84
85 TObjArray *Ctype() {return fCtype;}
86 Int_t *Nctype() {return fNctype;}
87 TClonesArray *ClustersAddress(Int_t id) const {return ((TClonesArray*)(*fCtype)[id]);}
88 virtual void ResetDigits();
89 virtual void ResetDigits(Int_t branch);
90
6cae184e 91 void MakeBranchR(TTree *treeR,Option_t *opt=" ");
7d62fb64 92 void SetTreeAddressR(TTree *treeR);
93 void AddRecPoint(const AliITSRecPoint &p);
94 void ResetRecPoints(){if(fRecPoints) fRecPoints->Clear();fNRecPoints = 0;};
95 // Return pointer to rec points
96 TClonesArray *RecPoints() {return fRecPoints;}
6cae184e 97 void MakeBranchRF(TTree *treeR){MakeBranchR(treeR,"Fast");}
98 void DigitsToRecPoints(TTree *treeD,TTree *treeR,Int_t lastEntry,Option_t *det,Bool_t v2=kFALSE);
8484b32d 99 void DigitsToRecPoints(AliRawReader* rawReader,TTree *treeR,Option_t *det="All");
8ba39da9 100
3b9df642 101 private:
8e50d897 102 // private methods
e56160b8 103 AliITSDetTypeRec(const AliITSDetTypeRec& rec);
104 AliITSDetTypeRec& operator=(const AliITSDetTypeRec &source);
105
88128115 106 //conversion of the old SSD calibration objects tothe new ones
107 void ReadOldSSDNoise(TObjArray *array,
108 AliITSNoiseSSDv2 *noiseSSD);
109 void ReadOldSSDBadChannels(TObjArray *array,
110 AliITSBadChannelsSSDv2 *badChannelsSSD);
111 void ReadOldSSDGain(TObjArray *array,
112 AliITSGainSSDv2 *gainSSD);
113
6cae184e 114 // virtual void SetLoader(AliITSLoader* loader) {fLoader=loader;}
8ba39da9 115 static const Int_t fgkNdettypes; // number of det. types
116 static const Int_t fgkDefaultNModulesSPD; // Total numbers of SPD modules by default
117 static const Int_t fgkDefaultNModulesSDD; // Total numbers of SDD modules by default
118 static const Int_t fgkDefaultNModulesSSD; // Total numbers of SSD modules by default
8e50d897 119 Int_t *fNMod; // numbers of modules from different types
8ba39da9 120
6cae184e 121 AliITSgeom *fITSgeom; //! ITS geometry
122
7d62fb64 123 TObjArray *fReconstruction;//! [NDet]
124 TObjArray *fSegmentation; //! [NDet]
125 TObjArray *fCalibration; //! [NMod]
ced4d9bc 126 AliITSCalibrationSSD* fSSDCalibration; //! SSD calibration object
23197852 127 TObjArray *fSPDDead; //! [fgkDefaultNModulesSPD]
7d62fb64 128 TObjArray *fPreProcess; //! [] e.g. Find Calibration values
129 TObjArray *fPostProcess; //! [] e.g. find primary vertex
130 TObjArray *fDigits; //! [NMod][NDigits]
979b5a5f 131 AliITSDDLModuleMapSDD *fDDLMapSDD; //! mapping DDL/module -> SDD module number
253e68a0 132 AliITSresponseSDD *fRespSDD; //! SDD response parameters
7d62fb64 133 Int_t *fNdtype; //! detector types
134 Char_t* fClusterClassName[3]; //! String with Cluster class name
135 Char_t* fDigClassName[3]; //! String with digit class name.
136 Char_t* fRecPointClassName[3];//! String with RecPoint class name
137
138 TObjArray *fCtype; //! List of clusters
139 Int_t *fNctype; //[fNDetTypes] Num. of clust. per type of det.
140
141 TClonesArray *fRecPoints; //! List of reconstructed points
142 Int_t fNRecPoints; // Number of rec points
143
7d62fb64 144 TString fSelectedVertexer; // Vertexer selected in CreateVertexer
b17dae48 145 Bool_t fFirstcall; //! flag
3b9df642 146
253e68a0 147 ClassDef(AliITSDetTypeRec,10) // ITS Reconstruction structure
7d62fb64 148};
149
3b9df642 150#endif