#ifndef ALIITSDETTYPEREC_H #define ALIITSDETTYPEREC_H /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. * * See cxx source for full Copyright notice */ /* $Id$ */ //////////////////////////////////////////////////////////////////////// // This class contains all of the "external" information needed to do // // detector specific reconstruction for the ITS. // //////////////////////////////////////////////////////////////////////// #include #include #include #include "AliITSDDLModuleMapSDD.h" #include "AliITSgeom.h" class TTree; class TBranch; //#include "AliITSLoader.h" //#include "AliRunLoader.h" class AliITSsegmentation; class AliITSCalibration; class AliITSClusterFinder; class AliITSRawCluster; class AliITSRecPoint; class AliRawReader; class AliITSDetTypeRec : public TObject { public: AliITSDetTypeRec(); // Default constructor virtual ~AliITSDetTypeRec(); // Proper Destructor virtual AliITSgeom* GetITSgeom() const { return fITSgeom; } virtual void SetITSgeom(AliITSgeom *geom) { fITSgeom = geom; } virtual void SetDefaults(); virtual void SetDefaultClusterFinders(); virtual void SetDefaultClusterFindersV2(Bool_t rawdata=kFALSE); virtual void MakeBranch(TTree *tree,Option_t *opt); virtual void SetTreeAddressD(TTree* treeD); virtual void SetSegmentationModel(Int_t dettype, AliITSsegmentation *seg); virtual void SetCalibrationModel(Int_t iMod, AliITSCalibration *cal); virtual void SetReconstructionModel(Int_t dettype, AliITSClusterFinder *rec); virtual Bool_t GetCalibration(); virtual AliITSsegmentation* GetSegmentationModel(Int_t dettype); virtual AliITSCalibration* GetCalibrationModel(Int_t iMod); virtual AliITSClusterFinder* GetReconstructionModel(Int_t dettype); virtual AliITSDDLModuleMapSDD* GetDDLModuleMapSDD() const { return fDDLMapSDD;} virtual void SetDigitClassName(Int_t i,Char_t *digit) {fDigClassName[i]=digit;} virtual void SetClusterClassName(Int_t i,Char_t *cluster) {fClusterClassName[i]=cluster;} virtual void SetRecPointClassName(Int_t i,Char_t *recpoint) {fRecPointClassName[i]=recpoint;} Char_t* GetDigitClassName(Int_t i) const {return fDigClassName[i];} Char_t* GetClusterClassName(Int_t i) const {return fClusterClassName[i];} Char_t* GetRecPointClassName(Int_t i) const {return fRecPointClassName[i];} TObjArray* GetDigits() const {return fDigits;} Int_t *Ndtype() {return fNdtype;} TClonesArray *DigitsAddress(Int_t id) const {return ((TClonesArray*)(*fDigits)[id]);} virtual void SelectVertexer(TString sel=" "){fSelectedVertexer = sel;} // virtual void AddCluster(Int_t branch, AliITSRawCluster *c); virtual void ResetClusters(); virtual void ResetClusters(Int_t branch); TBranch* MakeBranchInTree(TTree *tree, const char* name, const char *classname, void* address,Int_t size, Int_t splitlevel); TObjArray *Ctype() {return fCtype;} Int_t *Nctype() {return fNctype;} TClonesArray *ClustersAddress(Int_t id) const {return ((TClonesArray*)(*fCtype)[id]);} virtual void ResetDigits(); virtual void ResetDigits(Int_t branch); void MakeBranchR(TTree *treeR,Option_t *opt=" "); void SetTreeAddressR(TTree *treeR); void AddRecPoint(const AliITSRecPoint &p); void ResetRecPoints(){if(fRecPoints) fRecPoints->Clear();fNRecPoints = 0;}; // Return pointer to rec points TClonesArray *RecPoints() {return fRecPoints;} void MakeBranchRF(TTree *treeR){MakeBranchR(treeR,"Fast");} void DigitsToRecPoints(TTree *treeD,TTree *treeR,Int_t lastEntry,Option_t *det,Bool_t v2=kFALSE); void DigitsToRecPoints(AliRawReader* rawReader,TTree *treeR,Option_t *det="All"); private: // private methods AliITSDetTypeRec(const AliITSDetTypeRec& rec); AliITSDetTypeRec& operator=(const AliITSDetTypeRec &source); // virtual void SetLoader(AliITSLoader* loader) {fLoader=loader;} static const Int_t fgkNdettypes; // number of det. types static const Int_t fgkDefaultNModulesSPD; // Total numbers of SPD modules by default static const Int_t fgkDefaultNModulesSDD; // Total numbers of SDD modules by default static const Int_t fgkDefaultNModulesSSD; // Total numbers of SSD modules by default Int_t *fNMod; // numbers of modules from different types AliITSgeom *fITSgeom; //! ITS geometry TObjArray *fReconstruction;//! [NDet] TObjArray *fSegmentation; //! [NDet] TObjArray *fCalibration; //! [NMod] TObjArray *fPreProcess; //! [] e.g. Find Calibration values TObjArray *fPostProcess; //! [] e.g. find primary vertex TObjArray *fDigits; //! [NMod][NDigits] AliITSDDLModuleMapSDD *fDDLMapSDD; //! mapping DDL/module -> SDD module number Int_t *fNdtype; //! detector types Char_t* fClusterClassName[3]; //! String with Cluster class name Char_t* fDigClassName[3]; //! String with digit class name. Char_t* fRecPointClassName[3];//! String with RecPoint class name TObjArray *fCtype; //! List of clusters Int_t *fNctype; //[fNDetTypes] Num. of clust. per type of det. TClonesArray *fRecPoints; //! List of reconstructed points Int_t fNRecPoints; // Number of rec points TString fSelectedVertexer; // Vertexer selected in CreateVertexer Bool_t fFirstcall; //! flag ClassDef(AliITSDetTypeRec,8) // ITS Reconstruction structure }; #endif