]> git.uio.no Git - u/mrichter/AliRoot.git/blame - FMD/AliFMDv1.h
Last minute changes and new code for event mixing and reconstruction (A.Maevskaia)
[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();
22 virtual Int_t IsVersion() const {return 0;}
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
33
34// Background event for event mixing
b9a2d5e4 35
dc8af42e 36 ClassDef(AliFMDv1,2) //Class for FMD version 0
fe4da5cc 37};
0d630091 38
fe4da5cc 39#endif
b9a2d5e4 40
41