Belle II Software  release-08-01-10
TRGGDLResults.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 #include <TObject.h>
11 
12 namespace Belle2 {
18  class TRGGDLResults : public TObject {
19  public:
20 
22  ClassDef(TRGGDLResults, 2); /*< the class title */
24  ~TRGGDLResults() {}
25 
26 
28  void setL1TriggerRsults(int L1TriggerResults) {m_L1TriggerResults = L1TriggerResults;}
29 
32 
33 
34  private:
37 
38  };
39 
41 } // end namespace Belle2
42 
43 //#endif
void setL1TriggerRsults(int L1TriggerResults)
set the trigger results
Definition: TRGGDLResults.h:28
ClassDef(TRGGDLResults, 2)
! The Class title
int getL1TriggerResults() const
get trigger result
Definition: TRGGDLResults.h:31
int m_L1TriggerResults
the trigger results of each trigger line
Definition: TRGGDLResults.h:36
Abstract base class for different kinds of events.