]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/AliTRDv0.h
Remove the sensitive chamber selection in hits and digits creation
[u/mrichter/AliRoot.git] / TRD / AliTRDv0.h
CommitLineData
8230f242 1#ifndef ALITRDV0_H
2#define ALITRDV0_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
fe4da5cc 8////////////////////////////////////////////////////////
9// Manager and hits classes for set:TRD version 0 //
10////////////////////////////////////////////////////////
11
12#include "AliTRD.h"
851d3db9 13
793ff80c 14class AliTRDsim;
15
851d3db9 16//_____________________________________________________________________________
fe4da5cc 17class AliTRDv0 : public AliTRD {
18
851d3db9 19 public:
20
8230f242 21 AliTRDv0();
fe4da5cc 22 AliTRDv0(const char *name, const char *title);
8230f242 23 virtual ~AliTRDv0();
24
793ff80c 25 virtual void CreateGeometry();
26 virtual void CreateMaterials();
27 virtual Int_t IsVersion() const { return 0; };
28 virtual void StepManager();
29 virtual void Init();
30
31 virtual void SetHits() { fHitsOn = 1; };
5c7f4665 32
bd0f8685 33 void SetTR(Bool_t ) { };
851d3db9 34
bd0f8685 35 Bool_t GetTR() const { return 0; };
851d3db9 36
37 protected:
5c7f4665 38
82bbf98a 39 Int_t fHitsOn; // Used to switch hits on
40
332e9569 41 ClassDef(AliTRDv0,2) // Transition Radiation Detector version 0 (fast simulator)
82bbf98a 42
fe4da5cc 43};
44
45#endif