Belle II Software development
TOPTriggerMCInfo.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
9#pragma once
10
11#include <TObject.h>
12
13namespace Belle2 {
22 class TOPTriggerMCInfo: public TObject {
23 public:
24
29 {}
30
34 void setBunchTimeStamp(int timeStamp) {m_bunchTimeStamp = timeStamp;}
35
39 int getBunchTimeStamp() const {return m_bunchTimeStamp;}
40
41 private:
42
48 };
49
51}
52
Class to store Monte Carlo information useful for trigger studies.
TOPTriggerMCInfo()
Default constructor.
int m_bunchTimeStamp
generated time stamp of the interaction
ClassDef(TOPTriggerMCInfo, 1)
ClassDef.
int getBunchTimeStamp() const
getter for generated time stamp of interaction
void setBunchTimeStamp(int timeStamp)
setter for generated time stamp of interaction
Abstract base class for different kinds of events.