]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/STEER/AliDetector.h
Implement comparison of sim and rec CDB's, by default for the TPC/RecoParam only
[u/mrichter/AliRoot.git] / STEER / STEER / AliDetector.h
CommitLineData
8918e700 1#ifndef ALIDETECTOR_H
2#define ALIDETECTOR_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$ */
7
3a83c716 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
88cb7938 15#include "AliModule.h"
16
94de3818 17class AliHit;
2ab0c725 18class TTree;
9e1a0ddb 19class TBranch;
88cb7938 20class AliLoader;
21
8494b010 22class AliDetector : public AliModule {
fe4da5cc 23
fe4da5cc 24public:
25
26 // Creators - distructors
27 AliDetector(const char* name, const char *title);
28 AliDetector();
29 virtual ~AliDetector();
30
31 // Inline functions
94de3818 32 virtual int GetNdigits() const {return fNdigits;}
33 virtual int GetNhits() const {return fNhits;}
34 TClonesArray *Digits() const {return fDigits;}
35 TClonesArray *Hits() const {return fHits;}
7dd2cbe4 36 virtual Bool_t IsModule() const {return kFALSE;}
37 virtual Bool_t IsDetector() const {return kTRUE;}
88cb7938 38
94de3818 39 Int_t GetIshunt() const {return fIshunt;}
8918e700 40 void SetIshunt(Int_t ishunt) {fIshunt=ishunt;}
fe4da5cc 41
fe4da5cc 42 // Other methods
3a83c716 43 virtual void Publish(const char *dir, void *c, const char *name=0) const;
fe4da5cc 44 virtual void Browse(TBrowser *b);
fe4da5cc 45 virtual void FinishRun();
88cb7938 46 virtual void MakeBranch(Option_t *opt=" ");
fe4da5cc 47 virtual void ResetDigits();
48 virtual void ResetHits();
4787b401 49 virtual void AddAlignableVolumes() const;
88cb7938 50
fe4da5cc 51 virtual void SetTreeAddress();
52 virtual void SetTimeGate(Float_t gate) {fTimeGate=gate;}
94de3818 53 virtual Float_t GetTimeGate() const {return fTimeGate;}
8494b010 54 virtual void StepManager() {}
ba380e33 55 virtual void DrawModule() const {}
8918e700 56 virtual AliHit* FirstHit(Int_t track);
fe4da5cc 57 virtual AliHit* NextHit();
58 virtual void SetBufferSize(Int_t bufsize=8000) {fBufferSize = bufsize;}
9e1a0ddb 59 virtual TBranch* MakeBranchInTree(TTree *tree, const char* cname, void* address, Int_t size=32000, const char *file=0);
d0f40f23 60 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);
88cb7938 61
62 void MakeTree(Option_t *option); //skowron
9ac3aec9 63 virtual void RemapTrackHitIDs(Int_t *) {}
88cb7938 64
65 virtual AliLoader* MakeLoader(const char* topfoldername); //builds standard getter (AliLoader type)
66 void SetLoader(AliLoader* loader){fLoader = loader;}
67 AliLoader* GetLoader() const {return fLoader;} //skowron
88cb7938 68 // Data members
8918e700 69protected:
70
71 Float_t fTimeGate; //Time gate in seconds
72
73 Int_t fIshunt; //1 if the hit is attached to the primary
2ab0c725 74 Int_t fNhits; //!Number of hits
75 Int_t fNdigits; //!Number of digits
76 Int_t fBufferSize; //!buffer size for Tree detector branches
3a83c716 77 Int_t fMaxIterHit; //!Limit for the hit iterator
78 Int_t fCurIterHit; //!Counter for the hit iterator
2388c363 79 TClonesArray *fHits; //!List of hits for one track only
80 TClonesArray *fDigits; //!List of digits for this detector
2cad796f 81
88cb7938 82 AliLoader* fLoader;//! pointer to getter for this module skowron
83
e939a978 84 private:
85 AliDetector(const AliDetector &det);
86 AliDetector &operator=(const AliDetector &det);
87
ac4ea1ec 88 ClassDef(AliDetector,5) //Base class for ALICE detectors
fe4da5cc 89};
90#endif