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