]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/AliTRDv1.h
Direct dependence on TGeant3 removed (P. Hristov)
[u/mrichter/AliRoot.git] / TRD / AliTRDv1.h
CommitLineData
8230f242 1#ifndef ALITRDV1_H
2#define ALITRDV1_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
030b4415 8////////////////////////////////////////////////////////////////////////////
9// //
10// Manager and hits classes for set: TRD version 1 //
11// //
12////////////////////////////////////////////////////////////////////////////
5c7f4665 13
14// Energy spectrum of the delta-rays
15Double_t Ermilova(Double_t *x, Double_t *par);
a328fff9 16Double_t IntSpecGeant(Double_t *x, Double_t *par);
851d3db9 17
851d3db9 18#include "AliTRD.h"
5c7f4665 19
793ff80c 20class TF1;
c4214bc0 21class TTree;
22class TFile;
030b4415 23
793ff80c 24class AliTRDsim;
25
851d3db9 26//_____________________________________________________________________________
fe4da5cc 27class AliTRDv1 : public AliTRD {
28
851d3db9 29 public:
30
8230f242 31 AliTRDv1();
fe4da5cc 32 AliTRDv1(const char *name, const char *title);
dd9a6ee3 33 AliTRDv1(const AliTRDv1 &trd);
8230f242 34 virtual ~AliTRDv1();
dd9a6ee3 35 AliTRDv1 &operator=(const AliTRDv1 &trd);
8230f242 36
030b4415 37 virtual void Copy(TObject &trd) const;
38 virtual void Init();
39 virtual Int_t IsVersion() const { return 1; }
40
41 virtual void CreateGeometry();
42 virtual void CreateMaterials();
43 virtual void CreateTRhit(Int_t det);
851d3db9 44
030b4415 45 virtual void StepManager();
46 void StepManagerErmilova();
47 void StepManagerGeant();
48 void StepManagerFixedStep();
49 void SelectStepManager(Int_t t);
a328fff9 50
030b4415 51 void SetStepSize(Double_t s) { fStepSize = s; }
52 void SetTR(Bool_t kTRUE) { fTRon = kTRUE; }
793ff80c 53
030b4415 54 Bool_t GetTR() const { return fTRon; }
55 AliTRDsim *GetTRDsim() const { return fTR; }
851d3db9 56
57 protected:
58
030b4415 59 void *StepManagerEntity();
a328fff9 60
030b4415 61 Bool_t fTRon; // Switch for TR simulation
62 AliTRDsim *fTR; // TR simulator
793ff80c 63
030b4415 64 Int_t fTypeOfStepManager; // Type of Step Manager.
65 Double_t fStepSize; // Used for the fixed step size
a328fff9 66
851d3db9 67 private:
82bbf98a 68
030b4415 69 Double_t BetheBloch(Double_t bg);
70 Double_t BetheBlochGeant(Double_t bg);
c4214bc0 71
030b4415 72 TF1 *fDeltaE; // Energy distribution of the delta-electrons (Ermilova)
73 TF1 *fDeltaG; // Energy distribution of the
74
75 Float_t fTrackLength0; // Save the track length at chamber entrance
76 Int_t fPrimaryTrackPid; // Save the id of the primary track
bd0f8685 77
030b4415 78 ClassDef(AliTRDv1,5) // Transition Radiation Detector version 1 (slow simulator)
82bbf98a 79
fe4da5cc 80};
81
82#endif