]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STRUCT/AliPIPEv0.h
Corrected wrong selection of eta decays
[u/mrichter/AliRoot.git] / STRUCT / AliPIPEv0.h
CommitLineData
b43eb0dc 1#ifndef ALIPIPEV0_H
2#define ALIPIPEV0_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// Manager and class for detector: PIPE version 0 //
10/////////////////////////////////////////////////////////
11
12#include "AliPIPE.h"
13
14class AliPIPEv0 : public AliPIPE {
15
765e9e1a 16 public:
17 enum constants {kC=6, kAlu=9, kInox=19, kGetter=20, kBe=5, kVac=16,
a063f050 18 kAir=15, kAlBe=21, kPA = 22, kAirHigh = 35};
765e9e1a 19
fe4da5cc 20 AliPIPEv0();
21 AliPIPEv0(const char *name, const char *title);
22 virtual ~AliPIPEv0() {}
23 virtual void CreateGeometry();
24 virtual void CreateMaterials();
765e9e1a 25 virtual void SetPipeMaterial(Int_t mat = kBe) {fPipeMaterial = mat;}
fe4da5cc 26 virtual Int_t IsVersion() const {return 0;}
765e9e1a 27 protected:
eeacf08b 28 Int_t fPipeMaterial; // Pipe material (Al, Be, or Inox)
765e9e1a 29
110e9c3c 30 ClassDef(AliPIPEv0,2) //Class for PIPE version 0
fe4da5cc 31};
32
33#endif