]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/AliTRDv0.h
Only one initializer for a default argument
[u/mrichter/AliRoot.git] / TRD / AliTRDv0.h
CommitLineData
fe4da5cc 1#ifndef TRDv0_H
2#define TRDv0_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
14//_____________________________________________________________________________
fe4da5cc 15class AliTRDv0 : public AliTRD {
16
851d3db9 17 public:
18
19 AliTRDv0() {};
fe4da5cc 20 AliTRDv0(const char *name, const char *title);
851d3db9 21 ~AliTRDv0() {};
5c7f4665 22 virtual void CreateGeometry();
23 virtual void CreateMaterials();
9d0b222b 24 virtual Int_t IsVersion() const { return 0; };
5c7f4665 25 virtual void StepManager();
26 virtual void Init();
5c7f4665 27
9d0b222b 28 virtual void SetHits() { fHitsOn = 1; };
851d3db9 29
9d0b222b 30 void SetSensChamber(Int_t ) { };
31 void SetSensPlane(Int_t ) { };
32 void SetSensSector(Int_t ) { };
33 void SetSensSector(Int_t ,Int_t) { };
6f1e466d 34
9d0b222b 35 Int_t GetSensChamber() { return 0; };
36 Int_t GetSensPlane() { return 0; };
37 Int_t GetSensSector() { return 0; };
38 Int_t GetSensSectorRange() { return 0; };
851d3db9 39
40 protected:
5c7f4665 41
82bbf98a 42 Int_t fIdSens; // Sensitive volume identifier
43
82bbf98a 44 Int_t fIdChamber1; // Driftchamber volume identifier
45 Int_t fIdChamber2; //
46 Int_t fIdChamber3; //
47
48 Int_t fHitsOn; // Used to switch hits on
49
5c7f4665 50 ClassDef(AliTRDv0,1) // Transition Radiation Detector version 0 (fast simulator)
82bbf98a 51
fe4da5cc 52};
53
54#endif