]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TPC/AliTPCv2.h
a few modifications to satisty aCC
[u/mrichter/AliRoot.git] / TPC / AliTPCv2.h
CommitLineData
fe4da5cc 1#ifndef TPCv2_H
2#define TPCv2_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:
29 Int_t fIdSens1; //First sensitive volume identifier - lower sector
30 Int_t fIdSens2; //Second sensitive volume identifier - upper sector
31 Int_t fIdSens3; //Sensitive strip - lower sector
32 Int_t fIdSens4; //Sensitive strip - upper sector
33
34private:
35
36 Float_t BetheBloch(Float_t bg);
37
38 ClassDef(AliTPCv2,1) // Time Projection Chamber version 2
39};
40
41#endif