]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TPC/AliTPCv2.h
Introduction of the Copyright and cvs Log
[u/mrichter/AliRoot.git] / TPC / AliTPCv2.h
CommitLineData
fe4da5cc 1#ifndef TPCv2_H
2#define TPCv2_H
3////////////////////////////////////////////////
4// Version 2 for TPC //
5////////////////////////////////////////////////
6
7#include "AliTPC.h"
8
9class AliTPCv2 : public AliTPC {
10
11public:
12 AliTPCv2() {}
13 AliTPCv2(const char *name, const char *title);
14 virtual ~AliTPCv2() {}
15 virtual void CreateGeometry();
16 virtual void CreateMaterials();
17 virtual void Init();
18 virtual Int_t IsVersion() const {return 2;}
19 virtual void StepManager();
8c555625 20 virtual void DrawDetector();
fe4da5cc 21
22protected:
23 Int_t fIdSens1; //First sensitive volume identifier - lower sector
24 Int_t fIdSens2; //Second sensitive volume identifier - upper sector
25 Int_t fIdSens3; //Sensitive strip - lower sector
26 Int_t fIdSens4; //Sensitive strip - upper sector
27
28private:
29
30 Float_t BetheBloch(Float_t bg);
31
32 ClassDef(AliTPCv2,1) // Time Projection Chamber version 2
33};
34
35#endif