Belle II Software development
WireHitMC.cc
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//-----------------------------------------------------------------------------
10// Description : A class to represent a MC wire hit in CDC.
11//-----------------------------------------------------------------------------
12
13#include "trg/cdc/WireHitMC.h"
14
15namespace Belle2 {
22 const TRGCDCWireHit* wh)
23 : _wire(w),
24 _hit(wh),
25 _distance(), // 2019/07/31 by ytlai
26 _energy(),
27 _hep(),
28 _leftRight()
29 {
30 }
31
33 {
34 }
35
37} // namespace Belle2
38
A class to represent a wire hit in CDC.
Definition: WireHit.h:33
A class to represent a wire in CDC.
Definition: Wire.h:56
virtual ~TRGCDCWireHitMC()
Destructor.
Definition: WireHitMC.cc:32
TRGCDCWireHitMC(const TRGCDCWire *, const TRGCDCWireHit *)
Constructor.
Definition: WireHitMC.cc:21
Abstract base class for different kinds of events.