Belle II Software development
CKFParameters.h
1/**************************************************************************
2 * basf2 (Belle II Analysis Software Framework) *
3 * Author: The Belle II Collaboration *
4 * *
5 * See git log for contributors and copyright holders. *
6 * This file is licensed under LGPL-3.0, see LICENSE.md. *
7 **************************************************************************/
8#pragma once
9
10#include <TObject.h>
11
12namespace Belle2 {
17
18
23 class CKFParameters: public TObject {
24 public:
29
31 void setLayerJumpPtThreshold(double layerJumpPtThreshold)
32 {
33 m_layerJumpPtThreshold = layerJumpPtThreshold;
34 }
35
38 {
40 }
41
43 void setLayerJumpLowPt(int layerJumpLowPt)
44 {
45 m_layerJumpLowPt = layerJumpLowPt;
46 }
47
50 {
51 return m_layerJumpLowPt;
52 }
53
55 void setLayerJumpHighPt(int layerJumpHighPt)
56 {
57 m_layerJumpHighPt = layerJumpHighPt;
58 }
59
62 {
63 return m_layerJumpHighPt;
64 }
65
66 private:
73
75 };
76
77}
int getLayerJumpLowPt() const
Get layerJump parameter for low momentum tracks.
double m_layerJumpPtThreshold
The pt threshold that is used to determine if you want to use parameter for high/low pt tracks (-1 if...
~CKFParameters()
Destructor.
double getLayerJumpPtThreshold() const
Get the pt threshold that is used to determine if you want to use parameter for high/low pt tracks (-...
int m_layerJumpLowPt
The layerJump parameter for low momentum tracks.
void setLayerJumpPtThreshold(double layerJumpPtThreshold)
Set if you want different parameter values for high/low pt tracks (-1 if not used)
int m_layerJumpHighPt
The layerJump parameter for high momentum tracks.
int getLayerJumpHighPt() const
Get layerJump parameter for high momentum tracks.
void setLayerJumpLowPt(int layerJumpLowPt)
Set layerJump parameter for low momentum tracks.
CKFParameters()
Default constructor.
ClassDef(CKFParameters, 1)
ClassDef, necessary for ROOT.
void setLayerJumpHighPt(int layerJumpHighPt)
Set layerJump parameter for high momentum tracks.
Abstract base class for different kinds of events.