Belle II Software  release-05-01-25
Channel.cc
1 //-----------------------------------------------------------------------------
2 // $Id$
3 //-----------------------------------------------------------------------------
4 // Filename : TRGChannel.cc
5 // Section : TRG
6 // Owner : Yoshihito Iwasaki
7 // Email : yoshihito.iwasaki@kek.jp
8 //-----------------------------------------------------------------------------
9 // Description : A class to represent a trigger board
10 //-----------------------------------------------------------------------------
11 // $Log$
12 //-----------------------------------------------------------------------------
13 
14 #include <iostream>
15 #include "trg/trg/Channel.h"
16 #include "trg/trg/Board.h"
17 
18 using namespace std;
19 
20 namespace Belle2 {
26  TRGChannel::TRGChannel(const std::string& name,
27  const TRGBoard& sender,
28  const TRGBoard& receiver)
29  : _name(name),
30  _sender(sender),
31  _receiver(receiver),
32  _data(0)
33  {
34  }
35 
37  {
38  }
39 
41 } // namespace Belle2
Belle2::TRGBoard
A class to represent a trigger board.
Definition: Board.h:30
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19
Belle2::TRGChannel::~TRGChannel
virtual ~TRGChannel()
Destructor.
Definition: Channel.cc:36