]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - STEER/AliDetector.h
Coding Convention corrections
[u/mrichter/AliRoot.git] / STEER / AliDetector.h
... / ...
CommitLineData
1#ifndef ALIDETECTOR_H
2#define ALIDETECTOR_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/* $Id$ */
7
8//
9// This is the basic detector class from which
10// all ALICE detector derive.
11// This class is the base for the implementation of all detectors
12// in ALICE
13//
14
15#include "AliModule.h"
16
17class AliHit;
18class TTree;
19class TBranch;
20class AliLoader;
21
22class AliDetector : public AliModule {
23
24public:
25
26 // Creators - distructors
27 AliDetector(const char* name, const char *title);
28 AliDetector();
29 AliDetector(const AliDetector &det);
30 virtual ~AliDetector();
31
32 // Inline functions
33 void Copy(TObject &det) const;
34 virtual int GetNdigits() const {return fNdigits;}
35 virtual int GetNhits() const {return fNhits;}
36 TClonesArray *Digits() const {return fDigits;}
37 TClonesArray *Hits() const {return fHits;}
38
39 TObjArray *Points() const {return fPoints;}
40 Int_t GetIshunt() const {return fIshunt;}
41 void SetIshunt(Int_t ishunt) {fIshunt=ishunt;}
42 AliDetector &operator=(const AliDetector &det)
43 {det.Copy(*this); return (*this);}
44
45 // Other methods
46 virtual void Publish(const char *dir, void *c, const char *name=0) const;
47 virtual void Browse(TBrowser *b);
48 virtual void FinishRun();
49 virtual void LoadPoints(Int_t track);
50 virtual void MakeBranch(Option_t *opt=" ");
51 virtual void ResetDigits();
52 virtual void ResetHits();
53
54 virtual void ResetPoints();
55 virtual void SetTreeAddress();
56 virtual void SetTimeGate(Float_t gate) {fTimeGate=gate;}
57 virtual Float_t GetTimeGate() const {return fTimeGate;}
58 virtual void StepManager() {}
59 virtual void DrawModule() {}
60 virtual AliHit* FirstHit(Int_t track);
61 virtual AliHit* NextHit();
62 virtual void SetBufferSize(Int_t bufsize=8000) {fBufferSize = bufsize;}
63 virtual TBranch* MakeBranchInTree(TTree *tree, const char* cname, void* address, Int_t size=32000, const char *file=0);
64 virtual TBranch* MakeBranchInTree(TTree *tree, const char* cname, const char* name, void* address, Int_t size=32000, Int_t splitlevel=99, const char *file=0);
65
66 void MakeTree(Option_t *option); //skowron
67
68 virtual AliLoader* MakeLoader(const char* topfoldername); //builds standard getter (AliLoader type)
69 void SetLoader(AliLoader* loader){fLoader = loader;}
70 AliLoader* GetLoader() const {return fLoader;} //skowron
71 TTree* TreeH() const; //shorcut method for accessing treeH from folder
72 // Data members
73protected:
74
75 Float_t fTimeGate; //Time gate in seconds
76
77 Int_t fIshunt; //1 if the hit is attached to the primary
78 Int_t fNhits; //!Number of hits
79 Int_t fNdigits; //!Number of digits
80 Int_t fBufferSize; //!buffer size for Tree detector branches
81 Int_t fMaxIterHit; //!Limit for the hit iterator
82 Int_t fCurIterHit; //!Counter for the hit iterator
83 TClonesArray *fHits; //!List of hits for one track only
84 TClonesArray *fDigits; //!List of digits for this detector
85 TObjArray *fPoints; //!Array of points for each track (all tracks in memory)
86
87 AliLoader* fLoader;//! pointer to getter for this module skowron
88
89 ClassDef(AliDetector,5) //Base class for ALICE detectors
90};
91#endif