]> git.uio.no Git - u/mrichter/AliRoot.git/blame - FMD/AliFMDv1.h
Field conversion factor added.
[u/mrichter/AliRoot.git] / FMD / AliFMDv1.h
CommitLineData
d28dcc0d 1#ifndef ALIFMDV1_H
2#define ALIFMDV1_H
3da30618 3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
b9a2d5e4 6///////////////////////////////////////////////
fe4da5cc 7// Manager and hits classes for set:FMD //
8////////////////////////////////////////////////
9
10#include "AliFMD.h"
11
12class AliFMDv1 : public AliFMD {
13
14public:
b9a2d5e4 15 AliFMDv1() {};
fe4da5cc 16 AliFMDv1(const char *name, const char *title);
17 virtual ~AliFMDv1() {}
18 virtual void CreateGeometry();
19 virtual void CreateMaterials();
b9a2d5e4 20 virtual void DrawDetector();
21 virtual void Init();
37c55dc0 22 virtual Int_t IsVersion() const {return 1;}
b9a2d5e4 23 virtual void StepManager();
dc8af42e 24 // virtual void Hit2Digits(Int_t bgrEvent, Option_t *opt1=" ",
25 // Option_t *opt2=" ",Text_t *name=" "); // hit to digit for v1 :test
26 virtual void Response( Float_t Edep);
27//private:
28 //Int_t fCharge;
29
b9a2d5e4 30
31protected:
32 Int_t fIdSens1; // Sensetive volume in FMD
37c55dc0 33 Int_t fIdSens2; // Sensetive volume in FMD
34 Int_t fIdSens3; // Sensetive volume in FMD
35 Int_t fIdSens4; // Sensetive volume in FMD
36 Int_t fIdSens5; // Sensetive volume in FMD
b9a2d5e4 37
38// Background event for event mixing
b9a2d5e4 39
dc8af42e 40 ClassDef(AliFMDv1,2) //Class for FMD version 0
fe4da5cc 41};
0d630091 42
fe4da5cc 43#endif
b9a2d5e4 44
45