]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TPC/AliTPCv2.h
Typo fixed
[u/mrichter/AliRoot.git] / TPC / AliTPCv2.h
CommitLineData
73042f01 1#ifndef ALITPCV2_H
2#define ALITPCV2_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// Version 2 for TPC //
10////////////////////////////////////////////////
cc80f89e 11
fe4da5cc 12
13#include "AliTPC.h"
14
15class AliTPCv2 : public AliTPC {
16
17public:
18 AliTPCv2() {}
19 AliTPCv2(const char *name, const char *title);
20 virtual ~AliTPCv2() {}
21 virtual void CreateGeometry();
22 virtual void CreateMaterials();
23 virtual void Init();
24 virtual Int_t IsVersion() const {return 2;}
25 virtual void StepManager();
8c555625 26 virtual void DrawDetector();
fe4da5cc 27
28protected:
37831078 29 Int_t fIdSens; // sensitive strip
30 Int_t fIdLSec; // lower sector
31 Int_t fIdUSec; // upper sector
fe4da5cc 32
33private:
34
35 Float_t BetheBloch(Float_t bg);
36
37 ClassDef(AliTPCv2,1) // Time Projection Chamber version 2
38};
39
40#endif