BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
EstParameter Class Reference

#include <EstParameter.h>

Public Member Functions

 EstParameter ()
 ~EstParameter ()
double vscint () const
double vdrift () const
int SkipMC () const
int Skip () const
double ptCut () const
double drCut () const
double dzCut () const
double pathlCut () const
double ztofCutmin () const
double ztofCutmax () const
double timeOfs () const
double MDC_Skip () const
double MDC_Inner () const
double MDC_drCut () const
double MDC_dzCut () const
double MDC_Tof () const
double MDC_Prop () const
double MDC_Walk () const
double MDC_Xt () const
int MDC_Debug () const

Detailed Description

Definition at line 14 of file EstParameter.h.

Constructor & Destructor Documentation

◆ EstParameter()

EstParameter::EstParameter ( )

Definition at line 3 of file EstParameter.cxx.

3 {
4
5 // velocity in scintillator
6 _vscint = 17.6;
7
8 // drift velocity of electron
9 _vdrift = 4.0e-3;
10
11 // optCosmic = 1: employ cosmic correction, 0: don't
12
13 // _optCosmic=0;
14
15 // cosmicScheme to decide incoming and outgoing legs
16 // = 0: 2hits+TDCdiff 1: 2hits+Phi
17 // 2: All hits+Phi
18 // _cosmicScheme=0;
19
20 // SkipMC = 1: Skip timing determination for MC 0: Don't
21 _SkipMC = 1;
22
23 // Skip =1 : Skip timing determination for MC 0: Don't
24 _Skip = 1;
25
26 // ptCut,drCut,dzCut: fzisan track param cuts
27 _ptCut = 0.0;
28 _drCut = 5.0;
29 _dzCut = 50.0;
30
31 // Cuts on path length and tof z-position on
32 // fzisan tracks extrapolated to TOF counters
33
34 _pathlCut = 500.0;
35 _ztofCutmin = -140.0;
36 _ztofCutmax = 140.0;
37
38 // TOF time internal offset
39 _timeOfs = 0.0;
40
41 // Skip = 1: Skip CDCtime if TOFtime is available 0: Don't
42 _MDC_Skip = 1;
43
44 _MDC_Inner = 0;
45 // ptCut,drCut,dzCut: fzisan track param cuts
46 _MDC_drCut = 10.0;
47 _MDC_dzCut = 50.0;
48 // Tof corr. (0:off;1:on)
49 _MDC_Tof = 1;
50
51 // Propagation delay corr. (0:off;1:on)
52 _MDC_Prop = 1;
53
54 // Time walk corr. (0:off;1:on for data)
55 _MDC_Walk = 1;
56
57 // debug (0:off;1:on)
58 _MDC_Debug = 1;
59
60 // xt (1:linear x-t; 2:non-linear x-t)
61 _MDC_Xt = 1;
62
63 // inner 4 layers(0:not use; 1:use)
64 _MDC_Inner = 0;
65}

◆ ~EstParameter()

EstParameter::~EstParameter ( )

Definition at line 67 of file EstParameter.cxx.

67{}

Member Function Documentation

◆ drCut()

double EstParameter::drCut ( ) const

Definition at line 79 of file EstParameter.cxx.

79{ return _drCut; }

◆ dzCut()

double EstParameter::dzCut ( ) const

Definition at line 81 of file EstParameter.cxx.

81{ return _dzCut; }

◆ MDC_Debug()

int EstParameter::MDC_Debug ( ) const

Definition at line 105 of file EstParameter.cxx.

105{ return _MDC_Debug; }

Referenced by EsTimeAlg::execute().

◆ MDC_drCut()

double EstParameter::MDC_drCut ( ) const

Definition at line 95 of file EstParameter.cxx.

95{ return _MDC_drCut; }

Referenced by EsTimeAlg::execute().

◆ MDC_dzCut()

double EstParameter::MDC_dzCut ( ) const

Definition at line 97 of file EstParameter.cxx.

97{ return _MDC_dzCut; }

Referenced by EsTimeAlg::execute().

◆ MDC_Inner()

double EstParameter::MDC_Inner ( ) const

Definition at line 93 of file EstParameter.cxx.

93{ return _MDC_Inner; }

Referenced by EsTimeAlg::execute().

◆ MDC_Prop()

double EstParameter::MDC_Prop ( ) const

Definition at line 101 of file EstParameter.cxx.

101{ return _MDC_Prop; }

Referenced by EsTimeAlg::execute().

◆ MDC_Skip()

double EstParameter::MDC_Skip ( ) const

Definition at line 91 of file EstParameter.cxx.

91{ return _MDC_Skip; }

◆ MDC_Tof()

double EstParameter::MDC_Tof ( ) const

Definition at line 99 of file EstParameter.cxx.

99{ return _MDC_Tof; }

Referenced by EsTimeAlg::execute().

◆ MDC_Walk()

double EstParameter::MDC_Walk ( ) const

Definition at line 103 of file EstParameter.cxx.

103{ return _MDC_Walk; }

◆ MDC_Xt()

double EstParameter::MDC_Xt ( ) const

Definition at line 107 of file EstParameter.cxx.

107{ return _MDC_Xt; }

◆ pathlCut()

double EstParameter::pathlCut ( ) const

Definition at line 83 of file EstParameter.cxx.

83{ return _pathlCut; }

Referenced by EsTimeAlg::execute().

◆ ptCut()

double EstParameter::ptCut ( ) const

Definition at line 77 of file EstParameter.cxx.

77{ return _ptCut; }

◆ Skip()

int EstParameter::Skip ( ) const

Definition at line 75 of file EstParameter.cxx.

75{ return _Skip; }

◆ SkipMC()

int EstParameter::SkipMC ( ) const

Definition at line 73 of file EstParameter.cxx.

73{ return _SkipMC; }

◆ timeOfs()

double EstParameter::timeOfs ( ) const

Definition at line 89 of file EstParameter.cxx.

89{ return _timeOfs; }

◆ vdrift()

double EstParameter::vdrift ( ) const

Definition at line 71 of file EstParameter.cxx.

71{ return _vdrift; }

Referenced by EsTimeAlg::execute().

◆ vscint()

double EstParameter::vscint ( ) const

Definition at line 69 of file EstParameter.cxx.

69{ return _vscint; }

◆ ztofCutmax()

double EstParameter::ztofCutmax ( ) const

Definition at line 87 of file EstParameter.cxx.

87{ return _ztofCutmax; }

Referenced by EsTimeAlg::execute().

◆ ztofCutmin()

double EstParameter::ztofCutmin ( ) const

Definition at line 85 of file EstParameter.cxx.

85{ return _ztofCutmin; }

Referenced by EsTimeAlg::execute().


The documentation for this class was generated from the following files: