Belle II Software  release-05-01-25
OpticalLink.cc
1 //-----------------------------------------------------------------------------
2 // $Id$
3 //-----------------------------------------------------------------------------
4 // Filename : TRGOpticalLink.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/OpticalLink.h"
16 #include "trg/trg/Clock.h"
17 
18 using namespace std;
19 
20 namespace Belle2 {
26  TRGOpticalLink::TRGOpticalLink(const std::string& name,
27  const TRGClock& clock) :
28  _name(name),
29  _clock(& clock)
30  {
31  }
32 
34  {
35  }
36 
38 } // namespace Belle2
Belle2::TRGOpticalLink::~TRGOpticalLink
virtual ~TRGOpticalLink()
Destructor.
Definition: OpticalLink.cc:33
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19
Belle2::TRGClock
A class to represent a digitized signal. Unit is nano second.
Definition: Clock.h:43