]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/AliTRDmatrix.h
Only one initializer for a default argument
[u/mrichter/AliRoot.git] / TRD / AliTRDmatrix.h
CommitLineData
99d5402e 1#ifndef TRDmatrix_h
2#define TRDmatrix_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$ */
99d5402e 7
8#include <TObject.h>
9#include <TObjArray.h>
10#include <TH2.h>
11#include <TH3.h>
12#include <TStyle.h>
13#include <TCanvas.h>
851d3db9 14
99d5402e 15#include "AliTRDpixel.h"
16
17///////////////////////////////////////////////////////
18// Stores the pixel-information of one TRD chamber //
19///////////////////////////////////////////////////////
20
21class AliTRDmatrix : public TObject {
22
23protected:
6f1e466d 24
99d5402e 25 Int_t fRow; // Number of pad-rows
26 Int_t fCol; // Number of pad-columns
27 Int_t fTime; // Number of time buckets
28 Int_t fPixel; // Number of pixels
29 Int_t fSector; // Sector number
30 Int_t fChamber; // Chamber number
31 Int_t fPlane; // Plane number
32 TObjArray *fPixelArray; // Array of pixels
33
34 virtual Int_t GetIndex(Int_t iRow, Int_t iCol, Int_t iTime);
35 virtual AliTRDpixel *GetPixel(Int_t iRow, Int_t iCol, Int_t iTime);
36
37public:
6f1e466d 38
99d5402e 39 AliTRDmatrix();
40 AliTRDmatrix(Int_t nRow, Int_t nCol, Int_t nTime, Int_t iSec, Int_t iCha, Int_t iPla);
41 virtual ~AliTRDmatrix();
42
43 virtual void AddSignal(Int_t iRow, Int_t iCol, Int_t iTime, Float_t signal);
44 virtual Bool_t AddTrack(Int_t iRow, Int_t iCol, Int_t iTime, Int_t track);
45
7d83513f 46 virtual void Draw(Option_t* = " ");
99d5402e 47 virtual void DrawRow(Int_t iRow);
48 virtual void DrawCol(Int_t iCol);
49 virtual void DrawTime(Int_t iTime);
6f1e466d 50 virtual void ProjRow();
51 virtual void ProjCol();
52 virtual void ProjTime();
99d5402e 53
54 virtual void SetSignal(Int_t iRow, Int_t iCol, Int_t iTime, Float_t signal);
55 virtual void SetTrack(Int_t iRow, Int_t iCol, Int_t iTime
56 , Int_t iTrack, Int_t track);
57
58 virtual Float_t GetSignal(Int_t iRow, Int_t iCol, Int_t iTime);
59 virtual Int_t GetTrack(Int_t iRow, Int_t iCol, Int_t iTime, Int_t iTrack);
60
61 virtual Int_t GetSector() { return fSector; };
62 virtual Int_t GetChamber() { return fChamber; };
63 virtual Int_t GetPlane() { return fPlane; };
64
5c7f4665 65 ClassDef(AliTRDmatrix,1) // The TRD detector matrix for one readout chamber
99d5402e 66
67};
68
69#endif