Belle II Software development
CDCTrigger2DConfig.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 {
27 class CDCTrigger2DConfig: public TObject {
28 public:
29
34 {
35 m_nTS = b.m_nTS;
36 }
39 {
40 m_nTS = b.m_nTS;
41 return *this;
42 }
43
45 int getnTS() const
46 {
47 return m_nTS;
48 }
50 void setnTS(int i)
51 {
52 m_nTS = i;
53 }
54
55
56 private:
57
59 int m_nTS;
60
62 };
63
65} // end of namespace Belle2
The payload class for delay of GDL input bit.
void setnTS(int i)
Set the number of TS.
CDCTrigger2DConfig()
Default constructor.
int getnTS() const
Get the number of TS.
CDCTrigger2DConfig & operator=(const CDCTrigger2DConfig &b)
assignment operator
ClassDef(CDCTrigger2DConfig, 1)
ClassDef, must be the last term before the closing {}.
CDCTrigger2DConfig(const CDCTrigger2DConfig &b)
copy constructor
Abstract base class for different kinds of events.