]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - TPC/AliTPCv2.h
Macro to plot pathlengths of back-to-back jets. (A. Dainese)
[u/mrichter/AliRoot.git] / TPC / AliTPCv2.h
... / ...
CommitLineData
1#ifndef ALITPCV2_H
2#define ALITPCV2_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////////////////////////////////////////////////
9// Version 2 for TPC //
10////////////////////////////////////////////////
11
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();
26 virtual void DrawDetector();
27
28protected:
29 Int_t fIdSens; // sensitive strip
30 Int_t fIdLSec; // lower sector
31 Int_t fIdUSec; // upper sector
32
33private:
34
35 Float_t BetheBloch(Float_t bg);
36
37 ClassDef(AliTPCv2,1) // Time Projection Chamber version 2
38};
39
40#endif