]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/AliTRDgeometryFull.h
Add new TRD classes
[u/mrichter/AliRoot.git] / TRD / AliTRDgeometryFull.h
CommitLineData
f7336fa3 1#ifndef TRDgeometryFull_h
2#define TRDgeometryFull_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#include "AliTRDgeometry.h"
9
10class AliTRDgeometryFull : public AliTRDgeometry {
11
12 public:
13
14 AliTRDgeometryFull();
15 ~AliTRDgeometryFull();
16
17 virtual void CreateGeometry(Int_t *);
18 virtual Int_t IsVersion() const { return 1; };
19 virtual void Init();
20
21 protected:
22
23 Float_t fClengthI[kNplan]; // Length of the inner chambers
24 Float_t fClengthM[kNplan]; // Length of the middle chambers
25 Float_t fClengthO[kNplan]; // Length of the outer chambers
26 Float_t fCwidth[kNplan]; // Width of the chambers
27
28 ClassDef(AliTRDgeometryFull,1) // TRD geometry without hole
29
30};
31
32#endif