]> git.uio.no Git - u/mrichter/AliRoot.git/blame - FMD/AliFMDv1.h
Simplification for Fast Simulator
[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"
b9a2d5e4 11#include "AliFMDSDigitizer.h"
fe4da5cc 12
13class AliFMDv1 : public AliFMD {
14
15public:
b9a2d5e4 16 AliFMDv1() {};
fe4da5cc 17 AliFMDv1(const char *name, const char *title);
18 virtual ~AliFMDv1() {}
19 virtual void CreateGeometry();
20 virtual void CreateMaterials();
b9a2d5e4 21 virtual void DrawDetector();
22 virtual void Init();
23 virtual Int_t IsVersion() const {return 0;}
24 virtual void StepManager();
25
26protected:
27 Int_t fIdSens1; // Sensetive volume in FMD
28
29// Background event for event mixing
30 Text_t *fFileName; // ! File with background hits
31 TTree *fTrH1; // Hits Tree for background event
32 TClonesArray *fHits2; // List of hits for one track only
33
34 ClassDef(AliFMDv1,2) //Class for FMD version 0
fe4da5cc 35};
0d630091 36
fe4da5cc 37#endif
b9a2d5e4 38
39